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

lots of i18n fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmServerHistoryReader.java

    r1892 r2181  
    3131    public OsmServerHistoryReader(OsmPrimitiveType type, long id) throws IllegalArgumentException {
    3232        if (type == null)
    33             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "type"));
     33            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "type"));
    3434        if (id < 0)
    35             throw new IllegalArgumentException(tr("parameter ''{0}'' >= 0 expected, got ''{1}''", "id", id));
     35            throw new IllegalArgumentException(tr("Parameter ''{0}'' >= 0 expected. Got ''{1}''.", "id", id));
    3636        this.primitiveType = type;
    3737        this.id = id;
Note: See TracChangeset for help on using the changeset viewer.