summaryrefslogtreecommitdiffstats
path: root/perl-install/diskdrake
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
parentf6366923e6f5dadb5682a36c6f4139b9f045be92 (diff)
downloaddrakx-ce2b4d83c4c55e102ef5446995a346299e640302.tar
drakx-ce2b4d83c4c55e102ef5446995a346299e640302.tar.gz
drakx-ce2b4d83c4c55e102ef5446995a346299e640302.tar.bz2
drakx-ce2b4d83c4c55e102ef5446995a346299e640302.tar.xz
drakx-ce2b4d83c4c55e102ef5446995a346299e640302.zip
remove ending "!" from "Read carefully!"
Diffstat (limited to 'perl-install/diskdrake')
-rw-r--r--perl-install/diskdrake/hd_gtk.pm2
-rw-r--r--perl-install/diskdrake/interactive.pm6
2 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index 2e79cc473..dbccf5cdb 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -100,7 +100,7 @@ sub main {
$notebook_widget->signal_connect(realize => $update_all);
$w->sync;
$done_button->grab_focus;
- $in->ask_from_list_(N("Read carefully!"), N("Please make a backup of your data first"),
+ $in->ask_from_list_(N("Read carefully"), N("Please make a backup of your data first"),
[ N_("Exit"), N_("Continue") ], N_("Continue")) eq N_("Continue") or return
if $::isStandalone;
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