summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Bolhovskoy <elzorfox@ya.ru>2014-09-24 16:59:43 +0000
committerSergey Bolhovskoy <elzorfox@ya.ru>2014-09-24 16:59:43 +0000
commit23a7a4870f5a30e85bb24067c3d677ea0f26e83f (patch)
tree4964d4a2e7602b6310c6585f650331f62a99f827
parent460530f613eefe29e9204df6838897ccfd4c2d63 (diff)
VKontakte: ruenglish fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@10572 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--protocols/VKontakte/src/vk_proto.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/VKontakte/src/vk_proto.cpp b/protocols/VKontakte/src/vk_proto.cpp
index c240af46f7..09dccd9df1 100644
--- a/protocols/VKontakte/src/vk_proto.cpp
+++ b/protocols/VKontakte/src/vk_proto.cpp
@@ -463,13 +463,13 @@ void CVkProto::OnReceiveAuthRequest(NETLIBHTTPREQUEST *reply, AsyncHttpRequest *
int iRet = json_as_int(pResponse);
if (iRet == 2){
setByte(param->hContact, "friend", 1);
- MsgPopup(param->hContact, TranslateT("User add as friend"), _T(""));
+ MsgPopup(param->hContact, TranslateT("User was added asfriend"), _T(""));
}
}
else{
switch (param->iCount){
case VKERR_HIMSELF_AS_FRIEND:
- MsgPopup(param->hContact, TranslateT("Cannot add user himself as friend"), TranslateT("Error"));
+ MsgPopup(param->hContact, TranslateT("You cannot add yourself as friend"), TranslateT("Error"));
break;
case VKERR_YOU_ON_BLACKLIST:
MsgPopup(param->hContact, TranslateT("Cannot add this user to friends as they have put you on their blacklist"), TranslateT("Error"));