Ignore:
Timestamp:
2009-09-22T15:34:19+02:00 (16 years ago)
Author:
stoecker
Message:

lots of i18n fixes

Location:
trunk/src/org/openstreetmap/josm/data/osm/history
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/history/History.java

    r2017 r2181  
    152152                return primitive;
    153153        }
    154         throw new NoSuchElementException(tr("There's no primitive with version {0} in this history", version));
     154        throw new NoSuchElementException(tr("There's no primitive with version {0} in this history.", version));
    155155    }
    156156
     
    159159
    160160        if (versions.isEmpty())
    161             throw new NoSuchElementException(tr("There's no version valid at date ''{0}'' in this history", date));
     161            throw new NoSuchElementException(tr("There's no version valid at date ''{0}'' in this history.", date));
    162162        if (get(0).getTimestamp().compareTo(date)> 0)
    163             throw new NoSuchElementException(tr("There's no version valid at date ''{0}'' in this history", date));
     163            throw new NoSuchElementException(tr("There's no version valid at date ''{0}'' in this history.", date));
    164164        for (int i = 1; i < versions.size();i++) {
    165165            if (get(i-1).getTimestamp().compareTo(date) <= 0
     
    172172    public HistoryOsmPrimitive get(int idx) {
    173173        if (idx < 0 || idx >= versions.size())
    174             throw new IndexOutOfBoundsException(tr("parameter ''{0}'' in range 0..{1} expected, got {2}", "idx", versions.size()-1, idx));
     174            throw new IndexOutOfBoundsException(tr("Parameter ''{0}'' in range 0..{1} expected. Got ''{2}''.", "idx", versions.size()-1, idx));
    175175        return versions.get(idx);
    176176    }
     
    178178    public HistoryOsmPrimitive getEarliest() {
    179179        if (isEmpty())
    180             throw new NoSuchElementException(tr("no earliest version found. History is empty."));
     180            throw new NoSuchElementException(tr("No earliest version found. History is empty."));
    181181        return sortAscending().versions.get(0);
    182182    }
     
    184184    public HistoryOsmPrimitive getLatest() {
    185185        if (isEmpty())
    186             throw new NoSuchElementException(tr("no latest version found. History is empty."));
     186            throw new NoSuchElementException(tr("No latest version found. History is empty."));
    187187        return sortDescending().versions.get(0);
    188188    }
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryOsmPrimitive.java

    r2017 r2181  
    2929    protected void ensurePositiveLong(long value, String name) {
    3030        if (value <= 0)
    31             throw new IllegalArgumentException(tr("parameter ''{0}'' > 0 expected, got ''{1}''", name, value));
     31            throw new IllegalArgumentException(tr("Parameter ''{0}'' > 0 expected. Got ''{1}''.", name, value));
    3232    }
    3333
    3434    protected void ensureNotNull(Object obj, String name) {
    3535        if (obj == null)
    36             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", name));
     36            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", name));
    3737    }
    3838
     
    102102    public int compareTo(HistoryOsmPrimitive o) {
    103103        if (this.id != o.id)
    104             throw new ClassCastException(tr("can't compare primitive with id ''{0}'' to primitive with id ''{1}''", o.id, this.id));
     104            throw new ClassCastException(tr("Can't compare primitive with ID ''{0}'' to primitive with ID ''{1}''.", o.id, this.id));
    105105        return new Long(this.version).compareTo(o.version);
    106106    }
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryRelation.java

    r1670 r2181  
    8787    public RelationMember getRelationMember(int idx) throws IndexOutOfBoundsException  {
    8888        if (idx < 0 || idx >= members.size())
    89             throw new IndexOutOfBoundsException(tr("parameter {0} not in range 0..{1}, got {2}", "idx", members.size(),idx));
     89            throw new IndexOutOfBoundsException(tr("Parameter {0} not in range 0..{1}. Got ''{2}''.", "idx", members.size(),idx));
    9090        return members.get(idx);
    9191    }
     
    108108    public void addMember(RelationMember member) throws IllegalArgumentException {
    109109        if (member == null)
    110             throw new IllegalArgumentException(tr("parameter ''{0}'' must not be null", "member"));
     110            throw new IllegalArgumentException(tr("Parameter ''{0}'' must not be null.", "member"));
    111111        members.add(member);
    112112    }
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryWay.java

    r1670 r2181  
    4646    public long getNodeId(int idx) throws IndexOutOfBoundsException {
    4747        if (idx < 0 || idx >= nodeIds.size())
    48             throw new IndexOutOfBoundsException(tr("parameter {0} not in range 0..{1}, got {2}", "idx", nodeIds.size(),idx));
     48            throw new IndexOutOfBoundsException(tr("Parameter {0} not in range 0..{1}. Got ''{2}''.", "idx", nodeIds.size(),idx));
    4949        return nodeIds.get(idx);
    5050    }
  • 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.