diff options
author | Norbert Preining <preining@logic.at> | 2009-09-04 08:15:21 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-09-04 08:15:21 +0000 |
commit | 11920b8007313560b2d35f9fa201a9252a46f36f (patch) | |
tree | f7334bf4c8b3e98377a27bbdd68b239c4172c70e | |
parent | cea16eaa643134f38aca8bbb1652dee165241529 (diff) |
make strings different so that the same strings is reused in wizard and perltk
git-svn-id: svn://tug.org/texlive/trunk@15082 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/installer/install-menu-perltk.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl index ef7ffa64b26..9e084c06063 100644 --- a/Master/tlpkg/installer/install-menu-perltk.pl +++ b/Master/tlpkg/installer/install-menu-perltk.pl @@ -775,7 +775,7 @@ sub menu_set_binbutton_text { } sub menu_set_collections_text { - menu_set_text($collectionstext, __("%s collections out of %s (disk space required: %s MB)", $vars{'n_collections_selected'}, $vars{'n_collections_available'}, $vars{'total_size'})); + 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 { |