diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-09 18:25:12 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-09 18:25:12 +0000 |
commit | 79e72b2ecb9b6c2e3dd5b6b87c9c8634ab5463f2 (patch) | |
tree | 5cbc88c7db5d6741e42c689cf629bfcab3596fcd /plugins/BuddyPounce | |
parent | 770f113c5b67a9dd977b0dd1e980d1c5606e49a5 (diff) |
English US correction (patch by RMN)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6420 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/BuddyPounce')
-rw-r--r-- | plugins/BuddyPounce/src/dialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/BuddyPounce/src/dialog.cpp b/plugins/BuddyPounce/src/dialog.cpp index 2d5f1ef7b2..6ba1f66318 100644 --- a/plugins/BuddyPounce/src/dialog.cpp +++ b/plugins/BuddyPounce/src/dialog.cpp @@ -229,7 +229,7 @@ INT_PTR CALLBACK BuddyPounceSimpleDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LP if (length>1) {
TCHAR *text = (TCHAR*)mir_alloc(length*sizeof(TCHAR));
if (!text) {
- msg(TranslateT("Couldnt Allocate enough memory"), _T(""));
+ msg(TranslateT("Couldn't allocate enough memory"), _T(""));
break;
}
GetDlgItemText(hwnd, IDC_MESSAGE, text, length);
@@ -295,7 +295,7 @@ INT_PTR CALLBACK BuddyPounceDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM l if (length>1) {
TCHAR *text = (TCHAR*)mir_alloc(length*sizeof(TCHAR));
if (!text) {
- msg(TranslateT("Couldnt Allocate enough memory"), _T(""));
+ msg(TranslateT("Couldn't allocate enough memory"), _T(""));
break;
}
GetDlgItemText(hwnd, IDC_MESSAGE, text, length);
@@ -421,7 +421,7 @@ INT_PTR CALLBACK BuddyPounceOptionsDlgProc(HWND hwnd, UINT msg, WPARAM wParam, L if (length > 1) {
TCHAR *text = (TCHAR*)mir_alloc(length*sizeof(TCHAR));
if (!text) {
- msg(TranslateT("Couldnt Allocate enough memory"), _T(""));
+ msg(TranslateT("Couldn't allocate enough memory"), _T(""));
break;
}
GetDlgItemText(hwnd, IDC_MESSAGE, text, length);
|