Changeset 29427 in osm for applications/editors/josm/plugins/imagery_offset_db
- Timestamp:
- 2013-03-29T17:41:27+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/DeprecateOffsetAction.java
r29384 r29427 41 41 return; 42 42 43 String desc = offset instanceof ImageryOffset ? "imagery offset is wrong" 44 : "calibration geometry is aligned badly"; 43 String desc = offset instanceof ImageryOffset ? 44 tr("Are you sure this imagery offset is wrong?") : 45 tr("Are you sure this calibration geometry is aligned badly?"); 45 46 if( JOptionPane.showConfirmDialog(Main.parent, 46 tr("Warning: deprecation is basically irreversible!\n Are you sure this " + desc + "?"),47 tr("Warning: deprecation is basically irreversible!\n{0}", desc), 47 48 ImageryOffsetTools.DIALOG_TITLE, JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.YES_OPTION ) { 48 49 return;
Note:
See TracChangeset
for help on using the changeset viewer.