Changeset 29428 in osm for applications/editors/josm/plugins/imagery_offset_db/src/iodb/CalibrationLayer.java
- Timestamp:
- 2013-03-29T17:51:00+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/CalibrationLayer.java
r29384 r29428 98 98 @Override 99 99 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()); 102 106 } 103 107
Note:
See TracChangeset
for help on using the changeset viewer.
