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

    r2861 r2877  
    203203        protected JPanel buildTitlePanel() {
    204204            JPanel pnl = new JPanel(new BorderLayout());
    205             JLabel lbl = new JLabel(tr("<html>Step 2/3: Authorise and retrieve an Access Token</html>"));
     205            JLabel lbl = new JLabel(tr("<html>Step 2/3: Authorize and retrieve an Access Token</html>"));
    206206            lbl.setFont(lbl.getFont().deriveFont(16f));
    207207            pnl.add(lbl, BorderLayout.CENTER);
     
    220220            html.setText(tr("<html>"
    221221                    + "JOSM successfully retrieved a Request Token. "
    222                     + "JOSM is now launching an authorisation page in an external browser. "
     222                    + "JOSM is now launching an authorization page in an external browser. "
    223223                    + "Please login with your OSM username and password and follow the instructions "
    224                     + "to authorise the Request Token. Then switch back to this dialog and click on "
     224                    + "to authorize the Request Token. Then switch back to this dialog and click on "
    225225                    + "<strong>{0}</strong><br><br>"
    226                     + "If launching the external browser fails you can copy the following authorise URL "
     226                    + "If launching the external browser fails you can copy the following authorize URL "
    227227                    + "and paste it into the address field of your browser.</html>",
    228228                    tr("Request Access Token")
     
    234234            gc.weightx = 0.0;
    235235            gc.gridwidth = 1;
    236             pnl.add(new JLabel(tr("Authorise URL:")), gc);
     236            pnl.add(new JLabel(tr("Authorize URL:")), gc);
    237237
    238238            gc.gridx = 1;
     
    307307                    + "JOSM has successfully retrieved an Access Token. "
    308308                    + "You can now accept this token. JOSM will use it in the future for authentication "
    309                     + "and authorisation to the OSM server.<br><br>"
     309                    + "and authorization to the OSM server.<br><br>"
    310310                    + "The access token is: </html>"
    311311            ));
Note: See TracChangeset for help on using the changeset viewer.