Ignore:
Timestamp:
2009-09-22T15:34:19+02:00 (15 years ago)
Author:
stoecker
Message:

lots of i18n fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmServerReader.java

    r2124 r2181  
    6161                activeConnection = (HttpURLConnection)url.openConnection();
    6262            } catch(Exception e) {
    63                 throw new OsmTransferException(tr("Failed to open connection to API {0}", url.toExternalForm()), e);
     63                throw new OsmTransferException(tr("Failed to open connection to API {0}.", url.toExternalForm()), e);
    6464            }
    6565            if (cancel) {
     
    8686                activeConnection.connect();
    8787            } catch (Exception e) {
    88                 throw new OsmTransferException(tr("Couldn't connect to the osm server. Please check your internet connection."), e);
     88                throw new OsmTransferException(tr("Couldn't connect to the OSM server. Please check your internet connection."), e);
    8989            }
    9090            try {
Note: See TracChangeset for help on using the changeset viewer.