diff options
author | Ahmad Samir <ahmad@mageia.org> | 2011-04-04 20:17:01 +0000 |
---|---|---|
committer | Ahmad Samir <ahmad@mageia.org> | 2011-04-04 20:17:01 +0000 |
commit | 1bfb2b8300d315f5b5e2986a39d91881d00f6a72 (patch) | |
tree | 922ae26a05dd48b8c74578fb8abbd4abef06e404 /perl-install/diskdrake | |
parent | b4ab8f2a2d41706f36117e3a1fb48f9fc6197ea1 (diff) | |
download | drakx-1bfb2b8300d315f5b5e2986a39d91881d00f6a72.tar drakx-1bfb2b8300d315f5b5e2986a39d91881d00f6a72.tar.gz drakx-1bfb2b8300d315f5b5e2986a39d91881d00f6a72.tar.bz2 drakx-1bfb2b8300d315f5b5e2986a39d91881d00f6a72.tar.xz drakx-1bfb2b8300d315f5b5e2986a39d91881d00f6a72.zip |
- perl -pi -e 's!"Check bad blocks\?"!"Check for bad blocks\?"!'
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r-- | perl-install/diskdrake/interactive.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm index 3565c14d0..4d5096e1d 100644 --- a/perl-install/diskdrake/interactive.pm +++ b/perl-install/diskdrake/interactive.pm @@ -566,7 +566,7 @@ First remove a primary partition and create an extended partition.")); fs::format::check_package_is_installed_format($in->do_pkgs, $p->{fs_type}) or log::l("Missing package"); } if ($::expert && !member($p->{fs_type}, 'reiserfs', 'reiser4', 'xfs', 'hfs', 'ntfs', 'ntfs-3g')) { - $p->{toFormatCheck} = $in->ask_yesorno(N("Confirmation"), N("Check bad blocks?")); + $p->{toFormatCheck} = $in->ask_yesorno(N("Confirmation"), N("Check for bad blocks?")); } $p->{isFormatted} = 0; #- force format; # Wait for the newly created device to appear before formatting it @@ -1282,7 +1282,7 @@ sub format_ { fs::format::check_package_is_installed_format($in->do_pkgs, $part->{fs_type}) or return; } if ($::expert && !member($part->{fs_type}, 'reiserfs', 'reiser4', 'xfs', 'hfs', 'ntfs', 'ntfs-3g')) { - $part->{toFormatCheck} = $in->ask_yesorno(N("Confirmation"), N("Check bad blocks?")); + $part->{toFormatCheck} = $in->ask_yesorno(N("Confirmation"), N("Check for bad blocks?")); } $part->{isFormatted} = 0; #- force format; my ($_w, $wait_message) = $in->wait_message_with_progress_bar; |