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/FullyAutomaticAuthorizationUI.java

    r2861 r2877  
    331331    class RunAuthorisationAction extends AbstractAction implements DocumentListener{
    332332        public RunAuthorisationAction() {
    333             putValue(NAME, tr("Authorise now"));
     333            putValue(NAME, tr("Authorize now"));
    334334            putValue(SMALL_ICON, ImageProvider.get("oauth", "oauth"));
    335             putValue(SHORT_DESCRIPTION, tr("Click to redirect you to the authorisation form on the JOSM web site"));
     335            putValue(SHORT_DESCRIPTION, tr("Click to redirect you to the authorization form on the JOSM web site"));
    336336            updateEnabledState();
    337337        }
     
    364364        public BackAction() {
    365365            putValue(NAME, tr("Back"));
    366             putValue(SHORT_DESCRIPTION, tr("Run the automatic authorisation steps again"));
     366            putValue(SHORT_DESCRIPTION, tr("Run the automatic authorization steps again"));
    367367            putValue(SMALL_ICON, ImageProvider.get("dialogs", "previous"));
    368368        }
     
    440440
    441441        public FullyAutomaticAuthorisationTask(Component parent) {
    442             super(parent, tr("Authorise JOSM to access the OSM API"), false /* don't ignore exceptions */);
     442            super(parent, tr("Authorize JOSM to access the OSM API"), false /* don't ignore exceptions */);
    443443        }
    444444
     
    457457                            + "The automatic process for retrieving an OAuth Access Token<br>"
    458458                            + "from the OSM server failed.<br><br>"
    459                             + "Please try again or choose another kind of authorisation process,<br>"
    460                             + "i.e. semi-automatic or manual authorisation."
     459                            + "Please try again or choose another kind of authorization process,<br>"
     460                            + "i.e. semi-automatic or manual authorization."
    461461                            +"</html>"
    462462                    ),
    463                     tr("OAuth authorisation failed"),
     463                    tr("OAuth authorization failed"),
    464464                    JOptionPane.ERROR_MESSAGE,
    465465                    HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed")
     
    473473                            + "The automatic process for retrieving an OAuth Access Token<br>"
    474474                            + "from the OSM server failed because JOSM was not able to build<br>"
    475                             + "a valid login URL from the OAuth Authorise Endpoint URL ''{0}''.<br><br>"
     475                            + "a valid login URL from the OAuth Authorize Endpoint URL ''{0}''.<br><br>"
    476476                            + "Please check your advanced setting and try again."
    477477                            + "</html>",
    478478                            getAdvancedPropertiesPanel().getAdvancedParameters().getAuthoriseUrl()
    479479                    ),
    480                     tr("OAuth authorisation failed"),
     480                    tr("OAuth authorization failed"),
    481481                    JOptionPane.ERROR_MESSAGE,
    482482                    HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed")
     
    503503                            getOsmUserName()
    504504                    ),
    505                     tr("OAuth authorisation failed"),
     505                    tr("OAuth authorization failed"),
    506506                    JOptionPane.ERROR_MESSAGE,
    507507                    HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed")
Note: See TracChangeset for help on using the changeset viewer.