diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-07-03 16:48:37 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-07-03 16:48:37 +0200 |
commit | ba33b6af5810c916e2bd30677b131906bc0e2589 (patch) | |
tree | 66562de15367c745ae5bfea3d1c89422166bf9e7 | |
parent | 80e36752b9b7201c1bcaaff6e334a81914a652de (diff) | |
download | drakx-ba33b6af5810c916e2bd30677b131906bc0e2589.tar drakx-ba33b6af5810c916e2bd30677b131906bc0e2589.tar.gz drakx-ba33b6af5810c916e2bd30677b131906bc0e2589.tar.bz2 drakx-ba33b6af5810c916e2bd30677b131906bc0e2589.tar.xz drakx-ba33b6af5810c916e2bd30677b131906bc0e2589.zip |
make it consitent
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 9ffac9448..85d454f88 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -392,7 +392,7 @@ sub setupBootloader__general { my (@boot_devices, %boot_devices); if (is_uefi()) { @boot_devices = 'ESP'; - %boot_devices = (ESP => N("EFI System partition")); + %boot_devices = (ESP => N("EFI System Partition")); } else { foreach (bootloader::allowed_boot_parts($b, $all_hds)) { my $dev = "/dev/$_->{device}"; |