Ticket #2021: OsmReader.diff

File OsmReader.diff, 1.1 KB (added by anonymous, 3 years ago)
  • src/org/openstreetmap/josm/io/OsmReader.java

     
    272272                    current.timestamp = DateParser.parse(time); 
    273273               } catch (ParseException e) { 
    274274                    e.printStackTrace(); 
    275                     throw new SAXException(tr("Couldn't read time format \"{0}\".",time)); 
     275                    throw new SAXException(tr("Couldn''t read time format \"{0}\".",time)); 
    276276               } 
    277277               */ 
    278278               current.timestamp = time; 
     
    343343               for (long id : e.getValue()) { 
    344344                    Node n = findNode(id); 
    345345                    if (n == null) { 
    346                          parseNotes += tr("Skipping a way because it includes a node that doesn't exist: {0}\n", id); 
     346                         parseNotes += tr("Skipping a way because it includes a node that doesn''t exist: {0}\n", id); 
    347347                         failed = true; 
    348348                         break; 
    349349                    }