diff options
author | Dart Raiden <wowemuh@gmail.com> | 2013-12-23 00:38:22 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2013-12-23 00:38:22 +0000 |
commit | 7a4faae157b9c17359e1cd95712f0197dd6ea2e2 (patch) | |
tree | e0aee704d98a0f07735c740d5d8f6b90c165b665 /plugins/Msg_Export | |
parent | f23d2dcf82788deb778056912f1e59360e116138 (diff) |
spelling correction (e.g. twitter -> Twitter)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7350 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Msg_Export')
-rwxr-xr-x | plugins/Msg_Export/res/resource.rc | 2 | ||||
-rwxr-xr-x | plugins/Msg_Export/src/options.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Msg_Export/res/resource.rc b/plugins/Msg_Export/res/resource.rc index 73ac39329c..f540ccaba9 100755 --- a/plugins/Msg_Export/res/resource.rc +++ b/plugins/Msg_Export/res/resource.rc @@ -58,7 +58,7 @@ BEGIN PUSHBUTTON "Browse",IDC_EXPORT_DIR_BROWSE,141,11,43,14
COMBOBOX IDC_DEFAULT_FILE,53,29,83,112,CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP
CONTROL "Use internal viewer",IDC_USE_INTERNAL_VIEWER,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,11,61,78,10
- CONTROL "Replace miranda history",IDC_REPLACE_MIRANDA_HISTORY,
+ CONTROL "Replace Miranda history",IDC_REPLACE_MIRANDA_HISTORY,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,91,61,90,10
COMBOBOX IDC_FILE_VIEWER,11,75,125,89,CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP
PUSHBUTTON "Browse",IDC_FILE_VIEWER_BROWSE,141,74,43,14
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp index 80c685abc9..4f6cd64214 100755 --- a/plugins/Msg_Export/src/options.cpp +++ b/plugins/Msg_Export/src/options.cpp @@ -393,7 +393,7 @@ BOOL bApplyChanges( HWND hwndDlg ) if (bReplaceHistory != bNewRp )
{
bReplaceHistory = bNewRp;
- MessageBox(hwndDlg, TranslateT("You need to restart miranda to change the history function"), MSG_BOX_TITEL, MB_OK);
+ MessageBox(hwndDlg, TranslateT("You need to restart Miranda to change the history function"), MSG_BOX_TITEL, MB_OK);
}
bAppendNewLine = IsDlgButtonChecked(hwndDlg, IDC_APPEND_NEWLINE) == BST_CHECKED;
|