Changeset 6388 in josm
- Timestamp:
- 2013-11-15T22:19:40+01:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/ImproveWayAccuracyAction.java
r6355 r6388 435 435 436 436 // Finishing the sequence command 437 String text = trn("Add a nd anew node to way",438 "Add a nd anew node to {0} ways",437 String text = trn("Add a new node to way", 438 "Add a new node to {0} ways", 439 439 virtualSegments.size(), virtualSegments.size()); 440 440 -
trunk/src/org/openstreetmap/josm/data/projection/CustomProjection.java
r6310 r6388 278 278 } 279 279 if (parameters.containsKey(Param.no_defs.key)) 280 throw new ProjectionConfigurationException(tr("Datum required (+datum=*, +towgs84=* or +nadg irds=*)"));280 throw new ProjectionConfigurationException(tr("Datum required (+datum=*, +towgs84=* or +nadgrids=*)")); 281 281 return new CentricDatum(null, null, ellps); 282 282 } -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java
r6267 r6388 685 685 putValue(Action.NAME, tr("Up")); 686 686 } 687 putValue(Action.SHORT_DESCRIPTION, tr("Move up the selected e lements by one position."));687 putValue(Action.SHORT_DESCRIPTION, tr("Move up the selected entries by one position.")); 688 688 setEnabled(false); 689 689 } -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictResolver.java
r6340 r6388 105 105 pnl.add(new JLabel(trc("tag", "Key:"))); 106 106 pnl.add(tfKey = new AutoCompletingTextField(10)); 107 tfKey.setToolTipText(tr("<html>Enter a tag key, i.e. <strong><tt>fixme</tt></strong></html>"));107 tfKey.setToolTipText(tr("<html>Enter a tag key, e.g. <strong><tt>fixme</tt></strong></html>")); 108 108 pnl.add(new JLabel(tr("Value:"))); 109 109 pnl.add(tfValue = new AutoCompletingTextField(10)); 110 tfValue.setToolTipText(tr("<html>Enter a tag value, i.e. <strong><tt>check members</tt></strong></html>"));110 tfValue.setToolTipText(tr("<html>Enter a tag value, e.g. <strong><tt>check members</tt></strong></html>")); 111 111 cbTagRelations.setSelected(false); 112 112 tfKey.setEnabled(false);
Note:
See TracChangeset
for help on using the changeset viewer.