Changeset 12991 in osm for applications/editors/josm/plugins/validator/src
- Timestamp:
- 2009-01-06T17:43:27+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/PreferenceEditor.java
r12778 r12991 90 90 91 91 Version ver = Util.getVersion(); 92 String description = tr("A OSM data validator that checks for common errors made by users and editor programs."); 92 String description = tr("An OSM data validator that checks for common errors made by users and editor programs."); 93 93 if( ver != null ) 94 94 description += "<br>" + tr("Version {0} - Last change at {1}", ver.revision, ver.time); -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/DuplicateNode.java
r12778 r12991 30 30 public DuplicateNode() 31 31 { 32 super(tr("Duplicated nodes ."),32 super(tr("Duplicated nodes")+".", 33 33 tr("This test checks that there are no nodes at the very same location.")); 34 34 } -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/SimilarNamedWays.java
r12778 r12991 34 34 public SimilarNamedWays() 35 35 { 36 super(tr("Similar named ways ."),36 super(tr("Similarly named ways")+".", 37 37 tr("This test checks for ways with similar names that may have been misspelled.")); 38 38 } … … 80 80 primitives.add(w); 81 81 primitives.add(w2); 82 errors.add( new TestError(this, Severity.WARNING, tr("Similar named ways"), SIMILAR_NAMED, primitives) ); 82 errors.add( new TestError(this, Severity.WARNING, tr("Similarly named ways"), SIMILAR_NAMED, primitives) ); 83 83 errorWays.add(w, w2); 84 84 } -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/UntaggedNode.java
r12778 r12991 32 32 public UntaggedNode() 33 33 { 34 super(tr("Untagged nodes."),34 super(tr("Untagged and unconnected nodes")+".", 35 35 tr("This test checks for untagged nodes that are not part of any way.")); 36 36 } -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/tests/UntaggedWay.java
r12890 r12991 54 54 public UntaggedWay() 55 55 { 56 super(tr("Untagged, empty ,and one node ways."),56 super(tr("Untagged, empty and one node ways."), 57 57 tr("This test checks for untagged, empty and one node ways.")); 58 58 }
Note:
See TracChangeset
for help on using the changeset viewer.