Ignore:
Timestamp:
2013-03-29T20:04:22+01:00 (13 years ago)
Author:
zverik
Message:

string fixes, button and menu update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/imagery_offset_db/src/iodb/DeprecateOffsetAction.java

    r29427 r29430  
    4545                tr("Are you sure this calibration geometry is aligned badly?");
    4646        if( JOptionPane.showConfirmDialog(Main.parent,
    47                 tr("Warning: deprecation is basically irreversible!\n{0}", desc),
     47                tr("Warning: deprecation is basically irreversible!")+ "\n" + desc,
    4848                ImageryOffsetTools.DIALOG_TITLE, JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.YES_OPTION ) {
    4949            return;
     
    7878        }
    7979
    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")) + ":";
    8282        String reason = StoreImageryOffsetAction.queryDescription(message);
    8383        if( reason == null )
Note: See TracChangeset for help on using the changeset viewer.