diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-05 20:02:22 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-05 20:02:22 +0000 |
commit | 0df358749ed87e4666938121f0cfbb3d8c3d0bca (patch) | |
tree | 2299734c4bc3e215c7b90812990e9a9b3cdf770f /plugins/Scriver | |
parent | ddd504fd65b47f0248cbe85e4b7b343af44b120d (diff) |
spelling correction (thanks RMN)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6355 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver')
-rw-r--r-- | plugins/Scriver/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/Scriver/src/msgtimedout.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Scriver/res/resource.rc b/plugins/Scriver/res/resource.rc index 2172fbe021..3f0fa6a5c1 100644 --- a/plugins/Scriver/res/resource.rc +++ b/plugins/Scriver/res/resource.rc @@ -232,7 +232,7 @@ STYLE DS_MODALFRAME | DS_SETFOREGROUND | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER | CAPTION "Send Error"
FONT 8, "MS Shell Dlg"
BEGIN
- LTEXT "An error has occured. The protocol reported the following error:",
+ LTEXT "An error has occurred. The protocol reported the following error:",
IDC_STATIC,5,4,177,20
EDITTEXT IDC_ERRORTEXT,5,24,177,21,ES_MULTILINE | ES_READONLY
LTEXT "while sending the following message:",IDC_STATIC,6,48,
diff --git a/plugins/Scriver/src/msgtimedout.cpp b/plugins/Scriver/src/msgtimedout.cpp index d185ce1900..96612fa2be 100644 --- a/plugins/Scriver/src/msgtimedout.cpp +++ b/plugins/Scriver/src/msgtimedout.cpp @@ -40,7 +40,7 @@ INT_PTR CALLBACK ErrorDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPar if (ewd->szDescription) {
SetDlgItemText(hwndDlg, IDC_ERRORTEXT, ewd->szDescription);
} else {
- SetDlgItemText(hwndDlg, IDC_ERRORTEXT, TranslateT("An unknown error has occured."));
+ SetDlgItemText(hwndDlg, IDC_ERRORTEXT, TranslateT("An unknown error has occurred."));
}
if (ewd->szText) {
SETTEXTEX st = {0};
|