Ignore:
Timestamp:
2010-01-13T20:13:40+01:00 (14 years ago)
Author:
mjulius
Message:

fix messages for gui/io

File:
1 edited

Legend:

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

    r2711 r2848  
    6363        OsmPrimitive p = layer.data.getPrimitiveById(id, type);
    6464        if (p == null)
    65             throw new IllegalStateException(tr("Failed to update primitive with id {0} because current edit layer doesn't include such a primitive", id));
     65            throw new IllegalStateException(tr("Failed to update primitive with id {0} because current edit layer does not include such a primitive", id));
    6666        Main.worker.execute(new UpdatePrimitivesTask(layer, Collections.singleton(p)));
    6767    }
     
    192192     */
    193193    protected void handleUploadConflictForClosedChangeset(long changsetId, Date d) {
    194         String msg =  tr("<html>Uploading <strong>failed</strong> because you''ve been using<br>"
     194        String msg =  tr("<html>Uploading <strong>failed</strong> because you have been using<br>"
    195195                + "changeset {0} which was already closed at {1}.<br>"
    196196                + "Please upload again with a new or an existing open changeset.</html>",
Note: See TracChangeset for help on using the changeset viewer.