summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2015-12-20 18:52:31 +0000
committerDart Raiden <wowemuh@gmail.com>2015-12-20 18:52:31 +0000
commit37e20a1b0fa2bdc4930ae3cb826e922bc5898ad0 (patch)
tree3473eec09f0a885d2ca70790b33f7996a7624a4a /plugins
parent709e8dfa330fc9ce805c29299705ac0304fbdcfa (diff)
decapitalization and resource cosmetic
git-svn-id: http://svn.miranda-ng.org/main/trunk@15920 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/PluginUpdater/res/Resource.rc4
-rw-r--r--plugins/ProfileManager/src/pmanagerEx.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/PluginUpdater/res/Resource.rc b/plugins/PluginUpdater/res/Resource.rc
index 64d008e3cc..0620858d2f 100644
--- a/plugins/PluginUpdater/res/Resource.rc
+++ b/plugins/PluginUpdater/res/Resource.rc
@@ -68,8 +68,8 @@ BEGIN
CONTROL "",IDC_PERIODSPIN,"msctls_updown32",UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS | WS_DISABLED,92,56,10,15
COMBOBOX IDC_PERIODMEASURE,114,56,58,30,CBS_DROPDOWNLIST | CBS_SORT | WS_DISABLED | WS_VSCROLL | WS_TABSTOP
CONTROL "Silent mode",IDC_SILENTMODE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,11,72,267,10
- CONTROL "Backup database before update (requires Db_autobackups)",IDC_BACKUP,
- "Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,11,86,267,10
+ CONTROL "Backup database before update (requires Db_autobackups plugin)",IDC_BACKUP,
+ "Button",BS_AUTOCHECKBOX | WS_DISABLED | WS_TABSTOP,11,86,272,10
GROUPBOX "Files source",IDC_STATIC,2,115,285,96
CONTROL "Stable version",IDC_STABLE,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,12,128,267,10
CONTROL "Development version (less stable)",IDC_TRUNK,"Button",BS_AUTORADIOBUTTON | WS_TABSTOP,12,143,267,10
diff --git a/plugins/ProfileManager/src/pmanagerEx.cpp b/plugins/ProfileManager/src/pmanagerEx.cpp
index 14f5ff10fc..a92f724b19 100644
--- a/plugins/ProfileManager/src/pmanagerEx.cpp
+++ b/plugins/ProfileManager/src/pmanagerEx.cpp
@@ -65,7 +65,7 @@ static INT_PTR LoadPM(WPARAM, LPARAM)
static INT_PTR CheckDb(WPARAM, LPARAM)
{
- if (MessageBox(0, TranslateT("Miranda NG will exit and Database checker will start.\n\nAre you sure you want to do this?"), TranslateT("Check Database"), MB_ICONWARNING | MB_YESNO | MB_DEFBUTTON2) == IDYES) {
+ if (MessageBox(0, TranslateT("Miranda NG will exit and Database checker will start.\n\nAre you sure you want to do this?"), TranslateT("Check database"), MB_ICONWARNING | MB_YESNO | MB_DEFBUTTON2) == IDYES) {
TCHAR mirandaPath[MAX_PATH], cmdLine[100];
PROCESS_INFORMATION pi;
STARTUPINFO si = { 0 };