summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;