Ignore:
Timestamp:
2009-01-06T17:43:27+01:00 (16 years ago)
Author:
stoecker
Message:

language updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/waypoints/src/WaypointReader.java

    r12778 r12991  
    5555                    if (Math.abs(lat) > 90)
    5656                        throw new SAXException
    57                         (tr("Data error: lat value \"{0}\" is out of bound.",
     57                        (tr("Data error: lat value \"{0}\" is out of bounds.",
    5858                            lat));
    5959                    if (Math.abs(lon) > 180)
    6060                        throw new SAXException
    61                         (tr("Data error: lon value \"{0}\" is out of bound.",
     61                        (tr("Data error: lon value \"{0}\" is out of bounds.",
    6262                            lon));
    6363                    currentLatLon = new LatLon(lat, lon);
Note: See TracChangeset for help on using the changeset viewer.