Changeset 29434 in osm for applications/editors/josm/plugins/imagery_offset_db/src/iodb/CalibrationLayer.java
- Timestamp:
- 2013-03-29T21:30:25+01:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/CalibrationLayer.java
r29433 r29434 100 100 public String getToolTipText() { 101 101 if( obj.isDeprecated() ) 102 return tr("A deprecated calibration of type {0}by {1}",OffsetInfoAction.getGeometryType(obj), obj.getAuthor());102 return tr("A deprecated calibration geometry of {0} nodes by {1}", obj.getGeometry().length, obj.getAuthor()); 103 103 else 104 return tr("A calibration of type {0}by {1}",OffsetInfoAction.getGeometryType(obj), obj.getAuthor());104 return tr("A calibration geometry of {0} nodes by {1}", obj.getGeometry().length, obj.getAuthor()); 105 105 } 106 106 … … 198 198 class ZoomToLayerAction extends AbstractAction { 199 199 public ZoomToLayerAction() { 200 super(tr("Zoom to layer")) ;200 super(tr("Zoom to {0}", tr("layer"))); // to use translation from AutoScaleAction 201 201 putValue(SMALL_ICON, ImageProvider.get("dialogs/autoscale/layer")); 202 202 }
Note:
See TracChangeset
for help on using the changeset viewer.
