Changeset 12991 in osm for applications/editors/josm
- Timestamp:
- 2009-01-06T17:43:27+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerPreferences.java
r12892 r12991 82 82 sourceConfig.setToolTipText(tr("Data source text. Default is Landsat.")); 83 83 84 String description = tr("A nplugin to trace water bodies on Landsat imagery.");84 String description = tr("A plugin to trace water bodies on Landsat imagery."); 85 85 JPanel prefPanel = gui.createPreferenceTab("lakewalker.png", I18n.tr("Lakewalker Plugin Preferences"), description); 86 86 buildPreferences(prefPanel); -
applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/OsbUploadHook.java
r12778 r12991 50 50 JOptionPane.showMessageDialog(Main.parent, 51 51 tr("<html>The selected data contains data from OpenStreetBugs.<br>" + 52 "You cannot upload th esedata. Maybe you have selected the wrong layer?"),52 "You cannot upload this data. Maybe you have selected the wrong layer?"), 53 53 tr("Warning"), JOptionPane.WARNING_MESSAGE); 54 54 return false; -
applications/editors/josm/plugins/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/api/util/HttpUtils.java
r12778 r12991 167 167 return value.get(0); 168 168 } else { 169 throw new RuntimeException(tr("Header contains several values and cannot be mapped to a single String"));169 throw new RuntimeException(tr("Header contains several values and cannot be mapped to a single string")); 170 170 } 171 171 } -
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 } -
applications/editors/josm/plugins/waypoints/src/WaypointReader.java
r12778 r12991 55 55 if (Math.abs(lat) > 90) 56 56 throw new SAXException 57 (tr("Data error: lat value \"{0}\" is out of bound .",57 (tr("Data error: lat value \"{0}\" is out of bounds.", 58 58 lat)); 59 59 if (Math.abs(lon) > 180) 60 60 throw new SAXException 61 (tr("Data error: lon value \"{0}\" is out of bound .",61 (tr("Data error: lon value \"{0}\" is out of bounds.", 62 62 lon)); 63 63 currentLatLon = new LatLon(lat, lon);
Note:
See TracChangeset
for help on using the changeset viewer.