Ignore:
Timestamp:
2013-03-29T17:51:00+01:00 (13 years ago)
Author:
stoecker
Message:

fix i18n

File:
1 edited

Legend:

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

    r29384 r29428  
    9898    @Override
    9999    public String getToolTipText() {
    100         return "A " + (obj.isDeprecated() ? "deprecated " : "") + "calibration "
    101                 + OffsetInfoAction.getGeometryType(obj) + " by " + obj.getAuthor();
     100        if(obj.isDeprecated())
     101            return tr("A deprecated calibration {0} by {1}",
     102                OffsetInfoAction.getGeometryType(obj), obj.getAuthor());
     103        else
     104            return tr("A calibration {0} by {1}",
     105                OffsetInfoAction.getGeometryType(obj), obj.getAuthor());
    102106    }
    103107
Note: See TracChangeset for help on using the changeset viewer.