Ignore:
Timestamp:
2010-01-18T22:28:36+01:00 (14 years ago)
Author:
mjulius
Message:

authorise --> authorize in localized messages
fixed typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorizationClient.java

    r2861 r2877  
    435435            int retCode = connection.getResponseCode();
    436436            if (retCode != HttpURLConnection.HTTP_MOVED_TEMP)
    437                 throw new OsmOAuthAuthorizationException(tr("Failed to authorise OAuth request  ''{0}''", requestToken.getKey()));
     437                throw new OsmOAuthAuthorizationException(tr("Failed to authorize OAuth request  ''{0}''", requestToken.getKey()));
    438438        } catch(MalformedURLException e) {
    439439            throw new OsmOAuthAuthorizationException(e);
     
    482482        }
    483483        try {
    484             monitor.beginTask(tr("Authorising OAuth Request token ''{0}'' at the OSM website ...", requestToken.getKey()));
     484            monitor.beginTask(tr("Authorizing OAuth Request token ''{0}'' at the OSM website ...", requestToken.getKey()));
    485485            monitor.setTicksCount(4);
    486486            monitor.indeterminateSubTask(tr("Initializing a session at the OSM website..."));
     
    496496            monitor.worked(1);
    497497
    498             monitor.indeterminateSubTask(tr("Authorising request token ''{0}''...", requestToken.getKey()));
     498            monitor.indeterminateSubTask(tr("Authorizing request token ''{0}''...", requestToken.getKey()));
    499499            sendAuthorisationRequest(sessionId, requestToken, privileges);
    500500            if (canceled)
Note: See TracChangeset for help on using the changeset viewer.