Changeset 2858 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2010-01-14T18:46:44+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r2856 r2858 231 231 StringBuilder sb = new StringBuilder(); 232 232 sb.append("<html>"); 233 sb.append(trn(" A required plugin for plugin {0}was not found. The missing plugin is:",234 " {1} required plugins for plugin {0}were not found. The missing plugins are:",233 sb.append(trn("Plugin {0} requires a plugin which was not found. The missing plugin is:", 234 "Plugin {0} requires {1} plugins which were not found. The missing plugins are:", 235 235 missingRequiredPlugin.size(), 236 236 plugin, … … 253 253 HelpAwareOptionPane.showOptionDialog( 254 254 parent, 255 tr("<html>Plugin {0} requires JOSM version {1}. The current JOSM version is { 1}.<br>"255 tr("<html>Plugin {0} requires JOSM version {1}. The current JOSM version is {2}.<br>" 256 256 +"You have to update JOSM in order to use this plugin.</html>", 257 plugin, requiredVersion 257 plugin, requiredVersion, Version.getInstance().getVersion() 258 258 ), 259 259 tr("Warning"),
Note:
See TracChangeset
for help on using the changeset viewer.