Changeset 2171 in josm


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

Location:
trunk/src/org/openstreetmap/josm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/UploadAction.java

    r2168 r2171  
    302302        String msg =  tr("<html>Uploading <strong>failed</strong> because you've been using<br>"
    303303                + "changeset {0} which was already closed at {1}.<br>"
    304                 + "Please upload again with a new or an existing open changeset.",
     304                + "Please upload again with a new or an existing open changeset.</html>",
    305305                changsetId, new SimpleDateFormat().format(d)
    306306        );
  • trunk/src/org/openstreetmap/josm/command/ConflictAddCommand.java

    r2163 r2171  
    5252    @Override public void undoCommand() {
    5353        if (! Main.map.mapView.hasLayer(getLayer())) {
    54             System.out.println(tr("Warning: layer ''{0}'' doesn't exist any more. Can't remove conflict for primitmive ''{1}''",
     54            System.out.println(tr("Warning: layer ''{0}'' doesn't exist any more. Can't remove conflict for primitive ''{1}''",
    5555                    getLayer().getName(),
    5656                    conflict.getMy().getDisplayName(DefaultNameFormatter.getInstance())
  • 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.