diff options
Diffstat (limited to 'src/modules/clist/keyboard.cpp')
-rw-r--r-- | src/modules/clist/keyboard.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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";
|