diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-06-15 01:45:47 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-06-15 01:45:47 +0000 |
commit | f1292a1365fe046e2c2d877ad67e4671e588fe74 (patch) | |
tree | 3ec6d6a823956f178009c3f038777aefe973fc67 /plugins/UserInfoEx/src/svc_refreshci.cpp | |
parent | 3942df7207beeb9f2fc08a6deb1d375badbe066a (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
Diffstat (limited to 'plugins/UserInfoEx/src/svc_refreshci.cpp')
-rw-r--r-- | plugins/UserInfoEx/src/svc_refreshci.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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);
}
|