summaryrefslogtreecommitdiff
path: root/plugins/MyDetails
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-12-01 10:08:19 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-12-01 10:08:19 +0000
commit922616d7a19c543b2da7adf61b331ad3e9a7895a (patch)
tree164684938a98f7cc71499efe3960dcd10549d58d /plugins/MyDetails
parent9d7fb02903ac7b966c6cb00663c2cd53a8dc8f63 (diff)
translation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@2582 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MyDetails')
-rw-r--r--plugins/MyDetails/src/frame.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MyDetails/src/frame.cpp b/plugins/MyDetails/src/frame.cpp
index 3dca1c808a..6db3a3b79b 100644
--- a/plugins/MyDetails/src/frame.cpp
+++ b/plugins/MyDetails/src/frame.cpp
@@ -2310,9 +2310,9 @@ LRESULT CALLBACK FrameWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPar
else if (lpnmhdr->hwndFrom == data->listening_to_tt_hwnd)
lpttd->lpszText = proto->listening_to;
else if (lpnmhdr->hwndFrom == data->next_proto_tt_hwnd)
- lpttd->lpszText = _T("Show next protocol");
+ lpttd->lpszText = TranslateT("Show next protocol");
else if (lpnmhdr->hwndFrom == data->prev_proto_tt_hwnd)
- lpttd->lpszText = _T("Show previous protocol");
+ lpttd->lpszText = TranslateT("Show previous protocol");
return 0;
}