Changeset 21640 in osm for applications/editors
- Timestamp:
- 2010-06-11T07:55:14+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/reverter/src/reverter
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reverter/src/reverter/DataSetToCmd.java
r21634 r21640 47 47 OsmPrimitive target = getMergeTarget(source); 48 48 if (target.getVersion() == 0) 49 throw new IllegalStateException(tr("Target of type {0} with id {1} ha veinvalid version",49 throw new IllegalStateException(tr("Target of type {0} with id {1} has invalid version", 50 50 target.getType(), target.getUniqueId())); 51 51 OsmPrimitive newTarget; -
applications/editors/josm/plugins/reverter/src/reverter/RevertChangesetAction.java
r21635 r21640 53 53 if (!downloadConfirmed) { 54 54 downloadConfirmed = JOptionPane.showConfirmDialog(Main.parent, 55 tr("This changeset ha ve objects that doesn't present in current dataset.\n" +55 tr("This changeset has objects that are not present in current dataset.\n" + 56 56 "It is needed to download them before reverting. Do you want to continue?"), 57 57 tr("Confirm"), JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION;
Note:
See TracChangeset
for help on using the changeset viewer.