diff options
-rw-r--r-- | langpacks/english/Plugins/VKontakte.txt | 4 | ||||
-rw-r--r-- | langpacks/russian/Plugins/VKontakte.txt | 4 | ||||
-rw-r--r-- | protocols/VKontakte/src/vk_proto.cpp | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/langpacks/english/Plugins/VKontakte.txt b/langpacks/english/Plugins/VKontakte.txt index 94f1fb401f..64d89f9533 100644 --- a/langpacks/english/Plugins/VKontakte.txt +++ b/langpacks/english/Plugins/VKontakte.txt @@ -188,10 +188,10 @@ [%s server connection]
[Create new chat]
[Status message]
-[Sent message to my wall]
+[Send message to my wall]
[Load news from VK]
[Visit profile]
-[Sent message to user\'s wall]
+[Send message to user\'s wall]
[Add as friend]
[Delete from friend list]
[Ban user]
diff --git a/langpacks/russian/Plugins/VKontakte.txt b/langpacks/russian/Plugins/VKontakte.txt index 793c49328c..b55bf505f6 100644 --- a/langpacks/russian/Plugins/VKontakte.txt +++ b/langpacks/russian/Plugins/VKontakte.txt @@ -351,13 +351,13 @@ Cоздать комнату чата Создать новый чат
[Status message]
Сообщение статуса
-[Sent message to my wall]
+[Send message to my wall]
Опубликовать на своей стене
[Load news from VK]
Загрузить новости с VK
[Visit profile]
Профиль на сайте
-[Sent message to user\'s wall]
+[Send message to user\'s wall]
Сообщение на стене
[Add as friend]
Добавить в друзья
diff --git a/protocols/VKontakte/src/vk_proto.cpp b/protocols/VKontakte/src/vk_proto.cpp index dbfc7d026e..00d793c473 100644 --- a/protocols/VKontakte/src/vk_proto.cpp +++ b/protocols/VKontakte/src/vk_proto.cpp @@ -205,7 +205,7 @@ void CVkProto::InitMenus() mi.pszService = szService;
mi.position = 10009 + PMI_WALLPOST;
mi.icolibItem = Skin_GetIconByHandle(GetIconHandle(IDI_WALL));
- mi.pszName = LPGEN("Sent message to my wall");
+ mi.pszName = LPGEN("Send message to my wall");
g_hProtoMenuItems[PMI_WALLPOST] = Menu_AddProtoMenuItem(&mi);
mir_snprintf(szService, SIZEOF(szService), "%s%s", m_szModuleName, PS_LOADVKNEWS);
@@ -233,7 +233,7 @@ void CVkProto::InitMenus() mir_snprintf(szService, SIZEOF(szService), "%s%s", m_szModuleName, PS_WALLPOST);
mi.position = -200001000 + CMI_WALLPOST;
mi.icolibItem = Skin_GetIconByHandle(GetIconHandle(IDI_WALL));
- mi.ptszName = LPGENT("Sent message to user\'s wall");
+ mi.ptszName = LPGENT("Send message to user\'s wall");
mi.pszService = szService;
g_hContactMenuItems[CMI_WALLPOST] = Menu_AddContactMenuItem(&mi);
|