diff options
author | Pablo Saratxaga <pablo@mandriva.com> | 1999-08-28 23:17:47 +0000 |
---|---|---|
committer | Pablo Saratxaga <pablo@mandriva.com> | 1999-08-28 23:17:47 +0000 |
commit | b3ffb3107e701cec95b5eca11f18bea3291f626f (patch) | |
tree | 05b9b49968d17ee81a0e01922bdb30d0a5e964e2 /perl-install/install_steps.pm | |
parent | 10eb8eaf9bc1aefd90eef0330fc1aed7751427b7 (diff) | |
download | drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.tar drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.tar.gz drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.tar.bz2 drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.tar.xz drakx-b3ffb3107e701cec95b5eca11f18bea3291f626f.zip |
various english spelling errors corrected (ispell panoramix.pot :) )
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 033d92f8e..87a43f815 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -72,7 +72,7 @@ sub leavingStep($$) { while (my $f = shift @{$o->{steps}{$step}{toBeDone} || []}) { eval { &$f() }; $o->ask_warn(_("Error"), [ -_("An error occured, i don't know how to handle it nicely, +_("An error occurred, i don't know how to handle it nicely, so continue at your own risk :("), $@ ]) if $@; } } @@ -107,7 +107,7 @@ sub choosePartitionsToFormat($$) { foreach (@$fstab) { $_->{toFormat} = ($_->{mntpoint} && isExt2($_) || isSwap($_)) && - ($_->{notFormatted} || $o->{default}{partitionning}{autoformat}); + ($_->{notFormatted} || $o->{default}{partitioning}{autoformat}); } } |