summaryrefslogtreecommitdiff
path: root/plugins/TranslitSwitcher
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-12-21 05:21:53 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-12-21 05:21:53 +0000
commit49cef0d9fce641946186a62ee9fb90ece77ea941 (patch)
treecea7bf6b587a2544903a8b421072052b942ad38b /plugins/TranslitSwitcher
parentebcdcc2d08544de7886218388f303ac35b0fbb25 (diff)
fixed translation
git-svn-id: http://svn.miranda-ng.org/main/trunk@2775 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TranslitSwitcher')
-rw-r--r--plugins/TranslitSwitcher/src/Layoutproc.cpp4
-rw-r--r--plugins/TranslitSwitcher/src/TranslitSwitcher.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/TranslitSwitcher/src/Layoutproc.cpp b/plugins/TranslitSwitcher/src/Layoutproc.cpp
index 1ff2709e7e..a2fac0f830 100644
--- a/plugins/TranslitSwitcher/src/Layoutproc.cpp
+++ b/plugins/TranslitSwitcher/src/Layoutproc.cpp
@@ -487,7 +487,7 @@ VOID SwitchLayout(BOOL lastword)
ZeroMemory(&pd, sizeof(pd));
pd.cbSize = sizeof(POPUPDATAT_V2);
pd.lchContact = NULL; //(HANDLE)wParam;
- pd.lchIcon = Skin_GetIcon("SwitchLayout and Send");
+ pd.lchIcon = Skin_GetIcon("Switch Layout and Send");
lstrcpyn(pd.lptzText, buf, SIZEOF(pd.lptzText));
lstrcpyn(pd.lptzContactName, TranslateT("TranslitSwitcher"), SIZEOF(pd.lptzContactName));
pd.colorBack = pd.colorText = 0;
@@ -762,7 +762,7 @@ void InvertCase(BOOL lastword)
int OnButtonPressed(WPARAM wParam, LPARAM lParam)
{
CustomButtonClickData *cbcd = (CustomButtonClickData *)lParam;
- if (lstrcmpA(cbcd->pszModule, "SwitchLayout and Send") == 0)
+ if (lstrcmpA(cbcd->pszModule, "Switch Layout and Send") == 0)
{
HWND hEdit = GetDlgItem(cbcd->hwndFrom, IDC_MESSAGE);
if (!hEdit) hEdit = GetDlgItem(cbcd->hwndFrom, IDC_CHATMESSAGE);
diff --git a/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp b/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp
index 194ae5d7c4..8ba312f41e 100644
--- a/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp
+++ b/plugins/TranslitSwitcher/src/TranslitSwitcher.cpp
@@ -139,8 +139,8 @@ int OnModulesLoaded(WPARAM wParam, LPARAM lParam)
BBButton bbd = {0};
bbd.cbSize = sizeof(BBButton);
bbd.bbbFlags = BBBF_ISIMBUTTON | BBBF_ISCHATBUTTON | BBBF_ISRSIDEBUTTON;
- bbd.pszModuleName = "SwitchLayout and Send";
- bbd.ptszTooltip = TranslateT("SwitchLayout and Send");
+ bbd.pszModuleName = "Switch Layout and Send";
+ bbd.ptszTooltip = TranslateT("Switch Layout and Send");
bbd.hIcon = iconList[0].hIcolib;
bbd.dwButtonID = 1;
bbd.dwDefPos = 30;