diff options
author | George Hazan <george.hazan@gmail.com> | 2013-05-19 19:22:22 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-05-19 19:22:22 +0000 |
commit | 610a3f9fe01ac8ded509d1b122e7065bbdd8bcae (patch) | |
tree | 8d5e53e6d94e34a2b58b5c2aec220c8b34f6b77a /plugins/PluginUpdater/src | |
parent | fccd139d14e8fb2ba03c60f49af477a91d1a46cd (diff) |
more translation fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@4750 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src')
-rw-r--r-- | plugins/PluginUpdater/src/Notifications.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/PluginUpdater/src/Notifications.cpp b/plugins/PluginUpdater/src/Notifications.cpp index ea6030d5b6..4b6b93e1b2 100644 --- a/plugins/PluginUpdater/src/Notifications.cpp +++ b/plugins/PluginUpdater/src/Notifications.cpp @@ -737,7 +737,7 @@ INT_PTR CALLBACK DlgList(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) lvc.cx = 32 - GetSystemMetrics(SM_CXVSCROLL); // width of column in pixels
ListView_InsertColumn(hwndList, 1, &lvc);
- lvc.pszText = LPGENT("State");
+ lvc.pszText = TranslateT("State");
lvc.cx = 100 - GetSystemMetrics(SM_CXVSCROLL); // width of column in pixels
ListView_InsertColumn(hwndList, 2, &lvc);
@@ -746,15 +746,15 @@ INT_PTR CALLBACK DlgList(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) lvg.cbSize = sizeof(LVGROUP);
lvg.mask = LVGF_HEADER | LVGF_GROUPID;
- lvg.pszHeader = LPGENT("Plugins");
+ lvg.pszHeader = TranslateT("Plugins");
lvg.iGroupId = 1;
ListView_InsertGroup(hwndList, 0, &lvg);
- lvg.pszHeader = LPGENT("Icons");
+ lvg.pszHeader = TranslateT("Icons");
lvg.iGroupId = 2;
ListView_InsertGroup(hwndList, 0, &lvg);
- lvg.pszHeader = LPGENT("Other");
+ lvg.pszHeader = TranslateT("Other");
lvg.iGroupId = 3;
ListView_InsertGroup(hwndList, 0, &lvg);
|