diff options
author | RMN <rmn@miranda-ng.org> | 2015-09-07 19:51:27 +0000 |
---|---|---|
committer | RMN <rmn@miranda-ng.org> | 2015-09-07 19:51:27 +0000 |
commit | 64b0ca188d70a26c6a575a5446043221b3c37d60 (patch) | |
tree | 114d0b9f399cc2bc37cac4eda761bea4faa08788 /protocols/VKontakte/src | |
parent | ed9fa764b873d1ae27ab98249a5d3bb31c253bdb (diff) |
VKontakte: spelling
git-svn-id: http://svn.miranda-ng.org/main/trunk@15298 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte/src')
-rw-r--r-- | protocols/VKontakte/src/vk.h | 4 | ||||
-rw-r--r-- | protocols/VKontakte/src/vk_files.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/protocols/VKontakte/src/vk.h b/protocols/VKontakte/src/vk.h index 83e9d0eb7e..59cc224918 100644 --- a/protocols/VKontakte/src/vk.h +++ b/protocols/VKontakte/src/vk.h @@ -76,8 +76,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define VKERR_ERR_OPEN_FILE 10103 // Error open file
#define VKERR_ERR_READ_FILE 10104 // Error read file
#define VKERR_FILE_NOT_UPLOADED 10105 // Error upload file
-#define VKERR_INVALID_URL 10106 // Upload server return empty url
-#define VKERR_INVALID_USER 10107 // Invalid or unknow recepient user ID
+#define VKERR_INVALID_URL 10106 // Upload server returned empty URL
+#define VKERR_INVALID_USER 10107 // Invalid or unknown recipient user ID
#define VK_API_VER "5.37"
#define VER_API CHAR_PARAM("v", VK_API_VER)
diff --git a/protocols/VKontakte/src/vk_files.cpp b/protocols/VKontakte/src/vk_files.cpp index 7b39fb8dea..932841f050 100644 --- a/protocols/VKontakte/src/vk_files.cpp +++ b/protocols/VKontakte/src/vk_files.cpp @@ -52,10 +52,10 @@ void CVkProto::SendFileFiled(CVkFileUploadParam *fup, int ErrorCode) tszError = TranslateT("Error upload file");
break;
case VKERR_INVALID_URL:
- tszError = TranslateT("Upload server return empty url");
+ tszError = TranslateT("Upload server returned empty URL");
break;
case VKERR_INVALID_USER:
- tszError = TranslateT("Invalid or unknow recepient user ID");
+ tszError = TranslateT("Invalid or unknown recipient user ID");
break;
case VKERR_INVALID_PARAMETERS:
tszError = TranslateT("One of the parameters specified was missing or invalid");
|