Index: /trunk/src/org/openstreetmap/josm/gui/oauth/AdvancedOAuthPropertiesPanel.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/oauth/AdvancedOAuthPropertiesPanel.java	(revision 2803)
+++ /trunk/src/org/openstreetmap/josm/gui/oauth/AdvancedOAuthPropertiesPanel.java	(revision 2804)
@@ -34,5 +34,5 @@
     private JTextField tfRequestTokenURL;
     private JTextField tfAccessTokenURL;
-    private JTextField tfAutoriseURL;
+    private JTextField tfAuthoriseURL;
     private UseDefaultItemListener ilUseDefault;
 
@@ -95,14 +95,14 @@
 
 
-        // -- autorise URL
+        // -- authorise URL
         gc.gridy = 5;
         gc.gridx = 0;
         gc.weightx = 0.0;
-        add(new JLabel(tr("Autorise URL:")), gc);
-
-        gc.gridx = 1;
-        gc.weightx = 1.0;
-        add(tfAutoriseURL = new JTextField(), gc);
-        SelectAllOnFocusGainedDecorator.decorate(tfAutoriseURL);
+        add(new JLabel(tr("Authorise URL:")), gc);
+
+        gc.gridx = 1;
+        gc.weightx = 1.0;
+        add(tfAuthoriseURL = new JTextField(), gc);
+        SelectAllOnFocusGainedDecorator.decorate(tfAuthoriseURL);
 
         cbUseDefaults.addItemListener(ilUseDefault = new UseDefaultItemListener());
@@ -115,5 +115,5 @@
         || ! 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);
     }
 
@@ -156,5 +156,5 @@
         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);
@@ -182,5 +182,5 @@
         parameters.setRequestTokenUrl(tfRequestTokenURL.getText());
         parameters.setAccessTokenUrl(tfAccessTokenURL.getText());
-        parameters.setAuthoriseUrl(tfAutoriseURL.getText());
+        parameters.setAuthoriseUrl(tfAuthoriseURL.getText());
         return parameters;
     }
@@ -204,5 +204,5 @@
             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());
         }
     }
@@ -230,5 +230,5 @@
             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);
         }
@@ -256,5 +256,5 @@
             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: /trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorisationUI.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorisationUI.java	(revision 2803)
+++ /trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorisationUI.java	(revision 2804)
@@ -451,5 +451,5 @@
         protected void finish() {}
 
-        protected void alertAutorisationFailed(OsmOAuthAuthorisationException e) {
+        protected void alertAuthorisationFailed(OsmOAuthAuthorisationException e) {
             HelpAwareOptionPane.showOptionDialog(
                     FullyAutomaticAuthorisationUI.this,
@@ -463,5 +463,5 @@
                     tr("OAuth authorisation failed"),
                     JOptionPane.ERROR_MESSAGE,
-                    HelpUtil.ht("/Dialog/OAuthAutorisationWizard#FullyAutomaticProcessFailed")
+                    HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed")
             );
         }
@@ -473,5 +473,5 @@
                             + "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>",
@@ -480,5 +480,5 @@
                     tr("OAuth authorisation failed"),
                     JOptionPane.ERROR_MESSAGE,
-                    HelpUtil.ht("/Dialog/OAuthAutorisationWizard#FullyAutomaticProcessFailed")
+                    HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed")
             );
         }
@@ -505,5 +505,5 @@
                     tr("OAuth authorisation failed"),
                     JOptionPane.ERROR_MESSAGE,
-                    HelpUtil.ht("/Dialog/OAuthAutorisationWizard#FullyAutomaticProcessFailed")
+                    HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed")
             );
         }
@@ -515,5 +515,5 @@
                         alertLoginFailed((OsmLoginFailedException)e);
                     } else {
-                        alertAutorisationFailed(e);
+                        alertAuthorisationFailed(e);
                     }
                 }
Index: /trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorisationClient.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorisationClient.java	(revision 2803)
+++ /trunk/src/org/openstreetmap/josm/gui/oauth/OsmOAuthAuthorisationClient.java	(revision 2804)
@@ -435,5 +435,5 @@
             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);
Index: /trunk/src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorisationUI.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorisationUI.java	(revision 2803)
+++ /trunk/src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorisationUI.java	(revision 2804)
@@ -234,5 +234,5 @@
             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;
Index: /trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java	(revision 2803)
+++ /trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java	(revision 2804)
@@ -48,6 +48,6 @@
 
     private JPanel pnlAuthorisationMessage;
-    private NotYetAuthorisedPanel pnlNotYetAutorised;
-    private AlreadyAuthorisedPanel pnlAlreadyAutorised;
+    private NotYetAuthorisedPanel pnlNotYetAuthorised;
+    private AlreadyAuthorisedPanel pnlAlreadyAuthorised;
     private AdvancedOAuthPropertiesPanel pnlAdvancedProperties;
     private String apiUrl;
@@ -123,6 +123,6 @@
         // create these two panels, they are going to be used later in refreshView
         //
-        pnlAlreadyAutorised = new AlreadyAuthorisedPanel();
-        pnlNotYetAutorised = new NotYetAuthorisedPanel();
+        pnlAlreadyAuthorised = new AlreadyAuthorisedPanel();
+        pnlNotYetAuthorised = new NotYetAuthorisedPanel();
     }
 
@@ -130,10 +130,10 @@
         pnlAuthorisationMessage.removeAll();
         if (OAuthAccessTokenHolder.getInstance().containsAccessToken()) {
-            pnlAuthorisationMessage.add(pnlAlreadyAutorised, BorderLayout.CENTER);
-            pnlAlreadyAutorised.refreshView();
-            pnlAlreadyAutorised.revalidate();
+            pnlAuthorisationMessage.add(pnlAlreadyAuthorised, BorderLayout.CENTER);
+            pnlAlreadyAuthorised.refreshView();
+            pnlAlreadyAuthorised.revalidate();
         } else {
-            pnlAuthorisationMessage.add(pnlNotYetAutorised, BorderLayout.CENTER);
-            pnlNotYetAutorised.revalidate();
+            pnlAuthorisationMessage.add(pnlNotYetAuthorised, BorderLayout.CENTER);
+            pnlNotYetAuthorised.revalidate();
         }
         repaint();
