summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2014-06-15 01:45:47 +0000
committerDart Raiden <wowemuh@gmail.com>2014-06-15 01:45:47 +0000
commitf1292a1365fe046e2c2d877ad67e4671e588fe74 (patch)
tree3ec6d6a823956f178009c3f038777aefe973fc67
parent3942df7207beeb9f2fc08a6deb1d375badbe066a (diff)
UserInfoEx: typos and decapitalization (to avoid duplication in the langpack)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9489 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/UserInfoEx/src/psp_profile.cpp2
-rw-r--r--plugins/UserInfoEx/src/svc_refreshci.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/UserInfoEx/src/psp_profile.cpp b/plugins/UserInfoEx/src/psp_profile.cpp
index 99c54b83d0..af4d83fd29 100644
--- a/plugins/UserInfoEx/src/psp_profile.cpp
+++ b/plugins/UserInfoEx/src/psp_profile.cpp
@@ -1282,7 +1282,7 @@ INT_PTR CALLBACK PSPProcContactProfile(HWND hDlg, UINT uMsg, WPARAM wParam, LPAR
mii.dwTypeData = TranslateT("Add interest");
InsertMenuItem(hMenu, 0, TRUE, &mii);
mii.wID = BTN_ADD_AFFLIATION;
- mii.dwTypeData = TranslateT("Add affliation");
+ mii.dwTypeData = TranslateT("Add affiliation");
InsertMenuItem(hMenu, 1, TRUE, &mii);
mii.wID = BTN_ADD_PAST;
mii.dwTypeData = TranslateT("Add past");
diff --git a/plugins/UserInfoEx/src/svc_refreshci.cpp b/plugins/UserInfoEx/src/svc_refreshci.cpp
index 02b5f45e90..fb6923e927 100644
--- a/plugins/UserInfoEx/src/svc_refreshci.cpp
+++ b/plugins/UserInfoEx/src/svc_refreshci.cpp
@@ -612,7 +612,7 @@ class CContactUpdater : public CContactQueue
{
CLISTMENUITEM clmi = { sizeof(clmi) };
clmi.flags = CMIM_NAME|CMIM_ICON;
- clmi.pszName = LPGEN("Refresh Contact Details");
+ clmi.pszName = LPGEN("Refresh contact details");
clmi.hIcon = Skin_GetIcon(ICO_BTN_UPDATE);
Menu_ModifyItem(hMenuItemRefresh, &clmi);
}
@@ -720,7 +720,7 @@ public:
_pProgress = new CDlgUpdProgress(this);
}
- _pProgress->Create(TranslateT("Refresh Contact Details"), (PUpdCallback) CContactUpdater::DlgProc);
+ _pProgress->Create(TranslateT("Refresh contact details"), (PUpdCallback) CContactUpdater::DlgProc);
_pProgress->SetText(TranslateT("Preparing..."));
}
@@ -807,7 +807,7 @@ static INT_PTR RefreshService(WPARAM wParam, LPARAM lParam)
{
ContactUpdater->RefreshAll();
}
- else if (IDYES == MsgBox(NULL, MB_YESNO|MB_ICON_QUESTION, LPGENT("Refresh Contact Details"), NULL,
+ else if (IDYES == MsgBox(NULL, MB_YESNO|MB_ICON_QUESTION, LPGENT("Refresh contact details"), NULL,
LPGENT("Do you want to cancel the current refresh procedure?")))
{
ContactUpdater->Cancel();
@@ -901,7 +901,7 @@ void SvcRefreshContactInfoLoadModule(void)
hk.cbSize = sizeof(HOTKEYDESC);
hk.pszSection = MODNAME;
hk.pszName = "RefreshContactDetails";
- hk.pszDescription = LPGEN("Refresh Contact Details");
+ hk.pszDescription = LPGEN("Refresh contact details");
hk.pszService = MS_USERINFO_REFRESH;
Hotkey_Register(&hk);
}