summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/tlpkg/installer/install-menu-perltk.pl4
-rw-r--r--Master/tlpkg/installer/install-menu-wizard.pl2
2 files changed, 4 insertions, 2 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl
index bc2f9d586e3..5ff59b27a47 100644
--- a/Master/tlpkg/installer/install-menu-perltk.pl
+++ b/Master/tlpkg/installer/install-menu-perltk.pl
@@ -780,7 +780,9 @@ sub menu_set_binbutton_text {
}
sub menu_set_collections_text {
- menu_set_text($collectionstext, __("%s collections out of %s ", $vars{'n_collections_selected'}, $vars{'n_collections_available'}) . "(" . __("disk space required") . ": $vars{'total_size'} MB)");
+ menu_set_text($collectionstext, __("%s collections out of %s",
+ $vars{'n_collections_selected'}, $vars{'n_collections_available'})
+ . " (" . __("disk space required:") . " $vars{'total_size'} MB)");
}
sub menu_set_pathes_text {
diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl
index 5fb7cfdb09b..c65adcb778b 100644
--- a/Master/tlpkg/installer/install-menu-wizard.pl
+++ b/Master/tlpkg/installer/install-menu-wizard.pl
@@ -245,7 +245,7 @@ sub ask_path {
#$cb->place(-x => $INNERWIDTH, -y => $INNERHEIGHT, -anchor => "se");
- $fmain->Label(-text => __('disk space required') . ": $vars{'total_size'} MB",
+ $fmain->Label(-text => __('disk space required:') . " $vars{'total_size'} MB",
-justify => "left"
)->place(-x => 0, -y => $fmain->height, -anchor => "sw");