diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-07-14 22:06:01 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-07-14 22:06:01 +0000 |
commit | 26dfe484cd4508eaf0aea2d06c983b6c5ec7aa25 (patch) | |
tree | ad6fc99c6fefa0943ce2a0de46ea484ab5428aba /plugins | |
parent | d65e5e4cf5e91e311d95325fa04d6883bf2a2d96 (diff) |
Reverted r14501 and r14507: This text is also displayed in the contact list and must therefore be translated
git-svn-id: http://svn.miranda-ng.org/main/trunk@14561 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Alarms/src/frame.cpp | 2 | ||||
-rw-r--r-- | plugins/BASS_interface/src/Main.cpp | 2 | ||||
-rw-r--r-- | plugins/MyDetails/src/frame.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Alarms/src/frame.cpp b/plugins/Alarms/src/frame.cpp index 8d9fff481a..2df0dc3414 100644 --- a/plugins/Alarms/src/frame.cpp +++ b/plugins/Alarms/src/frame.cpp @@ -505,7 +505,7 @@ int CreateFrame() 0,0,10,10, pcli->hwndContactList, NULL,hInst,NULL);
CLISTFrame Frame = { sizeof(CLISTFrame) };
- Frame.tname = _T("Alarms");
+ Frame.tname = TranslateT("Alarms");
Frame.hWnd = hwnd_plugin;
Frame.align = alBottom;
Frame.Flags = F_TCHAR | F_VISIBLE | F_SHOWTB | F_SHOWTBTIP;
diff --git a/plugins/BASS_interface/src/Main.cpp b/plugins/BASS_interface/src/Main.cpp index e63e2ddd91..1c3dbe883b 100644 --- a/plugins/BASS_interface/src/Main.cpp +++ b/plugins/BASS_interface/src/Main.cpp @@ -459,7 +459,7 @@ void CreateFrame() WS_CHILD | WS_CLIPCHILDREN, 0, 0, 10, 10, pcli->hwndContactList, NULL, hInst, NULL);
CLISTFrame Frame = { sizeof(CLISTFrame) };
- Frame.tname = _T("Bass Interface");
+ Frame.tname = TranslateT("Bass Interface");
Frame.hWnd = hwnd_plugin;
Frame.align = alBottom;
Frame.Flags = F_TCHAR | F_VISIBLE | F_SHOWTB | F_SHOWTBTIP;
diff --git a/plugins/MyDetails/src/frame.cpp b/plugins/MyDetails/src/frame.cpp index 83f03077f6..52cc6a52ce 100644 --- a/plugins/MyDetails/src/frame.cpp +++ b/plugins/MyDetails/src/frame.cpp @@ -277,7 +277,7 @@ int CreateFrame() CLISTFrame Frame = { 0 };
Frame.cbSize = sizeof(Frame);
- Frame.tname = _T("My details");
+ Frame.tname = TranslateT("My details");
Frame.cbSize = sizeof(CLISTFrame);
Frame.hWnd = hwnd_frame;
Frame.align = alTop;
|