summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-perltk.pl
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2010-03-29 10:48:11 +0000
committerNorbert Preining <preining@logic.at>2010-03-29 10:48:11 +0000
commit6f35fc77f9a3976595098f4a55135df333e36058 (patch)
treec2f4d3083d95725b78429046e3f1a805d180d6f0 /Master/tlpkg/installer/install-menu-perltk.pl
parent5fd7b9b8c022129ab66ab38e630d8a1be47e911c (diff)
make "Installation process" translatable
git-svn-id: svn://tug.org/texlive/trunk@17607 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/install-menu-perltk.pl')
-rw-r--r--Master/tlpkg/installer/install-menu-perltk.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl
index f5b499dd7ba..47937cfe72d 100644
--- a/Master/tlpkg/installer/install-menu-perltk.pl
+++ b/Master/tlpkg/installer/install-menu-perltk.pl
@@ -352,11 +352,11 @@ sub run_menu_perltk {
sub installation_window {
# create a progress bar window
- $::sww = $mainwindow->Toplevel(-title => "installation process",
+ $::sww = $mainwindow->Toplevel(-title => __("Installation process"),
-width => 400);
$::sww->transient($mainwindow);
$::sww->grab();
- $::sww->Label(-text => "Installation process")->pack;
+ $::sww->Label(-text => __("Installation process"))->pack;
$::progressw = $::sww->Scrolled("ROText", -scrollbars => "e", -height => 16);
$::progressw->pack(-expand => 1, -fill => "both");
my $percent_done = 0;