summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake/interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-09-11 17:13:33 +0000
committerThierry Vignaud <tv@mandriva.org>2008-09-11 17:13:33 +0000
commitce2b4d83c4c55e102ef5446995a346299e640302 (patch)
tree06898dbc1930590074bbd5cb74adf24231ed191f /perl-install/diskdrake/interactive.pm
parentf6366923e6f5dadb5682a36c6f4139b9f045be92 (diff)
downloaddrakx-backup-do-not-use-ce2b4d83c4c55e102ef5446995a346299e640302.tar
drakx-backup-do-not-use-ce2b4d83c4c55e102ef5446995a346299e640302.tar.gz
drakx-backup-do-not-use-ce2b4d83c4c55e102ef5446995a346299e640302.tar.bz2
drakx-backup-do-not-use-ce2b4d83c4c55e102ef5446995a346299e640302.tar.xz
drakx-backup-do-not-use-ce2b4d83c4c55e102ef5446995a346299e640302.zip
remove ending "!" from "Read carefully!"
Diffstat (limited to 'perl-install/diskdrake/interactive.pm')
-rw-r--r--perl-install/diskdrake/interactive.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/diskdrake/interactive.pm b/perl-install/diskdrake/interactive.pm
index 7560f9dc6..468e14b7a 100644
--- a/perl-install/diskdrake/interactive.pm
+++ b/perl-install/diskdrake/interactive.pm
@@ -1007,7 +1007,7 @@ sub ask_alldatamaybelost {
#- here we may have a non-formatted or a formatted partition
#- -> doing as if it was formatted
- $in->ask_okcancel(N("Read carefully!"),
+ $in->ask_okcancel(N("Read carefully"),
[ N("Be careful: this operation is dangerous."), sprintf(translate($msg), $part->{device}) ], 1);
}
sub ask_alldatawillbelost {
@@ -1017,7 +1017,7 @@ sub ask_alldatawillbelost {
#- here we may have a non-formatted or a formatted partition
#- -> doing as if it was formatted
- $in->ask_okcancel(N("Read carefully!"), sprintf(translate($msg), $part->{device}), 1);
+ $in->ask_okcancel(N("Read carefully"), sprintf(translate($msg), $part->{device}), 1);
}
sub partitions_suggestions {
@@ -1070,7 +1070,7 @@ sub write_partitions {
$hd->{isDirty} or return 1;
isLVM($hd) and return 1;
- $in->ask_okcancel(N("Read carefully!"), N("Partition table of drive %s is going to be written to disk!", $hd->{device}), 1) or return;
+ $in->ask_okcancel(N("Read carefully"), N("Partition table of drive %s is going to be written to disk!", $hd->{device}), 1) or return;
partition_table::write($hd) if !$::testing;
check_rebootNeeded($in, $hd) if !$b_skip_check_rebootNeeded;
# fix resizing's failures due to udev's race when writing the partition table