diff options
author | Dart Raiden <wowemuh@gmail.com> | 2016-03-02 13:29:03 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2016-03-02 13:29:03 +0000 |
commit | 2830e2974606e73dc148e3e8957ed84f6bcb7cf5 (patch) | |
tree | ebc73e02836e428ea04e5a4b653a9e7af35a51da /protocols/VKontakte | |
parent | 14bdc60ec9715ed7a0e74ade4072cf86f3fefb4a (diff) |
VKontakte: correct spelling
git-svn-id: http://svn.miranda-ng.org/main/trunk@16390 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/VKontakte')
-rw-r--r-- | protocols/VKontakte/src/vk_history.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/VKontakte/src/vk_history.cpp b/protocols/VKontakte/src/vk_history.cpp index 876be2ec6e..cbf6539068 100644 --- a/protocols/VKontakte/src/vk_history.cpp +++ b/protocols/VKontakte/src/vk_history.cpp @@ -190,7 +190,7 @@ void CVkProto::OnReceiveHistoryMessages(NETLIBHTTPREQUEST *reply, AsyncHttpReque debugLog(_T("CVkProto::OnReceiveHistoryMessages error for %s m_iLoadHistoryTask=%d"), ptszNick, m_iLoadHistoryTask);
if (m_iLoadHistoryTask == 0 && m_bNotifyForEndLoadingHistoryAllContact) {
- MsgPopup(param->hContact, TranslateT("Loading messages for all contacts was completed"), TranslateT("Loading history"));
+ MsgPopup(param->hContact, TranslateT("Loading messages for all contacts is completed"), TranslateT("Loading history"));
m_bNotifyForEndLoadingHistoryAllContact = m_bNotifyForEndLoadingHistory = false;
}
@@ -276,14 +276,14 @@ void CVkProto::OnReceiveHistoryMessages(NETLIBHTTPREQUEST *reply, AsyncHttpReque m_iLoadHistoryTask--;
ptrT ptszNick(db_get_tsa(param->hContact, m_szModuleName, "Nick"));
- CMString str(FORMAT, TranslateT("Loading messages for %s was completed"), ptszNick);
+ CMString str(FORMAT, TranslateT("Loading messages for %s is completed"), ptszNick);
debugLog(_T("CVkProto::OnReceiveHistoryMessages for %s m_iLoadHistoryTask=%d"), ptszNick, m_iLoadHistoryTask);
if (m_bNotifyForEndLoadingHistory)
MsgPopup(param->hContact, str, TranslateT("Loading history"));
if (m_iLoadHistoryTask == 0 && m_bNotifyForEndLoadingHistoryAllContact) {
- MsgPopup(param->hContact, TranslateT("Loading messages for all contacts was completed"), TranslateT("Loading history"));
+ MsgPopup(param->hContact, TranslateT("Loading messages for all contacts is completed"), TranslateT("Loading history"));
m_bNotifyForEndLoadingHistoryAllContact = m_bNotifyForEndLoadingHistory = false;
}
}
|