diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2008-08-02 09:36:22 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2008-08-02 09:36:22 +0000 |
commit | c44bed4f6fca084d9078e49132b9abdb0d9dd530 (patch) | |
tree | d40fc0cde11ba953b54dd2b89e680a421d5c1dc5 | |
parent | 32159ecba674d989d75757ec9b6b8472b96f2da0 (diff) |
Spaces in text.hinthome
git-svn-id: svn://tug.org/texlive/trunk@10006 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/installer/install-menu-perltk.pl | 4 |
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 24f347917fa..bb91120e489 100644 --- a/Master/tlpkg/installer/install-menu-perltk.pl +++ b/Master/tlpkg/installer/install-menu-perltk.pl @@ -129,7 +129,7 @@ my %text = ( title => 'TeX Live 2008 Installation', status => 'Status output', changevar => 'Change variable value', enterpath => 'Enter path for', - hinthome => ' (use ~ for HOME/USERPROFILE)', + hinthome => '(use ~ for HOME/USERPROFILE)', selectscheme => 'Select a Scheme', selectstdcol => 'Select the collections to be installed', selectall => 'Select All', @@ -411,7 +411,7 @@ sub menu_edit_vars_value { $sw->transient($mainwindow); $sw->grab(); my $val = $vars{$key}; - $sw->Label(-text => $text{'enterpath'} . " $key:" . $text{'hinthome'})->pack(-padx => "2m", -pady => "2m"); + $sw->Label(-text => $text{'enterpath'} . " $key: " . $text{'hinthome'})->pack(-padx => "2m", -pady => "2m"); my $entry = $sw->Entry(-textvariable => $val, -width => 60); $entry->pack(-padx => "2m", -pady => "2m"); my $f = $sw->Frame; |