diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-02-27 19:44:27 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-02-27 19:44:27 +0000 |
commit | c53b9880c9ed62a24b035c8d7b2841b2d188fca5 (patch) | |
tree | c5719eb7bb3ce70b1694eda1508c9982d2d6db17 /plugins/Dropbox/src | |
parent | cab39955c00989407383bb90c3e2ac4ebd91beea (diff) |
Dropbox: spelling correction
git-svn-id: http://svn.miranda-ng.org/main/trunk@8314 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src')
-rw-r--r-- | plugins/Dropbox/src/dropbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dropbox/src/dropbox.cpp b/plugins/Dropbox/src/dropbox.cpp index 53c8cb0356..ef6e29a36c 100644 --- a/plugins/Dropbox/src/dropbox.cpp +++ b/plugins/Dropbox/src/dropbox.cpp @@ -126,7 +126,7 @@ void CDropbox::RequestApiAuthorizationAsync(void *arg) {
if (HasAccessToken() && MessageBox(
NULL,
- TranslateT("Are you sure you want to request athorization?"),
+ TranslateT("Are you sure you want to request authorization?"),
TranslateT("Request authorization"),
MB_YESNO | MB_ICONQUESTION) == IDYES)
{
@@ -141,7 +141,7 @@ void CDropbox::RevokeApiAuthorizationAsync(void *arg) {
if (HasAccessToken() && MessageBox(
NULL,
- TranslateT("Are you sure you want to revoke athorization?"),
+ TranslateT("Are you sure you want to revoke authorization?"),
TranslateT("Revoke authorization"),
MB_YESNO | MB_ICONQUESTION) == IDYES)
INSTANCE->DestroyAcceessToken();
|