diff options
author | dartraiden <wowemuh@gmail.com> | 2023-09-16 23:25:48 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2023-09-16 23:25:48 +0300 |
commit | 36825f68cad12f608b8ae7d1fe181dfb0b767c4a (patch) | |
tree | da47b5b8491a52175350d7f12a7400d842d6f862 /src | |
parent | b68262a96dd88ce6e2456623ecbb3a3b8ba8c1b0 (diff) |
These requirements apply only to internal names
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/proto_opts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_app/src/proto_opts.cpp b/src/mir_app/src/proto_opts.cpp index fa1ebf12e7..7b8bb41d36 100644 --- a/src/mir_app/src/proto_opts.cpp +++ b/src/mir_app/src/proto_opts.cpp @@ -874,12 +874,12 @@ bool CAccountFormDlg::OnApply() for (auto *p = buf; *p; p++)
if (*p < 32 || *p > 127) {
- MessageBoxW(m_hwnd, TranslateT("Account name contains invalid symbols, only ASCII chars are allowed."), TranslateT("Account error"), MB_ICONERROR | MB_OK);
+ MessageBoxW(m_hwnd, TranslateT("Account internal name contains invalid symbols, only ASCII chars are allowed."), TranslateT("Account error"), MB_ICONERROR | MB_OK);
return false;
}
if (FindAccountByName(_T2A(buf))) {
- MessageBoxW(m_hwnd, TranslateT("Account name has to be unique. Please enter unique name."), TranslateT("Account error"), MB_ICONERROR | MB_OK);
+ MessageBoxW(m_hwnd, TranslateT("Account internal name has to be unique. Please enter unique name."), TranslateT("Account error"), MB_ICONERROR | MB_OK);
return false;
}
}
|