Author: ekohl
Date: Sun Mar 9 17:48:42 2014
New Revision: 62468
URL:
http://svn.reactos.org/svn/reactos?rev=62468&view=rev
Log:
[MSGINA]
Display warning messages if a user tries to log on using a non-existing account name, a
wrong password or if the account was disabled.
Modified:
trunk/reactos/dll/win32/msgina/gui.c
trunk/reactos/dll/win32/msgina/lang/bg-BG.rc
trunk/reactos/dll/win32/msgina/lang/cs-CZ.rc
trunk/reactos/dll/win32/msgina/lang/de-DE.rc
trunk/reactos/dll/win32/msgina/lang/en-US.rc
trunk/reactos/dll/win32/msgina/lang/es-ES.rc
trunk/reactos/dll/win32/msgina/lang/fr-FR.rc
trunk/reactos/dll/win32/msgina/lang/he-IL.rc
trunk/reactos/dll/win32/msgina/lang/id-ID.rc
trunk/reactos/dll/win32/msgina/lang/it-IT.rc
trunk/reactos/dll/win32/msgina/lang/ja-JP.rc
trunk/reactos/dll/win32/msgina/lang/no-NO.rc
trunk/reactos/dll/win32/msgina/lang/pl-PL.rc
trunk/reactos/dll/win32/msgina/lang/ro-RO.rc
trunk/reactos/dll/win32/msgina/lang/ru-RU.rc
trunk/reactos/dll/win32/msgina/lang/sk-SK.rc
trunk/reactos/dll/win32/msgina/lang/sq-AL.rc
trunk/reactos/dll/win32/msgina/lang/tr-TR.rc
trunk/reactos/dll/win32/msgina/lang/uk-UA.rc
trunk/reactos/dll/win32/msgina/resource.h
Modified: trunk/reactos/dll/win32/msgina/gui.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/gui.c?rev…
==============================================================================
--- trunk/reactos/dll/win32/msgina/gui.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/gui.c [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -943,19 +943,26 @@
goto done;
Status = DoLoginTasks(pgContext, UserName, Domain, Password, &SubStatus);
- if (!NT_SUCCESS(Status))
- {
-TRACE("DoLoginTasks failed! Status 0x%08lx SubStatus 0x%08lx\n", Status,
SubStatus);
+ if (Status == STATUS_LOGON_FAILURE)
+ {
+ ResourceMessageBox(pgContext,
+ hwndDlg,
+ MB_OK | MB_ICONEXCLAMATION,
+ IDS_LOGONTITLE,
+ IDS_LOGONWRONGUSERORPWD);
+ goto done;
+ }
+ else if (Status == STATUS_ACCOUNT_RESTRICTION)
+ {
+ TRACE("DoLoginTasks failed! Status 0x%08lx SubStatus 0x%08lx\n",
Status, SubStatus);
if (SubStatus == STATUS_ACCOUNT_DISABLED)
{
-TRACE("Account disabled!\n");
- pgContext->pWlxFuncs->WlxMessageBox(pgContext->hWlx,
- hwndDlg,
- L"Account disabled!",
- L"Logon error",
- MB_OK | MB_ICONERROR);
-
+ ResourceMessageBox(pgContext,
+ hwndDlg,
+ MB_OK | MB_ICONEXCLAMATION,
+ IDS_LOGONTITLE,
+ IDS_LOGONUSERDISABLED);
goto done;
}
else if (SubStatus == STATUS_ACCOUNT_LOCKED_OUT)
@@ -979,6 +986,13 @@
goto done;
}
}
+ else if (!NT_SUCCESS(Status))
+ {
+TRACE("DoLoginTasks failed! Status 0x%08lx\n", Status);
+
+ goto done;
+ }
+
if (!CreateProfile(pgContext, UserName, Domain, Password))
{
Modified: trunk/reactos/dll/win32/msgina/lang/bg-BG.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/bg-B…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/bg-BG.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/bg-BG.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -140,11 +140,14 @@
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "Logon date: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/cs-CZ.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/cs-C…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/cs-CZ.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/cs-CZ.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -145,11 +145,14 @@
IDS_LOGONMSG "Jste pÅihlášeni jako %s."
IDS_LOGONDATE "Datum pÅihlášenÃ: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/de-DE.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/de-D…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/de-DE.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/de-DE.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -140,11 +140,14 @@
IDS_LOGONMSG "Sie sind angemeldet als %s."
IDS_LOGONDATE "Anmeldedatum: %s %s"
IDS_COMPUTERLOCKED "Computer ist gesperrt"
- IDS_LOCKEDWRONGPASSWORD "Das Passwort ist falsch. Bitte geben Sie das Passwort
erneut ein. Bei Buchstaben des Passworts wird GroÃ- und Kleinschreibung
unterschieden."
- IDS_LOCKEDWRONGUSER "Der Computer ist gesperrt. Nur %s\\%s oder ein
Administrator kann den Computer entsperren."
+ IDS_LOCKEDWRONGPASSWORD "Das Passwort ist falsch. Bitte geben Sie das Passwort
erneut ein. Bei Buchstaben des Passworts wird GroÃ- und Kleinschreibung
unterschieden."
+ IDS_LOCKEDWRONGUSER "Der Computer ist gesperrt. Nur %s\\%s oder ein
Administrator kann den Computer entsperren."
IDS_CHANGEPWDTITLE "Passwort ändern"
IDS_NONMATCHINGPASSWORDS "Die eingegebenen Passworte stimmen nicht überein.
Geben Sie das neue Passwort in beide Textfelder ein."
IDS_PASSWORDCHANGED "Ihr Passwort wurde geändert."
+ IDS_LOGONTITLE "Anmeldemeldung"
+ IDS_LOGONWRONGUSERORPWD "Sie konnten nicht angemeldet werden. Prüfen Sie
Benutzername und Domäne, und geben Sie das Passwort erneut ein. Bei Passworten wird
GroÃ- und Kleinschreibung unterschieden."
+ IDS_LOGONUSERDISABLED "Ihr Konto wurde deaktiviert. Wenden Sie sich an Ihren
Systemadministrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/en-US.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/en-U…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/en-US.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/en-US.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -135,16 +135,19 @@
IDS_PRESSCTRLALTDELETE "Press Control+Alt+Delete to Logon."
IDS_ASKFORUSER "User name: "
IDS_ASKFORPASSWORD "Password: "
- IDS_FORCELOGOFF "This will log out the current user and lose all unsaved data.
Continue?"
+ IDS_FORCELOGOFF "This will log out the current user and lose all unsaved data.
Continue?"
IDS_LOCKMSG "Only %s or an Administrator can unlock this computer."
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "Logon date: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/es-ES.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/es-E…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/es-ES.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/es-ES.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -142,11 +142,14 @@
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "Logon date: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/fr-FR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/fr-F…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/fr-FR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/fr-FR.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -140,11 +140,14 @@
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "Logon date: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/he-IL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/he-I…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/he-IL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/he-IL.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -140,11 +140,14 @@
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "ת×ר×× ×× ×ס×: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/id-ID.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/id-I…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/id-ID.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/id-ID.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -137,13 +137,17 @@
IDS_ASKFORPASSWORD "Kata sandi: "
IDS_FORCELOGOFF "Ini akan mengeluarkan pengguna saat ini dan kehilangan data
yang belum disimpan. Lanjutkan?"
IDS_LOCKMSG "Only %s or an Administrator can unlock this computer."
+ IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "Logon date: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/it-IT.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/it-I…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/it-IT.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/it-IT.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -148,11 +148,14 @@
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "Dati di accesso: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/ja-JP.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/ja-J…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/ja-JP.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/ja-JP.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -140,11 +140,14 @@
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "Logon date: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/no-NO.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/no-N…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/no-NO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/no-NO.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -140,11 +140,14 @@
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "Logon date: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/pl-PL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/pl-P…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/pl-PL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/pl-PL.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -149,11 +149,14 @@
IDS_LOGONMSG "JesteÅ zalogowany jako %s."
IDS_LOGONDATE "Data logowania: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/ro-RO.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/ro-R…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/ro-RO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/ro-RO.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -142,11 +142,14 @@
IDS_LOGONMSG "SunteÈi autentificat ca %s."
IDS_LOGONDATE "Data autentificÄrii: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/ru-RU.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/ru-R…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/ru-RU.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/ru-RU.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -142,11 +142,14 @@
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "ÐаÑа вÑ
ода: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/sk-SK.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/sk-S…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/sk-SK.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/sk-SK.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -145,11 +145,14 @@
IDS_LOGONMSG "You are logged on as %s."
IDS_LOGONDATE "Logon date: %s %s"
IDS_COMPUTERLOCKED "Computer locked"
- IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
- IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
+ IDS_LOCKEDWRONGPASSWORD "The password is wrong. Please enter your password
again. Letters in passwords must be typed using the correct case."
+ IDS_LOCKEDWRONGUSER "This computer is locked. Only %s\\%s or an Administrator
can unlock this computer."
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/sq-AL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/sq-A…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/sq-AL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/sq-AL.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -145,6 +145,12 @@
IDS_COMPUTERLOCKED "Kompjuter mbyllur"
IDS_LOCKEDWRONGPASSWORD "Fjalëkalimi është gabim. Ju lutem shkruani
fjalëkalimin tuaj përsëri. Gërmat në fjalëkalim duhet të shkruhen duke përdorur
rastin e duhur."
IDS_LOCKEDWRONGUSER "Ky kompjuter është i bllokuar. Vetëm %s\\%s ose një
Administrator mund të zhbllokoj këtë kompjuter."
+ IDS_CHANGEPWDTITLE "Change Password"
+ IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
+ IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/tr-TR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/tr-T…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/tr-TR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/tr-TR.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -147,6 +147,9 @@
IDS_CHANGEPWDTITLE "Åifre DeÄÅtirme"
IDS_NONMATCHINGPASSWORDS "YazıdıÄınız bu Åifreler birbiriyle uyuÅmuyor.
Her iki metin kutusuna da aynı Åifreyi yazınız."
IDS_PASSWORDCHANGED "Åifreniz deÄiÅtirildi."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/lang/uk-UA.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/lang/uk-U…
==============================================================================
--- trunk/reactos/dll/win32/msgina/lang/uk-UA.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/lang/uk-UA.rc [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -153,6 +153,9 @@
IDS_CHANGEPWDTITLE "Change Password"
IDS_NONMATCHINGPASSWORDS "The passwords you typed do not match. Type the same
password in both text boxes."
IDS_PASSWORDCHANGED "Your password has been changed."
+ IDS_LOGONTITLE "Logon Message"
+ IDS_LOGONWRONGUSERORPWD "The system could not log you on. Make sure your User
name and domain are correct, then type your password again. Letters in passwords must be
typed using the correct case."
+ IDS_LOGONUSERDISABLED "Your account has been disabled. Please see your system
administrator."
END
/* Shutdown Dialog Strings */
Modified: trunk/reactos/dll/win32/msgina/resource.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msgina/resource.…
==============================================================================
--- trunk/reactos/dll/win32/msgina/resource.h [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/msgina/resource.h [iso-8859-1] Sun Mar 9 17:48:42 2014
@@ -54,6 +54,9 @@
#define IDS_CHANGEPWDTITLE 40012
#define IDS_NONMATCHINGPASSWORDS 40013
#define IDS_PASSWORDCHANGED 40014
+#define IDS_LOGONTITLE 40015
+#define IDS_LOGONWRONGUSERORPWD 40016
+#define IDS_LOGONUSERDISABLED 40017
#define IDS_SHUTDOWN_SHUTDOWN 50000
#define IDS_SHUTDOWN_LOGOFF 50001