diff options
author | RMN <rmn@miranda-ng.org> | 2014-07-16 17:39:52 +0000 |
---|---|---|
committer | RMN <rmn@miranda-ng.org> | 2014-07-16 17:39:52 +0000 |
commit | 13597bc1e31630a360d6f97d91aa62d4dd529d7a (patch) | |
tree | db0c0fb723af16b5d3e68ef796781466fa0284fe | |
parent | 48078905d338193c13ad2e62c083a94419f4247d (diff) |
typos
git-svn-id: http://svn.miranda-ng.org/main/trunk@9832 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/BasicHistory/src/Options.cpp | 2 | ||||
-rw-r--r-- | protocols/FacebookRM/res/facebook.rc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/BasicHistory/src/Options.cpp b/plugins/BasicHistory/src/Options.cpp index bed9f30bdb..b162d004d2 100644 --- a/plugins/BasicHistory/src/Options.cpp +++ b/plugins/BasicHistory/src/Options.cpp @@ -799,7 +799,7 @@ bool CheckFile(HWND hwndEdit) Edit_GetText(hwndEdit, buf, MAX_PATH);
DWORD atr = GetFileAttributes(buf);
if (atr == INVALID_FILE_ATTRIBUTES || atr & FILE_ATTRIBUTE_DIRECTORY) {
- MessageBox(GetParent(hwndEdit), TranslateT("File do not exist. Enter correct file path."), TranslateT("Invalid file"), MB_OK | MB_ICONERROR);
+ MessageBox(GetParent(hwndEdit), TranslateT("File does not exist. Enter correct file path."), TranslateT("Invalid file"), MB_OK | MB_ICONERROR);
SetFocus(hwndEdit);
return false;
}
diff --git a/protocols/FacebookRM/res/facebook.rc b/protocols/FacebookRM/res/facebook.rc index 97fccc36a7..513263db54 100644 --- a/protocols/FacebookRM/res/facebook.rc +++ b/protocols/FacebookRM/res/facebook.rc @@ -171,7 +171,7 @@ BEGIN RTEXT "Number of messages to load:",IDC_STATIC,17,195,135,8
EDITTEXT IDC_MESSAGES_COUNT,156,192,34,14,ES_AUTOHSCROLL
CONTROL "",IDC_MESSAGES_COUNT_SPIN,"msctls_updown32",UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS,190,192,11,14
- CONTROL "Do not open chat windows on creation ",IDC_HIDE_CHATS,
+ CONTROL "Do not open chat windows on creation",IDC_HIDE_CHATS,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,17,210,267,10
END
|