diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-10-23 12:41:11 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-10-23 12:41:11 +0000 |
commit | e39778169f9884a0ab912b6a55bdd9aa7e323a91 (patch) | |
tree | c193384a323f55541b7c7ffb1b9e359cf531cbdb | |
parent | 87b27f1097aa406aecf739ef35a0178c71f8282a (diff) |
more spelling corrections
git-svn-id: http://svn.miranda-ng.org/main/trunk@10854 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | langpacks/english/Plugins/VKontakte.txt | 6 | ||||
-rw-r--r-- | langpacks/russian/Plugins/VKontakte.txt | 8 | ||||
-rw-r--r-- | protocols/VKontakte/res/resource.rc | 2 | ||||
-rw-r--r-- | protocols/VKontakte/src/vk_thread.cpp | 4 |
4 files changed, 10 insertions, 10 deletions
diff --git a/langpacks/english/Plugins/VKontakte.txt b/langpacks/english/Plugins/VKontakte.txt index ba5da34ff1..d6e086e3f7 100644 --- a/langpacks/english/Plugins/VKontakte.txt +++ b/langpacks/english/Plugins/VKontakte.txt @@ -13,7 +13,7 @@ [Advanced]
[Hide chats on startup]
[Always notify as unread for all incoming message]
-[Add [img] bbc for graphical attachments]
+[Add [img] BBCode for graphical attachments]
[Process stickers as smileys]
[Force online status upon user activity]
[When I ban user...]
@@ -123,8 +123,8 @@ [Friend request suggestion for the user %s deleted]
[ report abuse on him/her]
[ clear server history with him/her]
-[ remove him/her from you friend list]
-[ remove him/her from you contact list]
+[ remove him/her from your friend list]
+[ remove him/her from your contact list]
[Are you sure to ban %s? %s%sContinue?]
[\nIt will also]
[Are you sure to report abuse on %s?]
diff --git a/langpacks/russian/Plugins/VKontakte.txt b/langpacks/russian/Plugins/VKontakte.txt index 55f3f71dd4..c8670fe8d8 100644 --- a/langpacks/russian/Plugins/VKontakte.txt +++ b/langpacks/russian/Plugins/VKontakte.txt @@ -19,8 +19,8 @@ E-mail или номер телефона: Не открывать окна комнат чата при входе
[Always notify as unread for all incoming message]
Помечать все входящие сообщения как "Непрочитанное"
-[Add [img] bbc for graphical attachments]
-Добавлять BB-код [img] для графических вложений
+[Add [img] BBCode for graphical attachments]
+Добавлять BBCode [img] для графических вложений
[Process stickers as smileys]
Обрабатывать стикеры как смайлы
[Force online status upon user activity]
@@ -225,9 +225,9 @@ Cоздать комнату чата отправит жалобу на пользователя
[ clear server history with him/her]
удалит историю с пользователем на сайте
-[ remove him/her from you friend list]
+[ remove him/her from your friend list]
удалит пользователя из друзей
-[ remove him/her from you contact list]
+[ remove him/her from your contact list]
удалит пользователя из списка контактов
[Are you sure to ban %s? %s%sContinue?]
Вы уверены, что хотите забанить %s? %s%sПродолжить?
diff --git a/protocols/VKontakte/res/resource.rc b/protocols/VKontakte/res/resource.rc index 11043dd240..abad01a9a2 100644 --- a/protocols/VKontakte/res/resource.rc +++ b/protocols/VKontakte/res/resource.rc @@ -126,7 +126,7 @@ BEGIN CONTROL "Hide chats on startup",IDC_HIDECHATS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,19,278,10
CONTROL "Always notify as unread for all incoming message",IDC_MESASUREAD,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,30,278,10
- CONTROL "Add [img] bbc for graphical attachments",IDC_ADD_IMG_BBC,
+ CONTROL "Add [img] BBCode for graphical attachments",IDC_ADD_IMG_BBC,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,41,278,10
CONTROL "Process stickers as smileys",IDC_STICKERS_AS_SMYLES,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,12,52,278,10
diff --git a/protocols/VKontakte/src/vk_thread.cpp b/protocols/VKontakte/src/vk_thread.cpp index b5e7ba5a57..5e9c902a60 100644 --- a/protocols/VKontakte/src/vk_thread.cpp +++ b/protocols/VKontakte/src/vk_thread.cpp @@ -1023,13 +1023,13 @@ INT_PTR __cdecl CVkProto::SvcBanUser(WPARAM hContact, LPARAM) code += "API.friends.delete({\"user_id\":userID});";
if (!tszVarWarning.IsEmpty())
tszVarWarning.AppendChar(L',');
- tszVarWarning += TranslateT(" remove him/her from you friend list");
+ tszVarWarning += TranslateT(" remove him/her from your friend list");
}
if (m_bRemoveFromClist){
debugLogA("CVkProto::SvcBanUser m_bRemoveFromClist = true");
if (!tszVarWarning.IsEmpty())
tszVarWarning.AppendChar(L',');
- tszVarWarning += TranslateT(" remove him/her from you contact list");
+ tszVarWarning += TranslateT(" remove him/her from your contact list");
}
if (!tszVarWarning.IsEmpty())
|