summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/any.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm
index c3ab97eb7..93d5eadd6 100644
--- a/perl-install/any.pm
+++ b/perl-install/any.pm
@@ -506,7 +506,7 @@ sub setupBootloader__refind {
[
{ text => N("Install or update rEFInd in the EFI system partition"),
val => \$update_esp, type => 'bool', disabled => sub { !$already_installed } },
- { text => N("Install in /EFI/BOOT (workaround for some BIOSs)"),
+ { text => N("Install in /EFI/BOOT (removable device or workaround for some BIOSs)"),
val => \$as_default, type => 'bool', disabled => sub { !$update_esp } },
]
) or return 0;
@@ -730,7 +730,7 @@ sub setupBootloader__grub2 {
help => N("If grub2 takes too long to install, you can use this option to skip detecting other OSes and make it fast"),
},
if_(is_uefi(),
- { text => N("Install in /EFI/BOOT (workaround for some BIOSs)"),
+ { text => N("Install in /EFI/BOOT (removable device or workaround for some BIOSs)"),
val => \$b->{removable}, type => 'bool' },
),
]);