summaryrefslogtreecommitdiffstats
path: root/perl-install/install/gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-07-29 13:06:36 +0000
committerThierry Vignaud <tv@mandriva.org>2008-07-29 13:06:36 +0000
commit21b4a160d397eaba627d58f3e511169d953f1d12 (patch)
tree633625f98ee522538ec75f9980db10135a820e22 /perl-install/install/gtk.pm
parentea5bc17bc526f94904e37849e1c82c98b9026b6e (diff)
downloaddrakx-backup-do-not-use-21b4a160d397eaba627d58f3e511169d953f1d12.tar
drakx-backup-do-not-use-21b4a160d397eaba627d58f3e511169d953f1d12.tar.gz
drakx-backup-do-not-use-21b4a160d397eaba627d58f3e511169d953f1d12.tar.bz2
drakx-backup-do-not-use-21b4a160d397eaba627d58f3e511169d953f1d12.tar.xz
drakx-backup-do-not-use-21b4a160d397eaba627d58f3e511169d953f1d12.zip
(create_steps_window) simplify after latest commit
Diffstat (limited to 'perl-install/install/gtk.pm')
-rw-r--r--perl-install/install/gtk.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm
index cdbd9062c..3d20ec47c 100644
--- a/perl-install/install/gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -128,10 +128,9 @@ sub create_steps_window {
}
my $img = gtknew('Image', file => 'steps_off.png');
$steps{steps}{$_}{img} = $img;
- $steps{steps}{$_}{raw_text} = translate($o->{steps}{$_}{text});
push @l, gtknew('HBox', spacing => 7, children => [
1, '',
- 0, $steps{steps}{$_}{text} = gtknew('Label', text => $steps{steps}{$_}{raw_text}),
+ 0, $steps{steps}{$_}{text} = gtknew('Label', text => translate($o->{steps}{$_}{text})),
0, $img,
]);
}