Ignore:
Timestamp:
2010-03-11T10:16:11+01:00 (14 years ago)
Author:
Gubaer
Message:

applied #4715: patch by mjulius: Typos in ExceptionUtil

File:
1 edited

Legend:

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

    r3101 r3109  
    334334    public static String explainNestedIllegalDataException(OsmTransferException e) {
    335335        IllegalDataException ide = getNestedException(e, IllegalDataException.class);
    336         String message = tr("<html>Failed to download data."
    337                 + "Its format is either unsupported, ill-formed, and/or inconsistent.<br>"
    338                 + "<br>Details(untranslated): {0}</html>", ide.getMessage());
     336        String message = tr("<html>Failed to download data. "
     337                + "It's format is either unsupported, ill-formed, and/or inconsistent.<br>"
     338                + "<br>Details (untranslated): {0}</html>", ide.getMessage());
    339339        e.printStackTrace();
    340340        return message;
Note: See TracChangeset for help on using the changeset viewer.