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/gui/conflict/pair/nodes/NodeListMergeModel.java

    r2165 r2181  
    3131    public void populate(Way my, Way their) {
    3232        if (my == null)
    33             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "my"));
     33            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "my"));
    3434        if (their == null)
    35             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "their"));
     35            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "their"));
    3636        getMergedEntries().clear();
    3737        getMyEntries().clear();
     
    6565    public WayNodesConflictResolverCommand buildResolveCommand(Way my, Way their) {
    6666        if (my == null)
    67             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "my"));
     67            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "my"));
    6868        if (their == null)
    69             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "their"));
     69            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "their"));
    7070        if (! isFrozen())
    71             throw new IllegalArgumentException(tr("Merged nodes not frozen yet. Can't build resolution command"));
     71            throw new IllegalArgumentException(tr("Merged nodes not frozen yet. Can't build resolution command."));
    7272        return new WayNodesConflictResolverCommand(my, their, getMergedEntries());
    7373    }
Note: See TracChangeset for help on using the changeset viewer.