Ignore:
Timestamp:
2011-07-16T21:10:43+02:00 (13 years ago)
Author:
stoecker
Message:

see #josm6227 - fix wrong quote escaping in strings

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  
    9393                if (name.equals("condition")) {
    9494                    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"));
    9696                    } else {
    9797                        currentCondition = currentConditionReader.getCondition();
  • applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/GraphViewPlugin.java

    r26174 r26345  
    208208                rulesetInputStream = rulesetURL.openStream();
    209209            } 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));
    211211            }
    212212
  • applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/preferences/VehiclePropertyStringParser.java

    r26221 r26345  
    3636    public static final String ERROR_LENGTH =
    3737        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.");
    3939    public static final String ERROR_SPEED =
    4040        tr("Speeds should be given as numbers without unit or "
     
    4545        tr("Tracktype grades must be given as integers between 0 and 5.");
    4646    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: '','', '''{''',  '''}''', ''='', ''|''");
    4848
    4949    private static final List<Character> FORBIDDEN_SURFACE_CHARS =
Note: See TracChangeset for help on using the changeset viewer.