Changeset 29430 in osm for applications/editors/josm/plugins/imagery_offset_db/src/iodb/DeprecateOffsetAction.java
- Timestamp:
- 2013-03-29T20:04:22+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/DeprecateOffsetAction.java
r29427 r29430 45 45 tr("Are you sure this calibration geometry is aligned badly?"); 46 46 if( JOptionPane.showConfirmDialog(Main.parent, 47 tr("Warning: deprecation is basically irreversible! \n{0}", desc),47 tr("Warning: deprecation is basically irreversible!")+ "\n" + desc, 48 48 ImageryOffsetTools.DIALOG_TITLE, JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.YES_OPTION ) { 49 49 return; … … 78 78 } 79 79 80 String message = "Please enter the reason why you mark this "81 + (offset instanceof ImageryOffset ?"imagery offset": "calibraion geometry")+ " as deprecated:";80 String message = tr("Please enter the reason why you mark {0} as deprecated", 81 offset instanceof ImageryOffset ? tr("this imagery offset") : tr("this calibration geometry")) + ":"; 82 82 String reason = StoreImageryOffsetAction.queryDescription(message); 83 83 if( reason == null )
Note:
See TracChangeset
for help on using the changeset viewer.
