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/data/osm/history/RelationMember.java

    r2017 r2181  
    2929        this.role = (role == null ? "" : role);
    3030        if (primitiveType == null)
    31             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "primitiveType"));
     31            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "primitiveType"));
    3232        this.primitiveType = primitiveType;
    3333        if (primitiveId <=0)
    34             throw new IllegalArgumentException(tr("parameter ''{0}'' > 0 expected, got ''{1}''", "primitiveId", primitiveId));
     34            throw new IllegalArgumentException(tr("Parameter ''{0}'' > 0 expected. Got ''{1}''.", "primitiveId", primitiveId));
    3535        this.primitiveId = primitiveId;
    3636    }
Note: See TracChangeset for help on using the changeset viewer.