Ignore:
Timestamp:
2010-01-13T20:22:11+01:00 (14 years ago)
Author:
mjulius
Message:

fix messages for the rest

Location:
trunk/src/org/openstreetmap/josm/plugins
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java

    r2826 r2853  
    103103        try {
    104104            if (pi.downloadlink == null) {
    105                 String msg = tr("Warning: Cannot download plugin ''{0}''. Its download link isn''t known. Skipping download.", pi.name);
     105                String msg = tr("Warning: Cannot download plugin ''{0}''. Its download link is not known. Skipping download.", pi.name);
    106106                System.err.println(msg);
    107107                throw new PluginDownloadException(msg);
     
    124124            in.close();
    125125        } catch(MalformedURLException e) {
    126             String msg = tr("Warning: Cannot download plugin ''{0}''. Its download link ''{1}'' isn''t a valid URL. Skipping download.", pi.name, pi.downloadlink);
     126            String msg = tr("Warning: Cannot download plugin ''{0}''. Its download link ''{1}'' is not a valid URL. Skipping download.", pi.name, pi.downloadlink);
    127127            System.err.println(msg);
    128128            throw new PluginDownloadException(msg);
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r2834 r2853  
    131131                continue;
    132132            }
    133             String msg =  tr("<html>Loading of {0} plugin was requested."
     133            String msg =  tr("<html>Loading of the plugin \"{0}\" was requested."
    134134                    + "<br>This plugin is no longer developed and very likely will produce errors."
    135135                    +"<br>It should be disabled.<br>Delete from preferences?</html>", unmaintained);
     
    200200        StringBuilder sb = new StringBuilder();
    201201        sb.append("<html>");
    202         sb.append(trn("A required plugin for plugin {0} was not found. The required plugin is:",
    203                 "{1} required plugins for plugin {0} were not found. The required plugins are:",
     202        sb.append(trn("A required plugin for plugin {0} was not found. The missing plugin is:",
     203                "{1} required plugins for plugin {0} were not found. The missing plugins are:",
    204204                missingRequiredPlugin.size(),
    205205                plugin,
     
    691691            dialog.setButtonIcons(new String[] {"dialogs/delete.png", "cancel.png"});
    692692            dialog.setContent(
    693                     tr("<html>") +
     693                    "<html>" +
    694694                    tr("An unexpected exception occurred that may have come from the ''{0}'' plugin.", plugin.getPluginInformation().name)
    695695                    + "<br>"
  • trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java

    r2837 r2853  
    6767            Manifest manifest = jar.getManifest();
    6868            if (manifest == null)
    69                 throw new PluginException(name, tr("The plugin file ''{0}'' doesn't include a Manifest.", file.toString()));
     69                throw new PluginException(name, tr("The plugin file ''{0}'' does not include a Manifest.", file.toString()));
    7070            scanManifest(manifest, false);
    7171            libraries.add(0, fileToURL(file));
Note: See TracChangeset for help on using the changeset viewer.