diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-19 08:29:12 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-19 08:29:12 +0000 |
commit | 7b2fb827ca6b037a595c4dbac2503d18b4bc8048 (patch) | |
tree | f09e3a354e0b7e4cf73855dd21542ac34ddad63c /plugins/TooltipNotify/src | |
parent | 558414628226bc5f5f6a9c6e704fb382ff6cf319 (diff) |
- translation fixes (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@4106 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TooltipNotify/src')
-rw-r--r-- | plugins/TooltipNotify/src/TooltipNotify.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/TooltipNotify/src/TooltipNotify.cpp b/plugins/TooltipNotify/src/TooltipNotify.cpp index c24034ad00..705ad870d1 100644 --- a/plugins/TooltipNotify/src/TooltipNotify.cpp +++ b/plugins/TooltipNotify/src/TooltipNotify.cpp @@ -30,12 +30,12 @@ static const int ID_TTNTF_STATUS_TYPING = ID_STATUS_INVISIBLE+10; static const int ID_TTNTF_STATUS_IDLE = ID_STATUS_INVISIBLE+11;
static const int ID_TTNTF_STATUS_NOT_IDLE = ID_STATUS_INVISIBLE+12;
-#define FONTSERV_GROUP _T("Tooltip Notify")
-#define FONTSERV_ONLINE _T("Online")
-#define FONTSERV_OFFLINE _T("Offline")
-#define FONTSERV_OTHER _T("Other Status")
-#define FONTSERV_TYPING _T("Typing")
-#define FONTSERV_IDLE _T("Idle")
+#define FONTSERV_GROUP LPGENT("Tooltip Notify")
+#define FONTSERV_ONLINE LPGENT("Online")
+#define FONTSERV_OFFLINE LPGENT("Offline")
+#define FONTSERV_OTHER LPGENT("Other Status")
+#define FONTSERV_TYPING LPGENT("Typing")
+#define FONTSERV_IDLE LPGENT("Idle")
struct FontEntry
{
|