summaryrefslogtreecommitdiff
path: root/protocols/GTalkExt/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2014-03-29 14:20:34 +0000
committerKirill Volinsky <mataes2007@gmail.com>2014-03-29 14:20:34 +0000
commita853088930f45694c6d715c72fcdc243db5a47d6 (patch)
tree804e4c066c8d6aacefd49a785274ff9871038393 /protocols/GTalkExt/src
parentac85214108a960153812e271eec2d01e13f20f3b (diff)
translation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@8787 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/GTalkExt/src')
-rw-r--r--protocols/GTalkExt/src/notifications.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/protocols/GTalkExt/src/notifications.cpp b/protocols/GTalkExt/src/notifications.cpp
index da06851c8e..20825d8d8f 100644
--- a/protocols/GTalkExt/src/notifications.cpp
+++ b/protocols/GTalkExt/src/notifications.cpp
@@ -25,8 +25,6 @@
#include "options.h"
#include "inbox.h"
-#define NUMBER_EMAILS_MESSAGE "You've received an e-mail\n%s unread threads"
-
#define PLUGIN_DATA_PROP_NAME _T("{DB5CE833-C3AC-4851-831C-DDEBD9FA0508}")
#define EVT_DELETED_HOOK_PROP_NAME _T("{87CBD2BC-8806-413C-8FD5-1D61ABCA4AF8}")
@@ -256,7 +254,7 @@ void UnreadMailNotification(LPCSTR acc, LPCTSTR jid, LPCTSTR url, LPCTSTR unread
POPUPDATAT data = {0};
FormatPseudocontactDisplayName(&data.lptzContactName[0], jid, unreadCount);
- mir_sntprintf(&data.lptzText[0], SIZEOF(data.lptzText), TranslateT(NUMBER_EMAILS_MESSAGE), unreadCount);
+ mir_sntprintf(&data.lptzText[0], SIZEOF(data.lptzText), TranslateT("You've received an e-mail\n%s unread threads"), unreadCount);
ShowNotification(acc, &data, jid, url, unreadCount);
}