diff options
author | Francois Pons <fpons@mandriva.com> | 1999-11-08 13:47:48 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 1999-11-08 13:47:48 +0000 |
commit | 289db2a20031f221bab63bbbfe40be88da1620ff (patch) | |
tree | c730ff428ff75265cab1e74ece3df67c6ae68a87 /perl-install/install_steps_interactive.pm | |
parent | 477f9e81cb3aa78829210942e8185e8146c6cd5e (diff) | |
download | drakx-289db2a20031f221bab63bbbfe40be88da1620ff.tar drakx-289db2a20031f221bab63bbbfe40be88da1620ff.tar.gz drakx-289db2a20031f221bab63bbbfe40be88da1620ff.tar.bz2 drakx-289db2a20031f221bab63bbbfe40be88da1620ff.tar.xz drakx-289db2a20031f221bab63bbbfe40be88da1620ff.zip |
*** empty log message ***
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index d1c5338b4..1e9a667b3 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -546,7 +546,7 @@ _("Color depth options") => { val => \$o->{printer}{BITSPERPIXEL}, type => 'list install_steps::printerConfig($o); $o->{printer}{complete} = 0; - $action = ${{reverse %action}}{$o->ask_from_list('', _("Do you want to test the printer?"), + $action = ${{reverse %action}}{$o->ask_from_list('', _("Do you want to test printing?"), [ map { $action{$_} } @action ], $action{'done'})}; my $pidlpd; @@ -567,7 +567,7 @@ _("Color depth options") => { val => \$o->{printer}{BITSPERPIXEL}, type => 'list run_program::rooted($o->{prefix}, "lpr", "-P$o->{printer}{QUEUE}", $_) foreach @testpages; - $action = $o->ask_yesorno('', _("Is it correct?"), 1) ? 'done' : 'change'; + $action = $o->ask_yesorno('', _("Is this correct?"), 1) ? 'done' : 'change'; } } while ($action ne 'done'); $o->{printer}{complete} = 1; |