summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
diff options
context:
space:
mode:
authorAhmad Samir <ahmad@mageia.org>2011-04-04 20:17:01 +0000
committerAhmad Samir <ahmad@mageia.org>2011-04-04 20:17:01 +0000
commitbd6c0731e086a29e454bc028ceb4687a892b9ac4 (patch)
tree922ae26a05dd48b8c74578fb8abbd4abef06e404 /perl-install/diskdrake
parente0776249a4ad6c05b3b0a9011b24c2507f0b6b9e (diff)
downloaddrakx-backup-do-not-use-bd6c0731e086a29e454bc028ceb4687a892b9ac4.tar
drakx-backup-do-not-use-bd6c0731e086a29e454bc028ceb4687a892b9ac4.tar.gz
drakx-backup-do-not-use-bd6c0731e086a29e454bc028ceb4687a892b9ac4.tar.bz2
drakx-backup-do-not-use-bd6c0731e086a29e454bc028ceb4687a892b9ac4.tar.xz
drakx-backup-do-not-use-bd6c0731e086a29e454bc028ceb4687a892b9ac4.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.pm4
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;