Changeset 2171 in josm
- Timestamp:
- 2009-09-20T14:09:52+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/UploadAction.java
r2168 r2171 302 302 String msg = tr("<html>Uploading <strong>failed</strong> because you've been using<br>" 303 303 + "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>", 305 305 changsetId, new SimpleDateFormat().format(d) 306 306 ); -
trunk/src/org/openstreetmap/josm/command/ConflictAddCommand.java
r2163 r2171 52 52 @Override public void undoCommand() { 53 53 if (! Main.map.mapView.hasLayer(getLayer())) { 54 System.out.println(tr("Warning: layer ''{0}'' doesn't exist any more. Can't remove conflict for primit mive ''{1}''",54 System.out.println(tr("Warning: layer ''{0}'' doesn't exist any more. Can't remove conflict for primitive ''{1}''", 55 55 getLayer().getName(), 56 56 conflict.getMy().getDisplayName(DefaultNameFormatter.getInstance()) -
trunk/src/org/openstreetmap/josm/io/OsmApi.java
r2165 r2171 594 594 protected void ensureValidChangeset() throws OsmTransferException { 595 595 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.")); 597 597 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())); 599 599 } 600 600 /**
Note:
See TracChangeset
for help on using the changeset viewer.