Changeset 2804 in josm for trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorisationUI.java
- Timestamp:
- 2010-01-10T12:46:10+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorisationUI.java
r2801 r2804 451 451 protected void finish() {} 452 452 453 protected void alertAutorisationFailed(OsmOAuthAuthorisationException e) { 453 protected void alertAuthorisationFailed(OsmOAuthAuthorisationException e) { 454 454 HelpAwareOptionPane.showOptionDialog( 455 455 FullyAutomaticAuthorisationUI.this, … … 463 463 tr("OAuth authorisation failed"), 464 464 JOptionPane.ERROR_MESSAGE, 465 HelpUtil.ht("/Dialog/OAuthAutorisationWizard#FullyAutomaticProcessFailed") 465 HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed") 466 466 ); 467 467 } … … 473 473 + "The automatic process for retrieving an OAuth Access Token<br>" 474 474 + "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>" 476 476 + "Please check your advanced setting and try again." 477 477 +"</html>", … … 480 480 tr("OAuth authorisation failed"), 481 481 JOptionPane.ERROR_MESSAGE, 482 HelpUtil.ht("/Dialog/OAuthAutorisationWizard#FullyAutomaticProcessFailed") 482 HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed") 483 483 ); 484 484 } … … 505 505 tr("OAuth authorisation failed"), 506 506 JOptionPane.ERROR_MESSAGE, 507 HelpUtil.ht("/Dialog/OAuthAutorisationWizard#FullyAutomaticProcessFailed") 507 HelpUtil.ht("/Dialog/OAuthAuthorisationWizard#FullyAutomaticProcessFailed") 508 508 ); 509 509 } … … 515 515 alertLoginFailed((OsmLoginFailedException)e); 516 516 } else { 517 alertAutorisationFailed(e); 517 alertAuthorisationFailed(e); 518 518 } 519 519 }
Note:
See TracChangeset
for help on using the changeset viewer.
