Ignore:
Timestamp:
2013-03-29T17:41:27+01:00 (11 years ago)
Author:
stoecker
Message:

i18n fix

File:
1 edited

Legend:

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

    r29384 r29427  
    4141            return;
    4242       
    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?");
    4546        if( JOptionPane.showConfirmDialog(Main.parent,
    46                 tr("Warning: deprecation is basically irreversible!\nAre you sure this " + desc + "?"),
     47                tr("Warning: deprecation is basically irreversible!\n{0}", desc),
    4748                ImageryOffsetTools.DIALOG_TITLE, JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE) != JOptionPane.YES_OPTION ) {
    4849            return;
Note: See TracChangeset for help on using the changeset viewer.