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/properties/PropertiesMergeModel.java

    r2070 r2181  
    295295    public void decideDeletedStateConflict(MergeDecisionType decision) throws IllegalArgumentException{
    296296        if (decision == null)
    297             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "decision"));
     297            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "decision"));
    298298        this.deletedMergeDecision = decision;
    299299        setChanged();
     
    310310    public void decideVisibleStateConflict(MergeDecisionType decision) throws IllegalArgumentException {
    311311        if (decision == null)
    312             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "decision"));
     312            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "decision"));
    313313        this.visibleMergeDecision = decision;
    314314        setChanged();
Note: See TracChangeset for help on using the changeset viewer.