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/conflict/ConflictCollection.java

    r2017 r2181  
    7676    protected void addConflict(Conflict<?> conflict) throws IllegalStateException {
    7777        if (hasConflictForMy(conflict.getMy()))
    78             throw new IllegalStateException(tr("already registered a conflict for primitive ''{0}''", conflict.getMy().toString()));
     78            throw new IllegalStateException(tr("Already registered a conflict for primitive ''{0}''.", conflict.getMy().toString()));
    7979        if (!conflicts.contains(conflict)) {
    8080            conflicts.add(conflict);
     
    9292    public void add(Conflict<?> conflict) throws IllegalStateException, IllegalArgumentException {
    9393        if (conflict == null)
    94             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "conflict"));
     94            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "conflict"));
    9595        addConflict(conflict);
    9696        fireConflictAdded();
Note: See TracChangeset for help on using the changeset viewer.