From aa03cfdc231f501e4c97d9a0d644f9f32076eadd Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 16 Feb 2015 10:31:16 +0000 Subject: translation fix git-svn-id: http://svn.miranda-ng.org/main/trunk@12142 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/clist/clistmod.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src/modules/clist/clistmod.cpp') diff --git a/src/modules/clist/clistmod.cpp b/src/modules/clist/clistmod.cpp index 3a2945af91..5a2346748c 100644 --- a/src/modules/clist/clistmod.cpp +++ b/src/modules/clist/clistmod.cpp @@ -62,47 +62,47 @@ TCHAR* fnGetStatusModeDescription(int mode, int flags) int noPrefixReqd = 0; switch (mode) { case ID_STATUS_OFFLINE: - descr = _T("Offline"); + descr = LPGENT("Offline"); noPrefixReqd = 1; break; case ID_STATUS_CONNECTING: - descr = _T("Connecting"); + descr = LPGENT("Connecting"); noPrefixReqd = 1; break; case ID_STATUS_ONLINE: - descr = _T("Online"); + descr = LPGENT("Online"); noPrefixReqd = 1; break; case ID_STATUS_AWAY: - descr = _T("Away"); + descr = LPGENT("Away"); break; case ID_STATUS_DND: - descr = _T("DND"); + descr = LPGENT("DND"); break; case ID_STATUS_NA: - descr = _T("NA"); + descr = LPGENT("NA"); break; case ID_STATUS_OCCUPIED: - descr = _T("Occupied"); + descr = LPGENT("Occupied"); break; case ID_STATUS_FREECHAT: - descr = _T("Free for chat"); + descr = LPGENT("Free for chat"); break; case ID_STATUS_INVISIBLE: - descr = _T("Invisible"); + descr = LPGENT("Invisible"); break; case ID_STATUS_OUTTOLUNCH: - descr = _T("Out to lunch"); + descr = LPGENT("Out to lunch"); break; case ID_STATUS_ONTHEPHONE: - descr = _T("On the phone"); + descr = LPGENT("On the phone"); break; case ID_STATUS_IDLE: - descr = _T("Idle"); + descr = LPGENT("Idle"); break; default: if (mode > ID_STATUS_CONNECTING && mode < ID_STATUS_CONNECTING + MAX_CONNECT_RETRIES) { - const TCHAR* connFmt = _T("Connecting (attempt %d)"); + const TCHAR* connFmt = LPGENT("Connecting (attempt %d)"); mir_sntprintf(szMode, SIZEOF(szMode), (flags&GSMDF_UNTRANSLATED)?connFmt:TranslateTS(connFmt), mode - ID_STATUS_CONNECTING + 1); return szMode; } -- cgit v1.2.3