Changeset 29429 in osm for applications/editors/josm


Ignore:
Timestamp:
2013-03-29T18:02:52+01:00 (11 years ago)
Author:
stoecker
Message:

fix i18n

Location:
applications/editors/josm/plugins/imagery_offset_db/src/iodb
Files:
2 edited

Legend:

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

    r29428 r29429  
    9999    public String getToolTipText() {
    100100        if(obj.isDeprecated())
    101             return tr("A deprecated calibration {0} by {1}",
     101            return tr("A deprecated calibration of type {0} by {1}",
    102102                OffsetInfoAction.getGeometryType(obj), obj.getAuthor());
    103103        else
    104             return tr("A calibration {0} by {1}",
     104            return tr("A calibration of type {0} by {1}",
    105105                OffsetInfoAction.getGeometryType(obj), obj.getAuthor());
    106106    }
  • applications/editors/josm/plugins/imagery_offset_db/src/iodb/OffsetInfoAction.java

    r29428 r29429  
    7676            sb.append(tr("Imagery ID")).append(": ").append(((ImageryOffset)offset).getImagery()).append('\n');
    7777        } else {
    78             sb.append(tr("A calibration {0}", getGeometryType((CalibrationObject)offset))).append('\n');
     78            sb.append(tr("A calibration of type {0}", getGeometryType((CalibrationObject)offset))).append('\n');
    7979        }
    8080       
Note: See TracChangeset for help on using the changeset viewer.