Index: src/org/openstreetmap/josm/gui/oauth/AdvancedOAuthPropertiesPanel.java
===================================================================
--- src/org/openstreetmap/josm/gui/oauth/AdvancedOAuthPropertiesPanel.java	(Revision 2801)
+++ src/org/openstreetmap/josm/gui/oauth/AdvancedOAuthPropertiesPanel.java	(Arbeitskopie)
@@ -33,7 +33,7 @@
     private JTextField tfConsumerSecret;
     private JTextField tfRequestTokenURL;
     private JTextField tfAccessTokenURL;
-    private JTextField tfAutoriseURL;
+    private JTextField tfAuthoriseURL;
     private UseDefaultItemListener ilUseDefault;
 
     protected void build() {
@@ -94,16 +94,16 @@
         SelectAllOnFocusGainedDecorator.decorate(tfAccessTokenURL);
 
 
-        // -- autorise URL
+        // -- authorise URL
         gc.gridy = 5;
         gc.gridx = 0;
         gc.weightx = 0.0;
-        add(new JLabel(tr("Autorise URL:")), gc);
+        add(new JLabel(tr("Authorise URL:")), gc);
 
         gc.gridx = 1;
         gc.weightx = 1.0;
-        add(tfAutoriseURL = new JTextField(), gc);
-        SelectAllOnFocusGainedDecorator.decorate(tfAutoriseURL);
+        add(tfAuthoriseURL = new JTextField(), gc);
+        SelectAllOnFocusGainedDecorator.decorate(tfAuthoriseURL);
 
         cbUseDefaults.addItemListener(ilUseDefault = new UseDefaultItemListener());
     }
@@ -114,7 +114,7 @@
         || ! tfConsumerSecret.getText().equals( OAuthParameters.DEFAULT_JOSM_CONSUMER_SECRET)
         || ! tfRequestTokenURL.getText().equals( OAuthParameters.DEFAULT_REQUEST_TOKEN_URL)
         || ! tfAccessTokenURL.getText().equals( OAuthParameters.DEFAULT_ACCESS_TOKEN_URL)
-        || ! tfAutoriseURL.getText().equals( OAuthParameters.DEFAULT_AUTHORISE_URL);
+        || ! tfAuthoriseURL.getText().equals( OAuthParameters.DEFAULT_AUTHORISE_URL);
     }
 
     protected boolean confirmOverwriteCustomSettings() {
@@ -155,7 +155,7 @@
         tfConsumerSecret.setText( OAuthParameters.DEFAULT_JOSM_CONSUMER_SECRET);
         tfRequestTokenURL.setText(OAuthParameters.DEFAULT_REQUEST_TOKEN_URL);
         tfAccessTokenURL.setText(OAuthParameters.DEFAULT_ACCESS_TOKEN_URL);
-        tfAutoriseURL.setText(OAuthParameters.DEFAULT_AUTHORISE_URL);
+        tfAuthoriseURL.setText(OAuthParameters.DEFAULT_AUTHORISE_URL);
 
         setChildComponentsEnabled(false);
     }
@@ -181,7 +181,7 @@
         parameters.setConsumerSecret(tfConsumerSecret.getText());
         parameters.setRequestTokenUrl(tfRequestTokenURL.getText());
         parameters.setAccessTokenUrl(tfAccessTokenURL.getText());
-        parameters.setAuthoriseUrl(tfAutoriseURL.getText());
+        parameters.setAuthoriseUrl(tfAuthoriseURL.getText());
         return parameters;
     }
 
@@ -203,7 +203,7 @@
             tfConsumerSecret.setText( parameters.getConsumerSecret() == null ? "" : parameters.getConsumerSecret());
             tfRequestTokenURL.setText(parameters.getRequestTokenUrl() == null ? "" : parameters.getRequestTokenUrl());
             tfAccessTokenURL.setText(parameters.getAccessTokenUrl() == null ? "" : parameters.getAccessTokenUrl());
-            tfAutoriseURL.setText(parameters.getAuthoriseUrl() == null ? "" : parameters.getAuthoriseUrl());
+            tfAuthoriseURL.setText(parameters.getAuthoriseUrl() == null ? "" : parameters.getAuthoriseUrl());
         }
     }
 
