Changeset 31363 in osm for applications/editors
- Timestamp:
- 2015-07-09T23:47:51+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/reverter/src/reverter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java
r30737 r31363 216 216 final OsmServerMultiObjectReader rdr = new OsmServerMultiObjectReader(); 217 217 218 progressMonitor.beginTask("Downloading objects history",updated.size()+deleted.size()+1); 218 progressMonitor.beginTask(tr("Downloading objects history"),updated.size()+deleted.size()+1); 219 219 try { 220 220 for (HashSet<HistoryOsmPrimitive> collection : Arrays.asList(new HashSet[]{updated, deleted})) { -
applications/editors/josm/plugins/reverter/src/reverter/ObjectsHistoryAction.java
r29769 r31363 15 15 super(tr("Objects history"),null,tr("History reverter"), 16 16 Shortcut.registerShortcut("tool:history", 17 "Tool: Display objects history dialog", 17 tr("Tool: Display objects history dialog"), 18 18 KeyEvent.VK_H, Shortcut.ALT_CTRL_SHIFT), 19 19 true);
Note:
See TracChangeset
for help on using the changeset viewer.