diff options
-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");
|