@@ -229,7 +229,7 @@
             tfConsumerSecret.setText(pref.get("oauth.settings.consumer-secret", ""));
             tfRequestTokenURL.setText(pref.get("oauth.settings.request-token-url", ""));
             tfAccessTokenURL.setText(pref.get("oauth.settings.access-token-url", ""));
-            tfAutoriseURL.setText(pref.get("oauth.settings.authorise-url", ""));
+            tfAuthoriseURL.setText(pref.get("oauth.settings.authorise-url", ""));
             setChildComponentsEnabled(true);
         }
         ilUseDefault.setEnabled(true);
@@ -255,7 +255,7 @@
             pref.put("oauth.settings.consumer-secret", tfConsumerSecret.getText().trim());
             pref.put("oauth.settings.request-token-url", tfRequestTokenURL.getText().trim());
             pref.put("oauth.settings.access-token-url", tfAccessTokenURL.getText().trim());
-            pref.put("oauth.settings.authorise-url", tfAutoriseURL.getText().trim());
+            pref.put("oauth.settings.authorise-url", tfAuthoriseURL.getText().trim());
         }
     }
 
Index: src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorisationClient.java
===================================================================
--- src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorisationClient.java	(Revision 2801)
+++ src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorisationClient.java	(Arbeitskopie)
@@ -434,7 +434,7 @@
 
             int retCode = connection.getResponseCode();
             if (retCode != HttpURLConnection.HTTP_MOVED_TEMP)
-                throw new OsmOAuthAuthorisationException(tr("Failed to autorise OAuth request  ''{0}''", requestToken.getKey()));
+                throw new OsmOAuthAuthorisationException(tr("Failed to authorise OAuth request ''{0}''", requestToken.getKey()));
         } catch(MalformedURLException e) {
             throw new OsmOAuthAuthorisationException(e);
         } catch(IOException e) {
Index: src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorisationUI.java
===================================================================
--- src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorisationUI.java	(Revision 2801)
+++ src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorisationUI.java	(Arbeitskopie)
@@ -238,7 +238,7 @@
                 + "You''ve sucessfully retrieved an OAuth Access Token from the OSM website. "
                 + "Click on <strong>{0}</strong> to accept the token. JOSM will use it in "
                 + "subsequent requests to gain access to the OSM API."
-                + "</html",
+                + "</html>",
                 lbl
         ));
         pnl.add(msg, gc);
@@ -450,7 +450,7 @@
         @Override
         protected void finish() {}
 
-        protected void alertAutorisationFailed(OsmOAuthAuthorisationException e) {
+        protected void alertAuthorisationFailed(OsmOAuthAuthorisationException e) {
             HelpAwareOptionPane.showOptionDialog(
                     FullyAutomaticAuthorisationUI.this,
                     tr("<html>"
@@ -472,7 +472,7 @@
                     tr("<html>"
                             + "The automatic process for retrieving an OAuth Access Token<br>"
                             + "from the OSM server failed because JOSM wasn't able to build<br>"
-                            + "a valid login URL from the OAuth Autorise Endpoint URL ''{0}''.<br><br>"
+                            + "a valid login URL from the OAuth Authorise Endpoint URL ''{0}''.<br><br>"
                             + "Please check your advanced setting and try again."
                             +"</html>",
                             getAdvancedPropertiesPanel().getAdvancedParameters().getAuthoriseUrl()
@@ -514,7 +514,7 @@
                     if (e instanceof OsmLoginFailedException) {
                         alertLoginFailed((OsmLoginFailedException)e);
                     } else {
-                        alertAutorisationFailed(e);
+                        alertAuthorisationFailed(e);
                     }
                 }
             };
Index: src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorisationUI.java
===================================================================
--- src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorisationUI.java	(Revision 2801)
+++ src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorisationUI.java	(Arbeitskopie)
@@ -233,7 +233,7 @@
             gc.gridy = 1;
             gc.weightx = 0.0;
             gc.gridwidth = 1;
-            pnl.add(new JLabel(tr("Autorise URL:")), gc);
+            pnl.add(new JLabel(tr("Authorise URL:")), gc);
 
             gc.gridx = 1;
             gc.weightx = 1.0;
