diff options
author | Rebecca Cran <rebecca@bsdio.com> | 2025-06-14 19:03:02 -0600 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-06-16 23:03:46 +0000 |
commit | 897edd165c400b613b9d1c2acdea1ce600126cd1 (patch) | |
tree | 17b3fbd29a323d7958d0ccb65dfa67b1575c11ea | |
parent | 45010d2812555ee53a681522099d063b342694e8 (diff) | |
download | edk2-897edd165c400b613b9d1c2acdea1ce600126cd1.zip edk2-897edd165c400b613b9d1c2acdea1ce600126cd1.tar.gz edk2-897edd165c400b613b9d1c2acdea1ce600126cd1.tar.bz2 |
MdeModulePkg: Add help for Reset menu item, and fix French strings
Fix the help string for the Reset menu item, and add it to the UI
instead of just repeating the main text. Fix the French translations.
Signed-off-by: Rebecca Cran <rebecca@bsdio.com>
-rw-r--r-- | MdeModulePkg/Application/UiApp/FrontPageCustomizedUiSupport.c | 2 | ||||
-rw-r--r-- | MdeModulePkg/Application/UiApp/FrontPageStrings.uni | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/MdeModulePkg/Application/UiApp/FrontPageCustomizedUiSupport.c b/MdeModulePkg/Application/UiApp/FrontPageCustomizedUiSupport.c index 9e905e5..24f9f1e 100644 --- a/MdeModulePkg/Application/UiApp/FrontPageCustomizedUiSupport.c +++ b/MdeModulePkg/Application/UiApp/FrontPageCustomizedUiSupport.c @@ -452,7 +452,7 @@ UiCreateResetMenu ( StartOpCodeHandle,
FRONT_PAGE_KEY_RESET,
STRING_TOKEN (STR_RESET_STRING),
- STRING_TOKEN (STR_RESET_STRING),
+ STRING_TOKEN (STR_RESET_STRING_HELP),
EFI_IFR_FLAG_CALLBACK,
0
);
diff --git a/MdeModulePkg/Application/UiApp/FrontPageStrings.uni b/MdeModulePkg/Application/UiApp/FrontPageStrings.uni index a0ab9ab..bd6e377 100644 --- a/MdeModulePkg/Application/UiApp/FrontPageStrings.uni +++ b/MdeModulePkg/Application/UiApp/FrontPageStrings.uni @@ -51,9 +51,9 @@ #string STR_EMPTY_STRING #language en-US ""
#language fr-FR ""
#string STR_RESET_STRING #language en-US "Reset"
- #language fr-FR "Reset"
-#string STR_RESET_STRING_HELP #language en-US "Reset the current setting."
- #language fr-FR "Reset the current setting."
+ #language fr-FR "Réinitialiser"
+#string STR_RESET_STRING_HELP #language en-US "Cold reset (reboots the computer)."
+ #language fr-FR "Réinitialisation à froid (redémarre l'ordinateur)."
#string STR_CUSTOMIZE_BANNER_LINE4_LEFT #language en-US ""
#language fr-FR ""
#string STR_CUSTOMIZE_BANNER_LINE4_RIGHT #language en-US ""
|