- Timestamp:
- 2018-04-26T20:43:19+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r13647 r13681 767 767 */ 768 768 private static void loadPlugin(Component parent, PluginInformation plugin, PluginClassLoader pluginClassLoader) { 769 String msg = tr("Could not load plugin {0}. Delete from preferences?", plugin.name);769 String msg = tr("Could not load plugin {0}. Delete from preferences?", "'"+plugin.name+"'"); 770 770 try { 771 771 Class<?> klass = plugin.loadClass(pluginClassLoader); … … 782 782 if (e.getCause() instanceof ClassNotFoundException) { 783 783 msg = tr("<html>Could not load plugin {0} because the plugin<br>main class ''{1}'' was not found.<br>" 784 + "Delete from preferences?</html>", Utils.escapeReservedCharactersHTML(plugin.name), plugin.className);784 + "Delete from preferences?</html>", "'"+Utils.escapeReservedCharactersHTML(plugin.name)+"'", plugin.className); 785 785 } 786 786 } catch (RuntimeException e) { // NOPMD
Note:
See TracChangeset
for help on using the changeset viewer.