Ticket #4715: Typos_in_ExceptionUtil.patch
File Typos_in_ExceptionUtil.patch, 996 bytes (added by , 15 years ago) |
---|
-
org/openstreetmap/josm/tools/ExceptionUtil.java
333 333 */ 334 334 public static String explainNestedIllegalDataException(OsmTransferException e) { 335 335 IllegalDataException ide = getNestedException(e, IllegalDataException.class); 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());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()); 339 339 e.printStackTrace(); 340 340 return message; 341 341 }