summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2013-11-20 20:41:57 +0000
committerDart Raiden <wowemuh@gmail.com>2013-11-20 20:41:57 +0000
commitf24b958425b3b8baaf0bb279ae23193f56de0784 (patch)
treefcf5d7df6f5a864b06d91486ad348338028cd72b /plugins
parentfc15636d94dd0d90ea4f682235933a5b78390fed (diff)
Db_autobackups: capitalization
langpacks/russian: update git-svn-id: http://svn.miranda-ng.org/main/trunk@6949 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Db_autobackups/res/db_autobackups.rc4
-rw-r--r--plugins/Db_autobackups/src/options.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Db_autobackups/res/db_autobackups.rc b/plugins/Db_autobackups/res/db_autobackups.rc
index b87177f362..c5ab6582eb 100644
--- a/plugins/Db_autobackups/res/db_autobackups.rc
+++ b/plugins/Db_autobackups/res/db_autobackups.rc
@@ -37,7 +37,7 @@ IDD_OPTIONS DIALOGEX 0, 0, 271, 220
STYLE DS_SETFONT | DS_FIXEDSYS | DS_CENTER | WS_CHILD
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
- GROUPBOX "Automatic Backups",IDC_STATIC,6,4,258,209,WS_GROUP
+ GROUPBOX "Automatic backups",IDC_STATIC,6,4,258,209,WS_GROUP
RTEXT "Number of backups to keep:",IDC_STATIC,13,94,132,8
EDITTEXT IDC_ED_NUMBACKUPS,164,90,30,12,ES_NUMBER,WS_EX_RIGHT
CONTROL "",SPIN_NUMBACKUPS,"msctls_updown32",UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS,182,90,10,12
@@ -56,7 +56,7 @@ BEGIN
"Hyperlink",NOT WS_VISIBLE | WS_TABSTOP,18,129,231,21
CONTROL "Compress backup to zip-archive",IDC_CHK_USEZIP,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,17,156,231,11
CONTROL "Disable progress bar",IDC_CHK_NOPROG,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,17,174,231,11
- CONTROL "Disable Popups",IDC_CHK_NOPOPUP,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,17,192,231,11
+ CONTROL "Disable popups",IDC_CHK_NOPOPUP,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,17,192,231,11
END
diff --git a/plugins/Db_autobackups/src/options.cpp b/plugins/Db_autobackups/src/options.cpp
index e547b3f6c4..f06b710eba 100644
--- a/plugins/Db_autobackups/src/options.cpp
+++ b/plugins/Db_autobackups/src/options.cpp
@@ -358,7 +358,7 @@ int OptionsInit(WPARAM wParam, LPARAM lParam)
odp.position = -790000000;
odp.hInstance = hInst;
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPTIONS);
- odp.pszTitle = LPGEN("Automatic Backups");
+ odp.pszTitle = LPGEN("Automatic backups");
odp.pszGroup = LPGEN("Database");
odp.flags = ODPF_BOLDGROUPS;
odp.pfnDlgProc = DlgProcOptions;