diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-07-08 08:51:43 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-07-08 08:51:43 +0000 |
commit | 735d1068195f791ab2c33442689644c9f8d520ae (patch) | |
tree | 64a6ce21d4b3b162384ab441ca30fff8cf387c00 /Master/tlpkg | |
parent | 6293910a4ade9d59659790fde4ce15083173ab10 (diff) |
Fix a few strings.
git-svn-id: svn://tug.org/texlive/trunk@19288 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/installer/install-menu-perltk.pl | 4 | ||||
-rw-r--r-- | Master/tlpkg/installer/install-menu-wizard.pl | 2 |
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"); |