diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-13 08:22:20 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-13 08:22:20 +0000 |
commit | 2d5fa47fda1ab622df49a1560374952434d7f848 (patch) | |
tree | c59bb2ad6696ee00a6407600611df6591427dc6a | |
parent | 6e5db606a09eb6cc04185224a3ca9116ff752aa9 (diff) |
- translation fixes (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3995 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/NewXstatusNotify/src/main.cpp | 4 | ||||
-rw-r--r-- | plugins/SecureIM/src/popupOptions.cpp | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/NewXstatusNotify/src/main.cpp b/plugins/NewXstatusNotify/src/main.cpp index ac70bbbef3..3fd7127662 100644 --- a/plugins/NewXstatusNotify/src/main.cpp +++ b/plugins/NewXstatusNotify/src/main.cpp @@ -1071,8 +1071,8 @@ void InitMainMenuItem() static IconItem iconList[] =
{
- { "Notification enabled", ICO_NOTIFICATION_OFF, IDI_NOTIFICATION_OFF },
- { "Notification disabled", ICO_NOTIFICATION_ON, IDI_NOTIFICATION_ON }
+ { LPGEN("Notification enabled"), ICO_NOTIFICATION_OFF, IDI_NOTIFICATION_OFF },
+ { LPGEN("Notification disabled"), ICO_NOTIFICATION_ON, IDI_NOTIFICATION_ON }
};
void InitIcolib()
diff --git a/plugins/SecureIM/src/popupOptions.cpp b/plugins/SecureIM/src/popupOptions.cpp index cba9e744a9..572ed34b99 100644 --- a/plugins/SecureIM/src/popupOptions.cpp +++ b/plugins/SecureIM/src/popupOptions.cpp @@ -45,9 +45,9 @@ INT_PTR CALLBACK PopOptionsDlgProc(HWND hDlg, UINT wMsg, WPARAM wParam, LPARAM l switch (LOWORD(wParam)) {
case IDC_PREV: {
//preview popups...
- showPopUp("Key Popup",NULL,g_hPOP[POP_PU_PRC],0);
- showPopUp("Secure Popup",NULL,g_hPOP[POP_PU_EST],1);
- showPopUp("Message Popup",NULL,g_hPOP[POP_PU_MSR],2);
+ showPopUp(LPGEN("Key Popup"),NULL,g_hPOP[POP_PU_PRC],0);
+ showPopUp(LPGEN("Secure Popup"),NULL,g_hPOP[POP_PU_EST],1);
+ showPopUp(LPGEN("Message Popup"),NULL,g_hPOP[POP_PU_MSR],2);
}
break;
case IDC_EC: {
|