diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-20 18:21:35 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-20 18:21:35 +0000 |
commit | 18d6359313f9e9199eeb06f1d973d027ab784f43 (patch) | |
tree | 06e0ea2591ff1c1d6cdfbfb63572996a4462f529 /plugins/Clist_nicer/src/clui.cpp | |
parent | 9e0e602cc74cb496c94044c80c1e37fa211a70df (diff) |
- Another portion of _T replacement (patch from person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3195 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_nicer/src/clui.cpp')
-rw-r--r-- | plugins/Clist_nicer/src/clui.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Clist_nicer/src/clui.cpp b/plugins/Clist_nicer/src/clui.cpp index 3caf5de735..4209cde5ea 100644 --- a/plugins/Clist_nicer/src/clui.cpp +++ b/plugins/Clist_nicer/src/clui.cpp @@ -1473,12 +1473,12 @@ skipbg: SendMessage(item->hWnd, BM_SETCHECK, 0, 0);
}
if ( !contactOK)
- MessageBox(0, _T("The requested action requires a valid contact selection. Please select a contact from the contact list and repeat"), _T("Parameter mismatch"), MB_OK);
+ MessageBox(0, TranslateT("The requested action requires a valid contact selection. Please select a contact from the contact list and repeat"), TranslateT("Parameter mismatch"), MB_OK);
if (serviceFailure) {
char szError[512];
- mir_snprintf(szError, 512, "The service %s specified by the %s button definition was not found. You may need to install additional plugins", item->szService, item->szName);
- MessageBoxA(0, szError, "Service failure", MB_OK);
+ mir_snprintf(szError, 512, Translate("The service %s specified by the %s button definition was not found. You may need to install additional plugins"), item->szService, item->szName);
+ MessageBoxA(0, szError, Translate("Service failure"), MB_OK);
}
break;
}
|