From bb0c52985eccfae809a08bb72938b863bc546032 Mon Sep 17 00:00:00 2001 From: Dart Raiden Date: Sat, 13 Dec 2014 12:45:04 +0000 Subject: Clist_modern: decapitalization git-svn-id: http://svn.miranda-ng.org/main/trunk@11368 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Clist_modern/res/resource.rc | 4 ++-- plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp | 4 ++-- plugins/Clist_modern/src/modern_clistevents.cpp | 2 +- plugins/Clist_modern/src/modern_clistopts.cpp | 2 +- plugins/Clist_modern/src/modern_clistsettings.cpp | 2 +- plugins/Clist_modern/src/modern_keyboard.cpp | 2 +- plugins/Clist_modern/src/modern_skinopt.cpp | 2 +- plugins/Clist_modern/src/version.h | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) (limited to 'plugins') diff --git a/plugins/Clist_modern/res/resource.rc b/plugins/Clist_modern/res/resource.rc index ff5736f250..1299963a08 100644 --- a/plugins/Clist_modern/res/resource.rc +++ b/plugins/Clist_modern/res/resource.rc @@ -737,11 +737,11 @@ BEGIN CONTROL "",IDC_RADIO13,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,152,105,10,9 GROUPBOX "Options",IDC_STATIC,101,127,81,80,WS_TABSTOP CONTROL "Visible",IDC_CHECK1,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,106,142,68,10 - CONTROL "Show Title",IDC_CHECK6,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,106,154,68,10 + CONTROL "Show title",IDC_CHECK6,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,106,154,68,10 CONTROL "Locked",IDC_CHECK9,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,106,166,68,10 CONTROL "Border",IDC_CHECK10,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,106,178,68,10 CONTROL "Floating",IDC_CHECK11,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,106,190,68,10 - GROUPBOX "Frames Order",IDC_STATIC,2,28,93,179,WS_TABSTOP + GROUPBOX "Frames order",IDC_STATIC,2,28,93,179,WS_TABSTOP CTEXT "UNDER CONSTRUCTION!!! IT DOES NOT WORK",IDC_STATIC,46,4,201,18,SS_CENTERIMAGE | WS_BORDER,WS_EX_DLGMODALFRAME | WS_EX_CLIENTEDGE LISTBOX IDC_EXTRAORDER,7,41,81,142,LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP CONTROL "",IDC_PREVIEW,"Static",SS_OWNERDRAW,195,42,99,160 diff --git a/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp b/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp index eae9c3044f..aec0275997 100644 --- a/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp +++ b/plugins/Clist_modern/src/CLUIFrames/cluiframes.cpp @@ -2989,8 +2989,8 @@ static LRESULT CALLBACK CLUIFrameTitleBarProc(HWND hwnd, UINT msg, WPARAM wParam AppendMenu(hmenu,MF_SEPARATOR,16,_T("")); if (g_pfwFrames[framepos].Locked) - {AppendMenu(hmenu,MF_STRING|MF_CHECKED,frame_menu_lock,TranslateT("Lock Frame"));} - else{AppendMenu(hmenu,MF_STRING,frame_menu_lock,TranslateT("Lock Frame"));}; + {AppendMenu(hmenu,MF_STRING|MF_CHECKED,frame_menu_lock,TranslateT("Lock frame"));} + else{AppendMenu(hmenu,MF_STRING,frame_menu_lock,TranslateT("Lock frame"));}; if (g_pfwFrames[framepos].visible) {AppendMenu(hmenu,MF_STRING|MF_CHECKED,frame_menu_visible,TranslateT("Visible"));} diff --git a/plugins/Clist_modern/src/modern_clistevents.cpp b/plugins/Clist_modern/src/modern_clistevents.cpp index 560a76244b..112aa2c3a6 100644 --- a/plugins/Clist_modern/src/modern_clistevents.cpp +++ b/plugins/Clist_modern/src/modern_clistevents.cpp @@ -354,7 +354,7 @@ static int EventArea_DrawWorker(HWND hWnd, HDC hDC) } else { HICON hIcon = (HICON)LoadImage(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_BLANK), IMAGE_ICON, 16, 16, 0); - TCHAR *ptszEvents = TranslateT("No Events"); + TCHAR *ptszEvents = TranslateT("No events"); ske_DrawText(hDC, ptszEvents, mir_tstrlen(ptszEvents), &rc, DT_VCENTER | DT_SINGLELINE); ske_DrawIconEx(hDC, 4, (rc.bottom + rc.top - 16) / 2, hIcon, 16, 16, 0, 0, DI_NORMAL | DI_COMPAT); DestroyIcon(hIcon); diff --git a/plugins/Clist_modern/src/modern_clistopts.cpp b/plugins/Clist_modern/src/modern_clistopts.cpp index 1dc6e10028..f8007a4d37 100644 --- a/plugins/Clist_modern/src/modern_clistopts.cpp +++ b/plugins/Clist_modern/src/modern_clistopts.cpp @@ -312,7 +312,7 @@ static INT_PTR CALLBACK DlgProcItemAvatarOpts(HWND hwndDlg, UINT msg, WPARAM wPa if (!ServiceExists(MS_AV_GETAVATARBITMAP)) { EnableWindow(GetDlgItem(hwndDlg, IDC_SHOW_ANIAVATARS), FALSE); - SetDlgItemText(hwndDlg, IDC_SHOW_ANIAVATARS, TranslateT("Animate Avatars (GDI+ and Avatar Service module (avs.dll) are required)")); + SetDlgItemText(hwndDlg, IDC_SHOW_ANIAVATARS, TranslateT("Animate avatars (GDI+ and Avatar service module (avs.dll) are required)")); } break; diff --git a/plugins/Clist_modern/src/modern_clistsettings.cpp b/plugins/Clist_modern/src/modern_clistsettings.cpp index b881e2b57c..518dde0e40 100644 --- a/plugins/Clist_modern/src/modern_clistsettings.cpp +++ b/plugins/Clist_modern/src/modern_clistsettings.cpp @@ -488,6 +488,6 @@ int ContactSettingChanged(WPARAM hContact, LPARAM lParam) int OnLoadLangpack(WPARAM, LPARAM) { - UnknownConctactTranslatedName = TranslateT("(Unknown Contact)"); + UnknownConctactTranslatedName = TranslateT("(Unknown contact)"); return 0; } diff --git a/plugins/Clist_modern/src/modern_keyboard.cpp b/plugins/Clist_modern/src/modern_keyboard.cpp index e6fd5d1f0e..dac57d3eae 100644 --- a/plugins/Clist_modern/src/modern_keyboard.cpp +++ b/plugins/Clist_modern/src/modern_keyboard.cpp @@ -62,7 +62,7 @@ int InitSkinHotKeys(void) shk.pszService = "CLIST/HK/RestoreStatus"; Hotkey_Register(&shk); - shk.ptszDescription = LPGENT("Show/Hide Offline Users"); + shk.ptszDescription = LPGENT("Show/Hide offline users"); shk.pszName = "ShowHideOfflineUsers"; shk.ptszSection = LPGENT("Main"); shk.pszService = MS_CLIST_TOGGLEHIDEOFFLINE; diff --git a/plugins/Clist_modern/src/modern_skinopt.cpp b/plugins/Clist_modern/src/modern_skinopt.cpp index 43869d6ffd..757882a031 100644 --- a/plugins/Clist_modern/src/modern_skinopt.cpp +++ b/plugins/Clist_modern/src/modern_skinopt.cpp @@ -140,7 +140,7 @@ INT_PTR CALLBACK DlgSkinOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPara _T("fyr.mirandaim.ru"), TranslateT("Inside library")); } - MessageBox( hwndDlg, text, TranslateT("Skin Information"), MB_OK|MB_ICONINFORMATION ); + MessageBox( hwndDlg, text, TranslateT("Skin information"), MB_OK|MB_ICONINFORMATION ); } break; case IDC_BUTTON_APPLY_SKIN: diff --git a/plugins/Clist_modern/src/version.h b/plugins/Clist_modern/src/version.h index 0d765474a4..993d087107 100644 --- a/plugins/Clist_modern/src/version.h +++ b/plugins/Clist_modern/src/version.h @@ -7,7 +7,7 @@ #define __PLUGIN_NAME "Modern contact list" #define __FILENAME "Clist_modern.dll" -#define __DESCRIPTION "Displays contacts, event notifications, protocol status with advantage visual modifications. Supported MW modifications, enhanced metacontact cooperation." +#define __DESCRIPTION "Displays contacts, event notifications, protocol status with advantage visual modifications. Supported multi-window modifications, enhanced metacontact cooperation." #define __AUTHOR "Artem Shpynov, Ricardo Pescuma Domenecci and Anton Senko based on clist_mw by Bethoven" #define __AUTHOREMAIL "ashpynov@gmail.com" #define __AUTHORWEB "http://miranda-ng.org/p/Clist_modern/" -- cgit v1.2.3