Changeset 6326 in josm for trunk


Ignore:
Timestamp:
2013-10-27T01:21:18+02:00 (11 years ago)
Author:
Don-vip
Message:

see #9172 - additional typo changes

Location:
trunk/src/org/openstreetmap/josm
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java

    r6316 r6326  
    259259
    260260        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."));
    264262    }
    265263
  • trunk/src/org/openstreetmap/josm/corrector/TagCorrector.java

    r5077 r6326  
    7171
    7272            final JMultilineLabel label2 = new JMultilineLabel(
    73                     tr("Please select which property changes you want to apply."));
     73                    tr("Please select which changes you want to apply."));
    7474            label2.setMaxWidth(600);
    7575            p.add(label2, GBC.eop().anchor(GBC.CENTER));
     
    8383                }
    8484
    85                 final JLabel propertiesLabel = new JLabel(tr("Properties of "));
     85                final JLabel propertiesLabel = new JLabel(tr("Tags of "));
    8686                p.add(propertiesLabel, GBC.std());
    8787
  • trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java

    r6268 r6326  
    6565
    6666/**
    67  * Check for misspelled or wrong properties
     67 * Check for misspelled or wrong tags
    6868 *
    6969 * @author frsantos
     
    152152     */
    153153    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."));
    156155    }
    157156
     
    353352
    354353    /**
    355      * Checks the primitive properties
     354     * Checks the primitive tags
    356355     * @param p The primitive to check
    357356     */
     
    742741            return commands.get(0);
    743742
    744         return new SequenceCommand(tr("Fix properties"), commands);
     743        return new SequenceCommand(tr("Fix tags"), commands);
    745744    }
    746745
  • trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPreset.java

    r6248 r6326  
    401401            return cmds.get(0);
    402402        else
    403             return new SequenceCommand(tr("Change Properties"), cmds);
     403            return new SequenceCommand(tr("Change Tags"), cmds);
    404404    }
    405405
Note: See TracChangeset for help on using the changeset viewer.