Changeset 13842 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2018-05-26T17:11:30+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r13681 r13842 488 488 new ButtonSpec( 489 489 tr("Update plugins"), 490 ImageProvider.get("dialogs", "refresh"),490 new ImageProvider("dialogs", "refresh"), 491 491 tr("Click to update the activated plugins"), 492 492 null /* no specific help context */ … … 494 494 new ButtonSpec( 495 495 tr("Skip update"), 496 ImageProvider.get("cancel"),496 new ImageProvider("cancel"), 497 497 tr("Click to skip updating the activated plugins"), 498 498 null /* no specific help context */ … … 565 565 new ButtonSpec( 566 566 tr("Download and restart"), 567 ImageProvider.get("restart"),567 new ImageProvider("restart"), 568 568 trn("Click to download missing plugin and restart JOSM", 569 569 "Click to download missing plugins and restart JOSM", … … 573 573 new ButtonSpec( 574 574 tr("Continue"), 575 ImageProvider.get("ok"),575 new ImageProvider("ok"), 576 576 trn("Click to continue without this plugin", 577 577 "Click to continue without these plugins", … … 1169 1169 new ButtonSpec( 1170 1170 tr("Disable plugin"), 1171 ImageProvider.get("dialogs", "delete"),1171 new ImageProvider("dialogs", "delete"), 1172 1172 tr("Click to delete the plugin ''{0}''", name), 1173 1173 null /* no specific help context */ … … 1175 1175 new ButtonSpec( 1176 1176 tr("Keep plugin"), 1177 ImageProvider.get("cancel"),1177 new ImageProvider("cancel"), 1178 1178 tr("Click to keep the plugin ''{0}''", name), 1179 1179 null /* no specific help context */ … … 1361 1361 new ButtonSpec( 1362 1362 tr("Update plugin"), 1363 ImageProvider.get("dialogs", "refresh"),1363 new ImageProvider("dialogs", "refresh"), 1364 1364 tr("Click to update the plugin ''{0}''", plugin.getPluginInformation().name), 1365 1365 null /* no specific help context */ … … 1367 1367 new ButtonSpec( 1368 1368 tr("Disable plugin"), 1369 ImageProvider.get("dialogs", "delete"),1369 new ImageProvider("dialogs", "delete"), 1370 1370 tr("Click to disable the plugin ''{0}''", plugin.getPluginInformation().name), 1371 1371 null /* no specific help context */ … … 1373 1373 new ButtonSpec( 1374 1374 tr("Keep plugin"), 1375 ImageProvider.get("cancel"),1375 new ImageProvider("cancel"), 1376 1376 tr("Click to keep the plugin ''{0}''", plugin.getPluginInformation().name), 1377 1377 null /* no specific help context */
Note: See TracChangeset
for help on using the changeset viewer.