Ignore:
Timestamp:
2009-09-22T15:34:19+02:00 (15 years ago)
Author:
stoecker
Message:

lots of i18n fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/Way.java

    r2077 r2181  
    210210        if (n==null) return;
    211211        if (incomplete)
    212             throw new IllegalStateException(tr("can't add node {0} to incomplete way {1}", n.getId(), getId()));
     212            throw new IllegalStateException(tr("Cannot add node {0} to incomplete way {1}.", n.getId(), getId()));
    213213        if (incomplete) return;
    214214        clearCached();
     
    228228        if (n==null) return;
    229229        if (incomplete)
    230             throw new IllegalStateException(tr("can't add node {0} to incomplete way {1}", n.getId(), getId()));
     230            throw new IllegalStateException(tr("Cannot add node {0} to incomplete way {1}.", n.getId(), getId()));
    231231        clearCached();
    232232        nodes.add(offs, n);
Note: See TracChangeset for help on using the changeset viewer.