Ignore:
Timestamp:
02/24/06 13:38:02 (19 years ago)
Author:
remar
Message:
  • spelling corrections
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/org.modelica.mdt.core/src/org/modelica/mdt/internal/core/ErrorManager.java

    r310 r377  
    144144       
    145145        /* construct the error message */
    146         String message = "unknow error";
    147         String compilerName = "unknow modelica compiler";
     146        String message = "unknown error";
     147        String compilerName = "unknown Modelica compiler";
    148148       
    149149        try
     
    155155            /*
    156156             * oh well, not much to do 'bout this one,
    157              * let's just name our compiler 'unknow'
     157             * let's just name our compiler 'unknown'
    158158             */
    159159        }
     
    195195            {
    196196            case NO_COMPILERS_FOUND:
    197                 message = "No plugin found that provides modelica " +
    198                     " compiler services. Please install a plugin that " +
    199                     " provides modelica compiler and try again";
     197                message = "No plugin found that provides Modelica " +
     198                    "compiler services. Please install a plugin that " +
     199                    "provides a Modelica compiler and try again";
    200200                break;
    201201            case MULTIPLE_COMPILERS_FOUND:
    202                 message = "Multiple modelica compiler plugins available. " +
     202                message = "Multiple Modelica compiler plugins available. " +
    203203                    "Please make sure only one compiler is enabled and " +
    204                     "try again. Following compiler plugins are found:\n";
     204                    "try again. The following compiler plugins were found:\n";
    205205                for (String pluginName : cie.getCompilerPlugins())
    206206                {
     
    209209                break;
    210210            case ERROR_CREATING_COMPILER:
    211                 message = "Could not instantiate the modelica compiler. " +
     211                message = "Could not instantiate the Modelica compiler. " +
    212212                    "The compiler plugin '" + cie.getCompilerPlugin() +
    213213                    "' seems to be faulty. Try upgrading to unfaulty version.";
     
    275275            /* unexpected exception type */
    276276            ErrorManager.logBug(CorePlugin.getSymbolicName(),
    277                     "exception of unexpected type " +
     277                    "Exception of unexpected type " +
    278278                    exception.getClass().getName() +
    279279                    " encountered");
Note: See TracChangeset for help on using the changeset viewer.