diff options
author | Dart Raiden <wowemuh@gmail.com> | 2013-12-02 00:30:55 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2013-12-02 00:30:55 +0000 |
commit | 773612ddd32ba046c36b3ba99c2d2d4b19246312 (patch) | |
tree | 01d4a33f8aaa01d7426a857acc9899741a515eba /src/modules/clist | |
parent | d6d8c8dc0af9dbfed00c87754b8b0aa91aa87815 (diff) |
another portion of decapitalization in the core (4/5)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7030 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/clist')
-rw-r--r-- | src/modules/clist/clistsettings.cpp | 4 | ||||
-rw-r--r-- | src/modules/clist/contacts.cpp | 6 | ||||
-rw-r--r-- | src/modules/clist/genmenu.cpp | 2 | ||||
-rw-r--r-- | src/modules/clist/groups.cpp | 6 | ||||
-rw-r--r-- | src/modules/clist/keyboard.cpp | 10 | ||||
-rw-r--r-- | src/modules/clist/movetogroup.cpp | 4 |
6 files changed, 16 insertions, 16 deletions
diff --git a/src/modules/clist/clistsettings.cpp b/src/modules/clist/clistsettings.cpp index fc5b202247..fa022967e8 100644 --- a/src/modules/clist/clistsettings.cpp +++ b/src/modules/clist/clistsettings.cpp @@ -151,7 +151,7 @@ TCHAR* fnGetContactDisplayName(HANDLE hContact, int mode) }
CallContactService(hContact, PSS_GETINFO, SGIF_MINIMAL, 0);
- TCHAR *buffer = TranslateT("(Unknown Contact)");
+ TCHAR *buffer = TranslateT("(Unknown contact)");
return (cacheEntry == NULL) ? mir_tstrdup(buffer) : buffer;
}
@@ -202,7 +202,7 @@ INT_PTR GetContactDisplayName(WPARAM wParam, LPARAM lParam) }
CallContactService(hContact, PSS_GETINFO, SGIF_MINIMAL, 0);
- char* result = Translate("(Unknown Contact)");
+ char* result = Translate("(Unknown contact)");
return (INT_PTR)((cacheEntry == NULL) ? mir_strdup(result) : result);
}
diff --git a/src/modules/clist/contacts.cpp b/src/modules/clist/contacts.cpp index 1a0ba89751..215265a044 100644 --- a/src/modules/clist/contacts.cpp +++ b/src/modules/clist/contacts.cpp @@ -34,7 +34,7 @@ static TCHAR* nameOrderDescr[ NAMEORDERCOUNT ] = LPGENT("Username"),
LPGENT("FirstName LastName"),
LPGENT("LastName FirstName"),
- LPGENT("'(Unknown Contact)' (not movable)")
+ LPGENT("'(Unknown contact)' (not movable)")
};
BYTE nameOrder[NAMEORDERCOUNT];
@@ -322,9 +322,9 @@ static INT_PTR GetContactInfo(WPARAM, LPARAM lParam) { case 8:
if (ci->dwFlag & CNF_UNICODE)
- ci->pszVal = (TCHAR*)mir_wstrdup(TranslateW(L"'(Unknown Contact)'"));
+ ci->pszVal = (TCHAR*)mir_wstrdup(TranslateW(L"'(Unknown contact)'"));
else
- ci->pszVal = (TCHAR*)mir_strdup(Translate("'(Unknown Contact)'"));
+ ci->pszVal = (TCHAR*)mir_strdup(Translate("'(Unknown contact)'"));
ci->type = CNFT_ASCIIZ;
return 0;
}
diff --git a/src/modules/clist/genmenu.cpp b/src/modules/clist/genmenu.cpp index b6d3af6cec..79dc7e40f9 100644 --- a/src/modules/clist/genmenu.cpp +++ b/src/modules/clist/genmenu.cpp @@ -1046,7 +1046,7 @@ static int MO_RegisterIcon(PMO_IntMenuItem pmi, void*) HICON hIcon = ImageList_GetIcon(pmi->parent->m_hMenuIcons, pmi->iconId, 0);
TCHAR sectionName[256];
- mir_sntprintf(sectionName, SIZEOF(sectionName), LPGENT("Menu Icons") _T("/%s"), (TCHAR*)_A2T(pmi->parent->Name));
+ mir_sntprintf(sectionName, SIZEOF(sectionName), LPGENT("Menu icons") _T("/%s"), (TCHAR*)_A2T(pmi->parent->Name));
char iconame[256];
mir_snprintf(iconame, sizeof(iconame), "genmenu_%s_%s", pmi->parent->Name, uname && *uname ? uname : descr);
diff --git a/src/modules/clist/groups.cpp b/src/modules/clist/groups.cpp index 73aba22dab..560261259f 100644 --- a/src/modules/clist/groups.cpp +++ b/src/modules/clist/groups.cpp @@ -73,7 +73,7 @@ static INT_PTR CreateGroupInternal(INT_PTR iParent, const TCHAR *ptszName) char str[33];
int i;
- const TCHAR* grpName = ptszName ? ptszName : TranslateT("New Group");
+ const TCHAR* grpName = ptszName ? ptszName : TranslateT("New group");
if (iParent) {
_itoa(iParent - 1, str, 10);
DBVARIANT dbv;
@@ -190,7 +190,7 @@ static INT_PTR DeleteGroup(WPARAM wParam, LPARAM) {
TCHAR szQuestion[256+100];
mir_sntprintf(szQuestion, SIZEOF(szQuestion), TranslateT("Are you sure you want to delete group '%s'? This operation cannot be undone."), name);
- if (MessageBox(cli.hwndContactList, szQuestion, TranslateT("Delete Group"), MB_YESNO|MB_ICONQUESTION) == IDNO)
+ if (MessageBox(cli.hwndContactList, szQuestion, TranslateT("Delete group"), MB_YESNO|MB_ICONQUESTION) == IDNO)
return 1;
}
SetCursor(LoadCursor(NULL, IDC_WAIT));
@@ -276,7 +276,7 @@ static int RenameGroupWithMove(int groupId, const TCHAR *szName, int move) DBVARIANT dbv;
if (GroupNameExists(szName, groupId)) {
- MessageBox(NULL, TranslateT("You already have a group with that name. Please enter a unique name for the group."), TranslateT("Rename Group"), MB_ICONERROR | MB_OK);
+ MessageBox(NULL, TranslateT("You already have a group with that name. Please enter a unique name for the group."), TranslateT("Rename group"), MB_ICONERROR | MB_OK);
return 1;
}
diff --git a/src/modules/clist/keyboard.cpp b/src/modules/clist/keyboard.cpp index 3433abf339..5ea408a8a6 100644 --- a/src/modules/clist/keyboard.cpp +++ b/src/modules/clist/keyboard.cpp @@ -82,14 +82,14 @@ int InitClistHotKeys(void) HOTKEYDESC shk = { sizeof(shk) };
shk.dwFlags = HKD_TCHAR;
- shk.ptszDescription = LPGENT("Show/Hide Contact List");
+ shk.ptszDescription = LPGENT("Show/Hide contact list");
shk.pszName = "ShowHide";
shk.ptszSection = _T("Main");
shk.pszService = "CLIST/HK/SHOWHIDE";
shk.DefHotKey = HOTKEYCODE(HOTKEYF_CONTROL|HOTKEYF_SHIFT, 'A');
Hotkey_Register(&shk);
- shk.ptszDescription = LPGENT("Read Message");
+ shk.ptszDescription = LPGENT("Read message");
shk.pszName = "ReadMessage";
shk.ptszSection = _T("Main");
shk.pszService = "CLIST/HK/Read";
@@ -103,21 +103,21 @@ int InitClistHotKeys(void) shk.DefHotKey = 846;
Hotkey_Register(&shk);
*/
- shk.ptszDescription = LPGENT("Open Options Page");
+ shk.ptszDescription = LPGENT("Open Options page");
shk.pszName = "ShowOptions";
shk.ptszSection = _T("Main");
shk.pszService = "CLIST/HK/Opts";
shk.DefHotKey = HOTKEYCODE(HOTKEYF_CONTROL|HOTKEYF_SHIFT, 'O') | HKF_MIRANDA_LOCAL;
Hotkey_Register(&shk);
- shk.ptszDescription = LPGENT("Open Logging Options");
+ shk.ptszDescription = LPGENT("Open logging options");
shk.pszName = "ShowLogOptions";
shk.ptszSection = _T("Main");
shk.pszService = "Netlib/Log/Win";
shk.DefHotKey = 0;
Hotkey_Register(&shk);
- shk.ptszDescription = LPGENT("Open Find User Dialog");
+ shk.ptszDescription = LPGENT("Open 'Find user' dialog");
shk.pszName = "FindUsers";
shk.ptszSection = _T("Main");
shk.pszService = "FindAdd/FindAddCommand";
diff --git a/src/modules/clist/movetogroup.cpp b/src/modules/clist/movetogroup.cpp index 8351010ac5..a3392a96d7 100644 --- a/src/modules/clist/movetogroup.cpp +++ b/src/modules/clist/movetogroup.cpp @@ -89,7 +89,7 @@ static int OnContactMenuBuild(WPARAM wParam, LPARAM) if ( !hMoveToGroupItem) {
CLISTMENUITEM mi = { sizeof(mi) };
mi.position = 100000;
- mi.pszName = LPGEN("&Move to Group");
+ mi.pszName = LPGEN("&Move to group");
mi.flags = CMIF_ROOTHANDLE;
mi.icolibItem = GetSkinIconHandle(SKINICON_OTHER_GROUP);
@@ -104,7 +104,7 @@ static int OnContactMenuBuild(WPARAM wParam, LPARAM) int pos = 1000;
- AddGroupItem(hMoveToGroupItem, TranslateT("<Root Group>"), pos, -1, !szContactGroup);
+ AddGroupItem(hMoveToGroupItem, TranslateT("<Root group>"), pos, -1, !szContactGroup);
pos += 100000; // Separator
|