Changeset 26345 in osm for applications/editors/josm/plugins/graphview
- Timestamp:
- 2011-07-16T21:10:43+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/core/access/ImplicationXMLReader.java
r26174 r26345 93 93 if (name.equals("condition")) { 94 94 if (!currentConditionReader.isFinished()) { 95 throw new SAXException(tr("Condition isn' t finished at </condition> tag"));95 throw new SAXException(tr("Condition isn''t finished at </condition> tag")); 96 96 } else { 97 97 currentCondition = currentConditionReader.getCondition(); -
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/GraphViewPlugin.java
r26174 r26345 208 208 rulesetInputStream = rulesetURL.openStream(); 209 209 } else { 210 throw new FileNotFoundException(tr("Couldn' t find built-in ruleset {0}", ruleset));210 throw new FileNotFoundException(tr("Couldn''t find built-in ruleset {0}", ruleset)); 211 211 } 212 212 -
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/preferences/VehiclePropertyStringParser.java
r26221 r26345 36 36 public static final String ERROR_LENGTH = 37 37 tr("Lengths must be given as positive decimal numbers with unit \"m\", \"km\", \"mi\"" + 38 " or without unit.\nAlternatively, the format FEET' INCHES\" can be used.");38 " or without unit.\nAlternatively, the format FEET'' INCHES\" can be used."); 39 39 public static final String ERROR_SPEED = 40 40 tr("Speeds should be given as numbers without unit or " … … 45 45 tr("Tracktype grades must be given as integers between 0 and 5."); 46 46 public static final String ERROR_SURFACE = 47 tr("Surface values must not contain any of the following characters: '','', '' {'', ''}'', ''='', ''|''");47 tr("Surface values must not contain any of the following characters: '','', '''{''', '''}''', ''='', ''|''"); 48 48 49 49 private static final List<Character> FORBIDDEN_SURFACE_CHARS =
Note:
See TracChangeset
for help on using the changeset viewer.