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/actions/mapmode/DeleteAction.java

    r2026 r2181  
    291291    public static void deleteRelation(OsmDataLayer layer, Relation toDelete) {
    292292        if (layer == null)
    293             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "layer"));
     293            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "layer"));
    294294        if (toDelete == null)
    295             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "toDelete"));
     295            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "toDelete"));
    296296
    297297        Command cmd = DeleteCommand.delete(layer, Collections.singleton(toDelete));
Note: See TracChangeset for help on using the changeset viewer.