diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-12-02 11:02:50 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-12-02 11:02:50 +0000 |
commit | b887ccb54d67f8ef8faaae00aa2563f1b212b4b2 (patch) | |
tree | 545bc2b9834405760adca18d8c81792bd0852e63 /src/core/stduserinfo | |
parent | 9e49499cb5f433b3a0e0718be8705f7b4c1b680e (diff) |
typo
git-svn-id: http://svn.miranda-ng.org/main/trunk@7035 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stduserinfo')
-rw-r--r-- | src/core/stduserinfo/contactinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stduserinfo/contactinfo.cpp b/src/core/stduserinfo/contactinfo.cpp index 024b5e0cbe..f651013852 100644 --- a/src/core/stduserinfo/contactinfo.cpp +++ b/src/core/stduserinfo/contactinfo.cpp @@ -93,7 +93,7 @@ static INT_PTR CALLBACK EditUserPhoneDlgProc(HWND hwndDlg, UINT msg, WPARAM wPar if (lstrlenA(szText)<7 || szText[0] != '+') isValid = 0;
if (isValid) isValid = (lstrlenA(szText+1) == (int)strspn(szText+1, "0123456789 ()-"));
if ( !isValid) {
- MessageBox(hwndDlg, TranslateT("The phone number should start with a + and consist of numbers, spaces, brackets and hyphens only."), TranslateT("Invalid phone Pumber"), MB_OK);
+ MessageBox(hwndDlg, TranslateT("The phone number should start with a + and consist of numbers, spaces, brackets and hyphens only."), TranslateT("Invalid phone number"), MB_OK);
break;
}
if (IsDlgButtonChecked(hwndDlg, IDC_SMS)) lstrcatA(szText, " SMS");
|