[SHELL32] Add a warning dialog before starting a dialog as well as a format complete dialog. (#1137)

Also fix the progress bar not working and the Allocation unit size combo box disappearing after a format completes.
This commit is contained in:
Jared Smudde 2018-12-15 14:22:57 -06:00 committed by Hermès BÉLUSCA - MAÏTO
parent 043a98ddd9
commit 44bb99cc8e
34 changed files with 172 additions and 6 deletions

View file

@ -411,8 +411,6 @@ InitializeFormatDriveDlg(HWND hwndDlg, PFORMAT_DRIVE_CONTEXT pContext)
SendMessageW(hwndFileSystems, CB_SETCURSEL, dwDefault, 0);
/* setup cluster combo */
InsertDefaultClusterSizeForFs(hwndDlg, pContext);
/* hide progress control */
ShowWindow(GetDlgItem(hwndDlg, 28678), SW_HIDE);
}
static HWND FormatDrvDialog = NULL;
@ -435,6 +433,8 @@ FormatExCB(
case DONE:
pSuccess = (PBOOLEAN)ActionInfo;
bSuccess = (*pSuccess);
ShellMessageBoxW(shell32_hInstance, FormatDrvDialog, MAKEINTRESOURCEW(IDS_FORMAT_COMPLETE), MAKEINTRESOURCEW(IDS_FORMAT_TITLE), MB_OK | MB_ICONINFORMATION);
SendDlgItemMessageW(FormatDrvDialog, 28678, PBM_SETPOS, 0, 0);
break;
case VOLUMEINUSE:
@ -521,7 +521,6 @@ FormatDrive(HWND hwndDlg, PFORMAT_DRIVE_CONTEXT pContext)
}
hDlgCtrl = GetDlgItem(hwndDlg, 28680);
ShowWindow(hDlgCtrl, SW_SHOW);
SendMessageW(hDlgCtrl, PBM_SETRANGE, 0, MAKELPARAM(0, 100));
bSuccess = FALSE;
@ -563,7 +562,6 @@ FormatDrive(HWND hwndDlg, PFORMAT_DRIVE_CONTEXT pContext)
ClusterSize,
FormatExCB);
ShowWindow(hDlgCtrl, SW_HIDE);
FormatDrvDialog = NULL;
if (!bSuccess)
{
@ -594,8 +592,11 @@ FormatDriveDlg(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
switch(LOWORD(wParam))
{
case IDOK:
pContext = (PFORMAT_DRIVE_CONTEXT)GetWindowLongPtr(hwndDlg, DWLP_USER);
FormatDrive(hwndDlg, pContext);
if (ShellMessageBoxW(shell32_hInstance, hwndDlg, MAKEINTRESOURCEW(IDS_FORMAT_WARNING), MAKEINTRESOURCEW(IDS_FORMAT_TITLE), MB_OKCANCEL | MB_ICONWARNING) == IDOK)
{
pContext = (PFORMAT_DRIVE_CONTEXT)GetWindowLongPtr(hwndDlg, DWLP_USER);
FormatDrive(hwndDlg, pContext);
}
break;
case IDCANCEL:
pContext = (PFORMAT_DRIVE_CONTEXT)GetWindowLongPtr(hwndDlg, DWLP_USER);

View file

@ -798,6 +798,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Изключване"
IDS_SHUTDOWN_PROMPT "Искате ли да изключите компютъра?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Shutdown"
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -803,6 +803,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Vypnout"
IDS_SHUTDOWN_PROMPT "Opravdu chcete vypnout počítač?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Nelze zobrazit dialog Spustit soubor (interní chyba)"
IDS_RUNDLG_BROWSE_ERROR "Nelze zobrazit dialog Procházet (interní chyba)"

View file

@ -803,6 +803,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Luk Ned"
IDS_SHUTDOWN_PROMPT "Ønsker du at Lukke Ned?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -798,6 +798,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Herunterfahren"
IDS_SHUTDOWN_PROMPT "Möchten Sie das System herunterfahren?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Anzeigen der Datei Ausführen Dialogbox nicht möglich (interner Fehler)"
IDS_RUNDLG_BROWSE_ERROR "Anzeigen der Durchsuchen Dialogbox nicht möglich (interner Fehler)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Απενεργοποίηση"
IDS_SHUTDOWN_PROMPT "Είστε σίγουροι ότι θέλετε να απενεργοποιήσετε τον υπολογιστή σας;"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Shutdown"
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -798,6 +798,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Shutdown"
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -805,6 +805,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Apagar"
IDS_SHUTDOWN_PROMPT "¿Desea apagar el equipo?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "No se pudo mostrar el diálogo Ejecutar (error interno)"
IDS_RUNDLG_BROWSE_ERROR "No se pudo mostrar el diálogo Examinar (error interno)"

View file

@ -805,6 +805,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Lülita välja"
IDS_SHUTDOWN_PROMPT "Kas soovid arvuti välja lülitada?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Ei saanud kuvada Run faili dialoogiboksi (sisemine viga)"
IDS_RUNDLG_BROWSE_ERROR "Ei saanud kuvada Sirvi dialoogiboksi (sisemine viga)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Sammuta"
IDS_SHUTDOWN_PROMPT "Haluatko lopettaa ReactOS:n istunnon?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Arrêter"
IDS_SHUTDOWN_PROMPT "Voulez-vous fermer la session ReactOS ?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Impossible d'afficher la boîte de dialogue pour l'exécution d'un fichier (erreur interne)"
IDS_RUNDLG_BROWSE_ERROR "Impossible d'afficher la boîte de dialogue pour la recherche de fichier (erreur interne)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "כיבוי"
IDS_SHUTDOWN_PROMPT "האם ברצונך לכבות את המחשב?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Kikapcsolás"
IDS_SHUTDOWN_PROMPT "Kiakarod kapcsolni számítógépét?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Arresta sistema"
IDS_SHUTDOWN_PROMPT "Volete arrestare il sistema?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Impossibile mostrare il dialogo Eseguire (errore interno)"
IDS_RUNDLG_BROWSE_ERROR "Impossibile mostrare il dialogo sfoglia (errore interno)"

View file

@ -794,6 +794,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "シャットダウン"
IDS_SHUTDOWN_PROMPT "シャットダウンしますか?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Shutdown"
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Shutdown"
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Avslutt"
IDS_SHUTDOWN_PROMPT "Vil du slå av datamaskinen?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -803,6 +803,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Wyłącz"
IDS_SHUTDOWN_PROMPT "Czy chcesz wyłączyć system?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Nie mogę wyświetlić okna Uruchom (błąd wewnętrzny)"
IDS_RUNDLG_BROWSE_ERROR "Nie mogę wyświetlić okna Przeglądaj (błąd wewnętrzny)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Desligar"
IDS_SHUTDOWN_PROMPT "Você quer finalizar a sessão?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Desligar"
IDS_SHUTDOWN_PROMPT "Deseja finalizar esta sessão do ReactOS?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -799,6 +799,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Închidere"
IDS_SHUTDOWN_PROMPT "Doriți să închideți calculatorul?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "„Executare fișier” nu a putut fi deschis (eroare internă)"
IDS_RUNDLG_BROWSE_ERROR "„Specificare fișiere” nu a putut fi deschisă (eroare internă)"

View file

@ -804,6 +804,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Завершение работы"
IDS_SHUTDOWN_PROMPT "Вы действительно хотите завершить работу ReactOS?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Невозможно отобразить диалоговое окно Выполнить (внутренняя ошибка)"
IDS_RUNDLG_BROWSE_ERROR "Невозможно отобразить диалоговое окно Обзор (внутренняя ошибка)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Vypnúť"
IDS_SHUTDOWN_PROMPT "Naozaj chcete vypnúť počítač?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Nemožno zobraziť dialogové okno Spustiť súbor (vnútorná chyba)"
IDS_RUNDLG_BROWSE_ERROR "Nemožno zobraziť dialogové okno Prehľadávať (vnútorná chyba)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Shutdown"
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -801,6 +801,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Fike"
IDS_SHUTDOWN_PROMPT "Doni ta filkni sistemin?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Në pamundësi për të shfaqur kutinë dialogut ekzekuto (gabim i brendshëm)"
IDS_RUNDLG_BROWSE_ERROR "Në pamundësi për të shfaqur kutinë dialogut Shfleto (gabim i brendshëm)"

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Stäng av"
IDS_SHUTDOWN_PROMPT "Vill du stänga av?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Kunde inte visa dialogen Kör fil (internt fel)"
IDS_RUNDLG_BROWSE_ERROR "Kunde inte visa dialogen Bläddra (internt fel)"

View file

@ -799,6 +799,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Bilgisayarı Kapat"
IDS_SHUTDOWN_PROMPT "Bilgisayarı kapatmak ister misiniz?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Kütük Çalıştır iletişim kutusu görüntülenemiyor (iç yanlışlık)."
IDS_RUNDLG_BROWSE_ERROR "Göz At iletişim kutusu görüntülenemiyor (iç yanlışlık)."

View file

@ -797,6 +797,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "Вимкнути"
IDS_SHUTDOWN_PROMPT "Ви хочете вимкнути комп'ютер?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Неможливо відобразити Діалог Запуску Файлу (внутрішня помилка)"
IDS_RUNDLG_BROWSE_ERROR "Неможливо відобразити Діалог Огляду (внутрішня помилка)"

View file

@ -805,6 +805,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "关机"
IDS_SHUTDOWN_PROMPT "请问需要关闭系统吗?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "无法显示运行文件对话框 (内部错误)"
IDS_RUNDLG_BROWSE_ERROR "无法显示浏览对话框 (内部错误)"

View file

@ -806,6 +806,11 @@ BEGIN
IDS_SHUTDOWN_TITLE "關機"
IDS_SHUTDOWN_PROMPT "Do you want to shutdown?"
/* Format Dialog Strings */
IDS_FORMAT_TITLE "Format Local Disk"
IDS_FORMAT_WARNING "WARNING: Formatting will erase ALL data on this disk.\nTo format the disk, click OK. To quit, click CANCEL."
IDS_FORMAT_COMPLETE "Format Complete."
/* Run File dialog */
IDS_RUNDLG_ERROR "Unable to display Run File dialog box (internal error)"
IDS_RUNDLG_BROWSE_ERROR "Unable to display Browse dialog box (internal error)"

View file

@ -184,6 +184,11 @@
#define IDS_RUNDLG_BROWSE_CAPTION 182
#define IDS_RUNDLG_BROWSE_FILTER 183
/* Format Dialog strings */
#define IDS_FORMAT_TITLE 184
#define IDS_FORMAT_WARNING 185
#define IDS_FORMAT_COMPLETE 186
#define IDS_UNKNOWN_APP 190
#define IDS_EXE_DESCRIPTION 191