Ignore:
Timestamp:
2009-10-03T13:10:30+02:00 (15 years ago)
Author:
Gubaer
Message:

fixed #3641: explainNotFound message missing second parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/ExceptionUtil.java

    r2200 r2228  
    180180    public static String explainNotFound(OsmApiException e) {
    181181        String apiUrl = OsmApi.getOsmApi().getBaseUrl();
    182         String message = tr("The OSM server ''{0}'' doesn't know about an object<br>"
     182        String message = tr("The OSM server ''{0}'' doesn''t know about an object<br>"
    183183                + "you tried to read, update, or delete. Either the respective object<br>"
    184184                + "doesn''t exist on the server or you''re using an invalid URL to access<br>"
    185                 + "it. Please carefully check the servers address ''{1}'' for typos."
    186                 , apiUrl, apiUrl);
     185                + "it. Please carefully check the servers address ''{0}'' for typos."
     186                , apiUrl);
    187187        message = "<html>" + message + "</html>";
    188188        e.printStackTrace();
Note: See TracChangeset for help on using the changeset viewer.