Ignore:
Timestamp:
2009-09-20T14:09:52+02:00 (15 years ago)
Author:
Gubaer
Message:

applied #3555: patch by Claudius Henrichs: More typos and closing html tags

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmApi.java

    r2165 r2171  
    594594    protected void ensureValidChangeset() throws OsmTransferException {
    595595        if (changeset == null)
    596             throw new OsmTransferException(tr("current changeset is null. Can't upload data."));
     596            throw new OsmTransferException(tr("Current changeset is null. Can't upload data."));
    597597        if (changeset.getId() <= 0)
    598             throw new OsmTransferException(tr("id of current changeset > required. Current id is {0}", changeset.getId()));
     598            throw new OsmTransferException(tr("id of current changeset > 0 required. Current id is {0}", changeset.getId()));
    599599    }
    600600    /**
Note: See TracChangeset for help on using the changeset viewer.