-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ui] add runtime UEFI media validation as a selectable advanced option
* Also add Ctrl-A as a new cheat-mode to toggle the use of Rufus MBR (which is enabled by default) which replaces the previous UI checkbox. The Disk ID field is now completely removed as we now use the default values for XP and non XP installs, and will expect people with multiple disks to disconnect all except the one where they plan to install Windows.
- Loading branch information
Showing
13 changed files
with
203 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* Rufus: The Reliable USB Formatting Utility | ||
* Localization tables - autogenerated from resource.h | ||
* Copyright © 2013-2021 Pete Batard <[email protected]> | ||
* Copyright © 2013-2024 Pete Batard <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -52,11 +52,10 @@ const loc_control_id control_id[] = { | |
LOC_CTRL(IDC_TEST), | ||
LOC_CTRL(IDC_SELECT), | ||
LOC_CTRL(IDC_EXTENDED_LABEL), | ||
LOC_CTRL(IDC_RUFUS_MBR), | ||
LOC_CTRL(IDC_UEFI_MEDIA_VALIDATION), | ||
LOC_CTRL(IDC_TARGET_SYSTEM), | ||
LOC_CTRL(IDC_PERSISTENCE_SIZE), | ||
LOC_CTRL(IDC_PERSISTENCE_UNITS), | ||
LOC_CTRL(IDC_DISK_ID), | ||
LOC_CTRL(IDC_OLD_BIOS_FIXES), | ||
LOC_CTRL(IDC_LIST_USB_HDD), | ||
LOC_CTRL(IDC_STATUS_TOOLBAR), | ||
|
@@ -510,6 +509,55 @@ const loc_control_id control_id[] = { | |
LOC_CTRL(MSG_348), | ||
LOC_CTRL(MSG_349), | ||
LOC_CTRL(MSG_350), | ||
LOC_CTRL(MSG_351), | ||
LOC_CTRL(MSG_352), | ||
LOC_CTRL(MSG_353), | ||
LOC_CTRL(MSG_354), | ||
LOC_CTRL(MSG_355), | ||
LOC_CTRL(MSG_356), | ||
LOC_CTRL(MSG_357), | ||
LOC_CTRL(MSG_358), | ||
LOC_CTRL(MSG_359), | ||
LOC_CTRL(MSG_360), | ||
LOC_CTRL(MSG_361), | ||
LOC_CTRL(MSG_362), | ||
LOC_CTRL(MSG_363), | ||
LOC_CTRL(MSG_364), | ||
LOC_CTRL(MSG_365), | ||
LOC_CTRL(MSG_366), | ||
LOC_CTRL(MSG_367), | ||
LOC_CTRL(MSG_368), | ||
LOC_CTRL(MSG_369), | ||
LOC_CTRL(MSG_370), | ||
LOC_CTRL(MSG_371), | ||
LOC_CTRL(MSG_372), | ||
LOC_CTRL(MSG_373), | ||
LOC_CTRL(MSG_374), | ||
LOC_CTRL(MSG_375), | ||
LOC_CTRL(MSG_376), | ||
LOC_CTRL(MSG_377), | ||
LOC_CTRL(MSG_378), | ||
LOC_CTRL(MSG_379), | ||
LOC_CTRL(MSG_380), | ||
LOC_CTRL(MSG_381), | ||
LOC_CTRL(MSG_382), | ||
LOC_CTRL(MSG_383), | ||
LOC_CTRL(MSG_384), | ||
LOC_CTRL(MSG_385), | ||
LOC_CTRL(MSG_386), | ||
LOC_CTRL(MSG_387), | ||
LOC_CTRL(MSG_388), | ||
LOC_CTRL(MSG_389), | ||
LOC_CTRL(MSG_390), | ||
LOC_CTRL(MSG_391), | ||
LOC_CTRL(MSG_392), | ||
LOC_CTRL(MSG_393), | ||
LOC_CTRL(MSG_394), | ||
LOC_CTRL(MSG_395), | ||
LOC_CTRL(MSG_396), | ||
LOC_CTRL(MSG_397), | ||
LOC_CTRL(MSG_398), | ||
LOC_CTRL(MSG_399), | ||
LOC_CTRL(MSG_MAX), | ||
LOC_CTRL(IDOK), | ||
LOC_CTRL(IDCANCEL), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.