Changeset 2228 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2009-10-03T13:10:30+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/ExceptionUtil.java
r2200 r2228 180 180 public static String explainNotFound(OsmApiException e) { 181 181 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>" 183 183 + "you tried to read, update, or delete. Either the respective object<br>" 184 184 + "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); 187 187 message = "<html>" + message + "</html>"; 188 188 e.printStackTrace();
Note:
See TracChangeset
for help on using the changeset viewer.