- Timestamp:
- 2013-10-27T01:21:18+02:00 (11 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java
r6316 r6326 259 259 260 260 return applyCorrections(tagCorrectionsMap, roleCorrectionMap, 261 tr("When reversing this way, the following changes to properties " 262 + "of the way and its nodes are suggested in order " 263 + "to maintain data consistency.")); 261 tr("When reversing this way, the following changes are suggested in order to maintain data consistency.")); 264 262 } 265 263 -
trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java
r5077 r6326 71 71 72 72 final JMultilineLabel label2 = new JMultilineLabel( 73 tr("Please select which propertychanges you want to apply."));73 tr("Please select which changes you want to apply.")); 74 74 label2.setMaxWidth(600); 75 75 p.add(label2, GBC.eop().anchor(GBC.CENTER)); … … 83 83 } 84 84 85 final JLabel propertiesLabel = new JLabel(tr(" Properties of "));85 final JLabel propertiesLabel = new JLabel(tr("Tags of ")); 86 86 p.add(propertiesLabel, GBC.std()); 87 87 -
trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java
r6268 r6326 65 65 66 66 /** 67 * Check for misspelled or wrong properties67 * Check for misspelled or wrong tags 68 68 * 69 69 * @author frsantos … … 152 152 */ 153 153 public TagChecker() { 154 super(tr("Properties checker :"), 155 tr("This plugin checks for errors in property keys and values.")); 154 super(tr("Tag checker :"), tr("This test checks for errors in tag keys and values.")); 156 155 } 157 156 … … 353 352 354 353 /** 355 * Checks the primitive properties354 * Checks the primitive tags 356 355 * @param p The primitive to check 357 356 */ … … 742 741 return commands.get(0); 743 742 744 return new SequenceCommand(tr("Fix properties"), commands);743 return new SequenceCommand(tr("Fix tags"), commands); 745 744 } 746 745 -
trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPreset.java
r6248 r6326 401 401 return cmds.get(0); 402 402 else 403 return new SequenceCommand(tr("Change Properties"), cmds);403 return new SequenceCommand(tr("Change Tags"), cmds); 404 404 } 405 405
Note:
See TracChangeset
for help on using the changeset viewer.