summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2000-09-12 17:34:11 +0000
committerFrancois Pons <fpons@mandriva.com>2000-09-12 17:34:11 +0000
commitcfd3a63ff8004529be3ac548290d216cb4fee460 (patch)
tree56a74925d6d95f02bda5f1fb5763c7f4b790d393 /perl-install/install_steps_interactive.pm
parent316bf13b64e331d42583e3e4cd80f96e29f34a0a (diff)
downloaddrakx-backup-do-not-use-cfd3a63ff8004529be3ac548290d216cb4fee460.tar
drakx-backup-do-not-use-cfd3a63ff8004529be3ac548290d216cb4fee460.tar.gz
drakx-backup-do-not-use-cfd3a63ff8004529be3ac548290d216cb4fee460.tar.bz2
drakx-backup-do-not-use-cfd3a63ff8004529be3ac548290d216cb4fee460.tar.xz
drakx-backup-do-not-use-cfd3a63ff8004529be3ac548290d216cb4fee460.zip
*** empty log message ***
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 995ba0dae..7954d31cf 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -578,10 +578,10 @@ sub configurePrinter {
#- figure out what printing system to use, currently are suported cups and lpr,
#- in case this has not be detected above.
- $::beginner and $o->{printer}{mode} ||= 'cups';
+ $::beginner and $o->{printer}{mode} ||= 'CUPS';
if ($::expert || !$o->{printer}{mode}) {
- $o->{printer}{mode} = $o->ask_from_list_([''], _("What printing system do you want to use?"),
- [ 'cups', 'lpr', __("Cancel") ],
+ $o->{printer}{mode} = $o->ask_from_list_([''], _("Which printing system do you want to use?"),
+ [ 'CUPS', 'lpr', __("Cancel") ],
);
$o->{printer}{want} = $o->{printer}{mode} ne 'Cancel';
$o->{printer}{want} or $o->{printer}{mode} = undef, return;