diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-09 21:00:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-09 21:00:03 +0000 |
commit | e3b29076da96ad0fc42f29909648ee2582323e67 (patch) | |
tree | c2d779a82ccd0902832126912d2dfa4f7b69839c | |
parent | 8213be93bcfded0bfc338c82728df2ae29aaa40d (diff) | |
download | drakx-e3b29076da96ad0fc42f29909648ee2582323e67.tar drakx-e3b29076da96ad0fc42f29909648ee2582323e67.tar.gz drakx-e3b29076da96ad0fc42f29909648ee2582323e67.tar.bz2 drakx-e3b29076da96ad0fc42f29909648ee2582323e67.tar.xz drakx-e3b29076da96ad0fc42f29909648ee2582323e67.zip |
do translate "System installation" and "System configuration" in steps window
-rw-r--r-- | perl-install/install_gtk.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index cad0c0348..d5b2b7784 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -101,11 +101,11 @@ sub create_steps_window { $w->{rwindow}->set_name('Steps'); $w->{rwindow}->set_title('skip'); - my @l = ('', '', N_("System installation")); + my @l = ('', '', N("System installation")); my $s; foreach (grep { !eval $o->{steps}{$_}{hidden} } @{$o->{orderedSteps}}) { if ($_ eq 'setRootPassword') { - push @l, $s, N_("System configuration"); + push @l, $s, N("System configuration"); $s = ''; } $s .= ($o->{steps}{$_}{done} ? '+' : '-') . ' ' . translate($o->{steps}{$_}{text}) . "\n"; |