package install_steps_stdio; # $Id: install_steps_stdio.pm,v 1.1.1.1 2003/06/06 09:53:06 rider Exp $ @ISA = qw(install_steps_interactive interactive_stdio); use common; use interactive_stdio; use install_steps_interactive; use lang; sub new($$) { my ($type, $o) = @_; (bless {}, ref $type || $type)->SUPER::new($o); } sub enteringStep { my ($o, $step) = @_; print _("Entering step `%s'\n", translate($o->{steps}{$step}{text})); $o->SUPER::enteringStep($step); } sub leavingStep { my ($o, $step) = @_; $o->SUPER::leavingStep($step); print "--------\n"; } sub selectLanguage { my ($o, $first_time) = @_; $o->SUPER::selectLanguage($first_time); lang::load_console_font($o->{lang}); } 1;