diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-11 11:22:32 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-11 11:22:32 +0100 |
commit | 68df07e33ff019b8a812f4cc5c455b1fc0592278 (patch) | |
tree | 9c25731fe3a4ebfbda8d26bb39140f4e0cd006ff | |
parent | da75db97ac25ff64a03d38304de9c9706e093c10 (diff) | |
download | drakx-68df07e33ff019b8a812f4cc5c455b1fc0592278.tar drakx-68df07e33ff019b8a812f4cc5c455b1fc0592278.tar.gz drakx-68df07e33ff019b8a812f4cc5c455b1fc0592278.tar.bz2 drakx-68df07e33ff019b8a812f4cc5c455b1fc0592278.tar.xz drakx-68df07e33ff019b8a812f4cc5c455b1fc0592278.zip |
help keeping translations
-rw-r--r-- | perl-install/fs/any.pm | 2 | ||||
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm index a5c4c9807..68eb40aca 100644 --- a/perl-install/fs/any.pm +++ b/perl-install/fs/any.pm @@ -72,7 +72,7 @@ sub check_hds_boot_and_root { } if (arch() =~ /ia64|x86_64/ && (-e "/sys/firmmware/efi") && !fs::get::has_mntpoint("/boot/EFI", $all_hds)) { - die N("You must have a FAT partition mounted in /boot/EFI"); + die N("You must have a FAT partition mounted in %s", "/boot/EFI"); } } diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index c4449db7e..209417235 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -65,7 +65,7 @@ Then choose action ``Mount point'' and set it to `/'"), 1) or return; $ok &&= $in->ask_okcancel('', N("You do not have a swap partition.\n\nContinue anyway?")); } if (arch() =~ /ia64|x86_64/ && (-e "/sys/firmware/efi") && !fs::get::has_mntpoint("/boot/EFI", $all_hds)) { - $in->ask_warn('', N("You must have a FAT partition mounted in /boot/EFI")); + $in->ask_warn('', N("You must have a FAT partition mounted in %s", "/boot/EFI")); $ok = ''; } } until $ok; |