Changeset 7308 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2014-07-12T17:37:49+02:00 (10 years ago)
Author:
bastiK
Message:

fix strings in validator

Location:
trunk/src/org/openstreetmap/josm/data/validation/tests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/Lanes.java

    r7005 r7308  
    2727     */
    2828    public Lanes() {
    29         super(tr("Lane tags"));
     29        super(tr("Lane tags"), tr("Test that validates ''lane:'' tags."));
    3030    }
    3131
  • trunk/src/org/openstreetmap/josm/data/validation/tests/RelationChecker.java

    r7254 r7308  
    5858    public RelationChecker() {
    5959        super(tr("Relation checker"),
    60                 tr("This plugin checks for errors in relations."));
     60                tr("Checks for errors in relations."));
    6161    }
    6262
  • trunk/src/org/openstreetmap/josm/data/validation/tests/TurnrestrictionTest.java

    r7012 r7308  
    4444     */
    4545    public TurnrestrictionTest() {
    46         super(tr("Turnrestrictions"), tr("This test checks if turnrestrictions are valid"));
     46        super(tr("Turnrestrictions"), tr("This test checks if turnrestrictions are valid."));
    4747    }
    4848
     
    153153            viaPseudoWay.addNode(viaNode);
    154154            checkIfConnected(fromWay, viaPseudoWay,
    155                     tr("The \"from\" way does not start or end at a \"via\" node"), FROM_VIA_NODE);
     155                    tr("The \"from\" way does not start or end at a \"via\" node."), FROM_VIA_NODE);
    156156            if (toWay.isOneway() != 0 && viaNode.equals(toWay.lastNode(true))) {
    157157                errors.add(new TestError(this, Severity.WARNING, tr("Superfluous turnrestriction as \"to\" way is oneway"), SUPERFLUOUS, r));
     
    159159            }
    160160            checkIfConnected(viaPseudoWay, toWay,
    161                     tr("The \"to\" way does not start or end at a \"via\" node"), TO_VIA_NODE);
     161                    tr("The \"to\" way does not start or end at a \"via\" node."), TO_VIA_NODE);
    162162        } else {
    163163            // check if consecutive ways are connected: from/via[0], via[i-1]/via[i], via[last]/to
  • trunk/src/org/openstreetmap/josm/data/validation/tests/UnconnectedWays.java

    r7005 r7308  
    3232
    3333/**
    34  * Tests if there are segments that crosses in the same layer.
     34 * Checks if a way has an endpoint very near to another way.
    3535 * <br>
    3636 * This class is abstract since highway/railway/waterway/… ways must be handled separately.
Note: See TracChangeset for help on using the changeset viewer.