Ignore:
Timestamp:
2010-01-10T12:46:10+01:00 (16 years ago)
Author:
stoecker
Message:

typos

File:
1 edited

Legend:

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

    r2801 r2804  
    451451        protected void finish() {}
    452452
    453         protected void alertAutorisationFailed(OsmOAuthAuthorisationException e) {
     453        protected void alertAuthorisationFailed(OsmOAuthAuthorisationException e) {
    454454            HelpAwareOptionPane.showOptionDialog(
    455455                    FullyAutomaticAuthorisationUI.this,
     
    463463                    tr("OAuth authorisation failed"),
    464464                    JOptionPane.ERROR_MESSAGE,
    465                     HelpUtil.ht("/Dialog/OAuthAutorisationWizard#FullyAutomaticProcessFailed")
     465                    HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed")
    466466            );
    467467        }
     
    473473                            + "The automatic process for retrieving an OAuth Access Token<br>"
    474474                            + "from the OSM server failed because JOSM wasn't able to build<br>"
    475                             + "a valid login URL from the OAuth Autorise Endpoint URL ''{0}''.<br><br>"
     475                            + "a valid login URL from the OAuth Authorise Endpoint URL ''{0}''.<br><br>"
    476476                            + "Please check your advanced setting and try again."
    477477                            +"</html>",
     
    480480                    tr("OAuth authorisation failed"),
    481481                    JOptionPane.ERROR_MESSAGE,
    482                     HelpUtil.ht("/Dialog/OAuthAutorisationWizard#FullyAutomaticProcessFailed")
     482                    HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed")
    483483            );
    484484        }
     
    505505                    tr("OAuth authorisation failed"),
    506506                    JOptionPane.ERROR_MESSAGE,
    507                     HelpUtil.ht("/Dialog/OAuthAutorisationWizard#FullyAutomaticProcessFailed")
     507                    HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed")
    508508            );
    509509        }
     
    515515                        alertLoginFailed((OsmLoginFailedException)e);
    516516                    } else {
    517                         alertAutorisationFailed(e);
     517                        alertAuthorisationFailed(e);
    518518                    }
    519519                }
Note: See TracChangeset for help on using the changeset viewer.