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

fix messages for the rest

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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>"
Note: See TracChangeset for help on using the changeset viewer.