Changeset 29429 in osm for applications/editors
- Timestamp:
- 2013-03-29T18:02:52+01:00 (12 years ago)
- 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 99 99 public String getToolTipText() { 100 100 if(obj.isDeprecated()) 101 return tr("A deprecated calibration {0} by {1}",101 return tr("A deprecated calibration of type {0} by {1}", 102 102 OffsetInfoAction.getGeometryType(obj), obj.getAuthor()); 103 103 else 104 return tr("A calibration {0} by {1}",104 return tr("A calibration of type {0} by {1}", 105 105 OffsetInfoAction.getGeometryType(obj), obj.getAuthor()); 106 106 } -
applications/editors/josm/plugins/imagery_offset_db/src/iodb/OffsetInfoAction.java
r29428 r29429 76 76 sb.append(tr("Imagery ID")).append(": ").append(((ImageryOffset)offset).getImagery()).append('\n'); 77 77 } 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'); 79 79 } 80 80
Note:
See TracChangeset
for help on using the changeset viewer.