summaryrefslogtreecommitdiffstats
path: root/perl-install/install_gtk.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-02-09 21:00:03 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-02-09 21:00:03 +0000
commite3b29076da96ad0fc42f29909648ee2582323e67 (patch)
treec2d779a82ccd0902832126912d2dfa4f7b69839c /perl-install/install_gtk.pm
parent8213be93bcfded0bfc338c82728df2ae29aaa40d (diff)
downloaddrakx-backup-do-not-use-e3b29076da96ad0fc42f29909648ee2582323e67.tar
drakx-backup-do-not-use-e3b29076da96ad0fc42f29909648ee2582323e67.tar.gz
drakx-backup-do-not-use-e3b29076da96ad0fc42f29909648ee2582323e67.tar.bz2
drakx-backup-do-not-use-e3b29076da96ad0fc42f29909648ee2582323e67.tar.xz
drakx-backup-do-not-use-e3b29076da96ad0fc42f29909648ee2582323e67.zip
do translate "System installation" and "System configuration" in steps window
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r--perl-install/install_gtk.pm4
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";