mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
changes restart/shutdown messages to some neutral text (no Windows/WINE/ReactOS
svn path=/trunk/; revision=7438
This commit is contained in:
parent
cd9ce31d63
commit
2d9a09646b
1 changed files with 2 additions and 2 deletions
|
@ -383,7 +383,7 @@ int WINAPI RestartDialogEx(HWND hwndOwner, LPCWSTR lpwstrReason, UINT uFlags, UI
|
|||
|
||||
/*FIXME: use uReason */
|
||||
|
||||
if (MessageBoxA(hwndOwner, "Do you want to restart Windows?", "Restart", MB_YESNO|MB_ICONQUESTION) == IDYES)
|
||||
if (MessageBoxA(hwndOwner, "Do you want to restart the system?", "Restart", MB_YESNO|MB_ICONQUESTION) == IDYES)
|
||||
{
|
||||
if (SHELL_OsIsUnicode())
|
||||
{
|
||||
|
@ -439,7 +439,7 @@ void WINAPI ExitWindowsDialog (HWND hWndOwner)
|
|||
{
|
||||
TRACE("(%p)\n", hWndOwner);
|
||||
|
||||
if (MessageBoxA(hWndOwner, "Do you want to exit Windows?", "Shutdown", MB_YESNO|MB_ICONQUESTION) == IDYES)
|
||||
if (MessageBoxA(hWndOwner, "Do you want to shutdown?", "Shutdown", MB_YESNO|MB_ICONQUESTION) == IDYES)
|
||||
{
|
||||
if (SHELL_OsIsUnicode())
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue