From 1361cd3f553f09375b145a02dd47ce5e6ea476b0 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Tue, 17 Sep 2013 10:17:44 +0000 Subject: Spelling correction (patch from RMN) git-svn-id: http://svn.miranda-ng.org/main/trunk@6106 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/AssocMgr/src/dde.cpp | 2 +- plugins/AvatarHistory/res/AvatarHistory.rc | 2 +- plugins/CountryFlags/res/resource.rc | 2 +- plugins/LotusNotify/src/LotusNotify.cpp | 2 +- plugins/MirFox/src/MirandaUtils.cpp | 24 ++++++++++++------------ plugins/MirFox/src/MirfoxMiranda.cpp | 2 +- plugins/SendScreenshotPlus/src/UMainForm.cpp | 2 +- plugins/UserInfoEx/res/resource.rc | 2 +- 8 files changed, 19 insertions(+), 19 deletions(-) (limited to 'plugins') diff --git a/plugins/AssocMgr/src/dde.cpp b/plugins/AssocMgr/src/dde.cpp index f93fe1998e..c2031280f6 100644 --- a/plugins/AssocMgr/src/dde.cpp +++ b/plugins/AssocMgr/src/dde.cpp @@ -56,7 +56,7 @@ static void __stdcall UrlActionAsync(void *param) ShowInfoMessage(NIIF_ERROR,Translate("Miranda NG could not open URL"),Translate("Miranda NG was not able to open \"%S\".\n\nThere is no registered handler for this URL type."),pszUrl); break; default: - ShowInfoMessage(NIIF_ERROR,Translate("Miranda NG could not open URL"),Translate("Miranda NG was not able to open \"%S\".\n\nThe given URL is invalid and can not be parsed."),pszUrl); + ShowInfoMessage(NIIF_ERROR,Translate("Miranda NG could not open URL"),Translate("Miranda NG was not able to open \"%S\".\n\nThe given URL is invalid and cannot be parsed."),pszUrl); } mir_free(pszUrl); /* async param */ } diff --git a/plugins/AvatarHistory/res/AvatarHistory.rc b/plugins/AvatarHistory/res/AvatarHistory.rc index b21e27293b..1cc924ddfa 100644 --- a/plugins/AvatarHistory/res/AvatarHistory.rc +++ b/plugins/AvatarHistory/res/AvatarHistory.rc @@ -108,7 +108,7 @@ STYLE DS_SETFONT | DS_MODALFRAME | DS_SETFOREGROUND | DS_FIXEDSYS | DS_CENTER | CAPTION "Avatar History: Select how to store history avatars" FONT 8, "MS Shell Dlg", 0, 0, 0x0 BEGIN - LTEXT "Please select how the avatar history should be stored. This setting can NOT be changed in future, because it would cause all previous history to be lost.",IDC_STATIC,15,7,416,23 + LTEXT "Please select how the avatar history should be stored. This setting CANNOT be changed in future, because it would cause all previous history to be lost.",IDC_STATIC,15,7,416,23 CONTROL "Store history in miranda history and all history avatars in same folder",IDC_MIR_SAME, "Button",BS_AUTORADIOBUTTON | WS_GROUP,15,32,416,11 CONTROL "Store history in miranda history and history avatars in per protocol folders",IDC_MIR_PROTO, diff --git a/plugins/CountryFlags/res/resource.rc b/plugins/CountryFlags/res/resource.rc index a951c53c5a..c1025da06b 100644 --- a/plugins/CountryFlags/res/resource.rc +++ b/plugins/CountryFlags/res/resource.rc @@ -95,7 +95,7 @@ BEGIN "Button",BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP,12,27,206,10 CONTROL "Use &IP-to-country database for country detection",IDC_CHECK_USEIPTOCOUNTRY, "Button",BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP,12,42,206,12 - CONTROL "Use &unknown flag if the country can not be determined",IDC_CHECK_USEUNKNOWNFLAG, + CONTROL "Use &unknown flag if the country cannot be determined",IDC_CHECK_USEUNKNOWNFLAG, "Button",BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP,12,54,206,10 END diff --git a/plugins/LotusNotify/src/LotusNotify.cpp b/plugins/LotusNotify/src/LotusNotify.cpp index 02973d6335..d50f0fc95a 100644 --- a/plugins/LotusNotify/src/LotusNotify.cpp +++ b/plugins/LotusNotify/src/LotusNotify.cpp @@ -1698,7 +1698,7 @@ extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD miranda { #ifdef _WIN64 MessageBox(NULL - , TranslateT("LotusNotify.dll can not work with 64bit Miranda. (Lotus client is 32bit only)") + , TranslateT("LotusNotify.dll cannot work with 64bit Miranda. (Lotus client is 32bit only)") , TranslateT("LotusNotify") , MB_OK | MB_ICONWARNING ); return NULL; diff --git a/plugins/MirFox/src/MirandaUtils.cpp b/plugins/MirFox/src/MirandaUtils.cpp index 6952966cba..c2374ab166 100644 --- a/plugins/MirFox/src/MirandaUtils.cpp +++ b/plugins/MirFox/src/MirandaUtils.cpp @@ -270,27 +270,27 @@ void MirandaUtils::sendMessage(ActionThreadArgStruct* args, MFENUM_SEND_MESSAGE_ //error - show error popup wchar_t* buffer = new wchar_t[1024 * sizeof(wchar_t)]; if (myMfAck != NULL){ - logger->log_p(L"SMTC: ERROR - Can not send message - result = [%d] ", myMfAck->result); + logger->log_p(L"SMTC: ERROR - Cannot send message - result = [%d] ", myMfAck->result); if (myMfAck->errorDesc != NULL){ if (contactNameW != NULL && tszAccountName != NULL){ - mir_sntprintf(buffer, 1024, TranslateT("Can not send message to %s (%s) - %S"), contactNameW, tszAccountName, myMfAck->errorDesc); + mir_sntprintf(buffer, 1024, TranslateT("Cannot send message to %s (%s) - %S"), contactNameW, tszAccountName, myMfAck->errorDesc); } else { - mir_sntprintf(buffer, 1024, TranslateT("Can not send message - %S"), myMfAck->errorDesc); + mir_sntprintf(buffer, 1024, TranslateT("Cannot send message - %S"), myMfAck->errorDesc); } } else { if (contactNameW != NULL && tszAccountName != NULL){ - mir_sntprintf(buffer, 1024, TranslateT("Can not send message to %s (%s)"), contactNameW, tszAccountName); + mir_sntprintf(buffer, 1024, TranslateT("Cannot send message to %s (%s)"), contactNameW, tszAccountName); } else { - buffer = mir_wstrdup(TranslateT("Can not send message - %S")); + buffer = mir_wstrdup(TranslateT("Cannot send message - %S")); } } } else { - logger->log(L"SMTC: ERROR - Can not send message 2"); + logger->log(L"SMTC: ERROR - Cannot send message 2"); if (contactNameW != NULL && tszAccountName != NULL){ - mir_sntprintf(buffer, 1024, TranslateT("Can not send message to %s (%s)"), contactNameW, tszAccountName); + mir_sntprintf(buffer, 1024, TranslateT("Cannot send message to %s (%s)"), contactNameW, tszAccountName); } else { - buffer = mir_wstrdup(TranslateT("Can not send message")); + buffer = mir_wstrdup(TranslateT("Cannot send message")); } } @@ -470,11 +470,11 @@ void MirandaUtils::setStatusOnAccount(ActionThreadArgStruct* args) } else { if (tszAccountName != NULL){ - logger->log_p(L"SSOA: ERROR - Can not set status message 2 on [%s] - result = [%d] ", tszAccountName, result); - mir_sntprintf(buffer, 1024, TranslateT("Can not set status message on %s"), tszAccountName); + logger->log_p(L"SSOA: ERROR - Cannot set status message 2 on [%s] - result = [%d] ", tszAccountName, result); + mir_sntprintf(buffer, 1024, TranslateT("Cannot set status message on %s"), tszAccountName); } else { - logger->log_p(L"SSOA: ERROR - Can not set status message 2 - result = [%d] ", result); - buffer = mir_wstrdup(TranslateT("Can not set status message")); + logger->log_p(L"SSOA: ERROR - Cannot set status message 2 - result = [%d] ", result); + buffer = mir_wstrdup(TranslateT("Cannot set status message")); } if(ServiceExists(MS_POPUP_ADDPOPUPCLASS)) { diff --git a/plugins/MirFox/src/MirfoxMiranda.cpp b/plugins/MirFox/src/MirfoxMiranda.cpp index 64977b2638..b0984d3b66 100644 --- a/plugins/MirFox/src/MirfoxMiranda.cpp +++ b/plugins/MirFox/src/MirfoxMiranda.cpp @@ -109,7 +109,7 @@ void CMirfoxMiranda::initializeSharedMemoryData(MirfoxData& mirfoxData, SharedMe MessageBox(NULL, TranslateT("This MirFox (Miranda) plugin is too old. Please update it."), TranslateT("MirFox (Miranda) - Error"), MB_OK | MB_ICONWARNING ); } if (result.errorCode == -4){ //existing csm version is too low -> sb is too old - MessageBox(NULL, TranslateT("This MirFox (Miranda) plugin can not start because some other MirFox component is too old. Please, check and update your MirFox components."), TranslateT("MirFox (Miranda) - Error"), MB_OK | MB_ICONWARNING ); + MessageBox(NULL, TranslateT("This MirFox (Miranda) plugin cannot start because some other MirFox component is too old. Please, check and update your MirFox components."), TranslateT("MirFox (Miranda) - Error"), MB_OK | MB_ICONWARNING ); } mirfoxData.setPluginState(MFENUM_PLUGIN_STATE_ERROR); return; diff --git a/plugins/SendScreenshotPlus/src/UMainForm.cpp b/plugins/SendScreenshotPlus/src/UMainForm.cpp index 9285b5f9d7..a07e027932 100644 --- a/plugins/SendScreenshotPlus/src/UMainForm.cpp +++ b/plugins/SendScreenshotPlus/src/UMainForm.cpp @@ -637,7 +637,7 @@ LRESULT TfrmMain::UMevent(WPARAM wParam, LPARAM lParam) { switch (lParam) { case EVT_CaptureDone: if (!m_Screenshot) { - TCHAR *err = TranslateT("Cant create a Screenshot"); + TCHAR *err = TranslateT("Can't create a Screenshot"); MessageBox(m_hWnd,err,ERROR_TITLE,MB_OK|MB_ICONWARNING); Show(); return FALSE; diff --git a/plugins/UserInfoEx/res/resource.rc b/plugins/UserInfoEx/res/resource.rc index 67bad3fa25..2d85ebdd24 100644 --- a/plugins/UserInfoEx/res/resource.rc +++ b/plugins/UserInfoEx/res/resource.rc @@ -455,7 +455,7 @@ BEGIN CONTROL "Use Zodiac as default avatar",CHECK_OPT_ZODIACAVATAR, "Button",BS_AUTOCHECKBOX | WS_TABSTOP,161,129,131,10 LTEXT "Country Flags",TXT_OPT_FLAGS,161,148,131,8 - CONTROL "Use &unknown flag if country can not be determined",CHECK_OPT_FLAGSUNKNOWN, + CONTROL "Use &unknown flag if country cannot be determined",CHECK_OPT_FLAGSUNKNOWN, "Button",BS_AUTOCHECKBOX | BS_TOP | BS_MULTILINE | WS_GROUP | WS_TABSTOP,161,183,131,16 CONTROL "Show country flag as &status icon on message window",CHECK_OPT_FLAGSMSGSTATUS, "Button",BS_AUTOCHECKBOX | BS_TOP | BS_MULTILINE | WS_GROUP | WS_TABSTOP,161,203,131,16 -- cgit v1.2.3