diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-11-11 21:10:24 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-11-11 21:10:24 +0000 |
commit | 2fa6c2439f8e61fe38e2cb770ec202c105c0c4a3 (patch) | |
tree | a2001822e9e87b65862a6eef079d7c23d1c0ae50 /protocols | |
parent | 8a186755706f72f2fc5e81b45c901cdf58003d23 (diff) |
Sametime: typos
git-svn-id: http://svn.miranda-ng.org/main/trunk@10964 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Sametime/src/meanwhile/src/error.c | 4 | ||||
-rw-r--r-- | protocols/Sametime/src/options.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Sametime/src/meanwhile/src/error.c b/protocols/Sametime/src/meanwhile/src/error.c index 6005eddbd1..abdc9c40e2 100644 --- a/protocols/Sametime/src/meanwhile/src/error.c +++ b/protocols/Sametime/src/meanwhile/src/error.c @@ -114,7 +114,7 @@ char* mwError(guint32 code) { CASE(USER_RE_LOGIN, LPGEN("User relogin")); CASE(BAD_NAME, LPGEN("Bad name")); CASE(REG_MODE_NS, LPGEN("Registration error")); - CASE(WRONG_USER_PRIV, LPGEN("Privilage error")); + CASE(WRONG_USER_PRIV, LPGEN("Privilege error")); CASE(NEED_EMAIL, LPGEN("Need email")); CASE(DNS_ERROR, LPGEN("DNS error")); CASE(DNS_FATAL_ERROR, LPGEN("DNS fatal error")); @@ -243,7 +243,7 @@ char* mwErrorDesc(guint32 code) { CASE(MULTI_SERVER_LOGIN2, LPGEN("Disconnected due to login in two Sametime servers concurrently (2)")); CASE(MULTI_LOGIN_COMP, LPGEN("Disconnected due to login from another computer.")); CASE(MUTLI_LOGIN_ALREADY, LPGEN("Unable to log in because you are already logged on from another computer")); - CASE(SERVER_BROKEN, LPGEN("Unable to log in because the server is eother unreachable, or not configured properly.")); + CASE(SERVER_BROKEN, LPGEN("Unable to log in because the server is either unreachable, or not configured properly.")); CASE(SERVER_PATH_OLD, LPGEN("Unable to log in to home Sametime server through the requested server, since your home server needs to be upgraded.")); CASE(APPLET_LOGOUT, LPGEN("The applet was logged out with this reason. Perform relogin and you will return to the former state.")); diff --git a/protocols/Sametime/src/options.cpp b/protocols/Sametime/src/options.cpp index 0b97f27906..6174eb9030 100644 --- a/protocols/Sametime/src/options.cpp +++ b/protocols/Sametime/src/options.cpp @@ -103,14 +103,14 @@ static INT_PTR CALLBACK DlgProcOptNet(HWND hwndDlg, UINT msg, WPARAM wParam, LPA WORD client_ver = proto->GetClientVersion();
if (client_ver) {
TCHAR verbuf[100];
- mir_sntprintf(verbuf, SIZEOF(verbuf), TranslateT("Client proto version: %03d.%03d"), (client_ver & 0xFF00) >> 8, client_ver & 0xFF);
+ mir_sntprintf(verbuf, SIZEOF(verbuf), TranslateT("Client protocol version: %03d.%03d"), (client_ver & 0xFF00) >> 8, client_ver & 0xFF);
SetDlgItemText(hwndDlg, IDC_ST_CLIENTVER, verbuf);
}
WORD server_ver = proto->GetServerVersion();
if (server_ver) {
TCHAR verbuf[100];
- mir_sntprintf(verbuf, SIZEOF(verbuf), TranslateT("Server proto version: %03d.%03d"), (server_ver & 0xFF00) >> 8, server_ver & 0xFF);
+ mir_sntprintf(verbuf, SIZEOF(verbuf), TranslateT("Server protocol version: %03d.%03d"), (server_ver & 0xFF00) >> 8, server_ver & 0xFF);
SetDlgItemText(hwndDlg, IDC_ST_SERVERVER, verbuf);
}
|