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 f8900ad2751..a3209445d57 100644
--- a/Master/tlpkg/installer/install-menu-perltk.pl
+++ b/Master/tlpkg/installer/install-menu-perltk.pl
@@ -110,7 +110,7 @@ my %text = ( title => 'TeX Live 2008 Installation',
cancel => 'Cancel',
status => 'Status output',
changevar => 'Change variable value',
- enterpath => 'Enter path for ',
+ enterpath => 'Enter path for',
selectscheme => 'Select Scheme',
selectstdcol => 'Select the collections to be installed',
selectall => 'Select All',
@@ -335,7 +335,7 @@ sub menu_edit_vars_value {
my $key = shift;
my $sw = $mw->Toplevel(-title => $text{'changevar'});
my $val = $vars{$key};
- $sw->Label(-text => $text{'enterpath'} . "$key:")->pack;
+ $sw->Label(-text => $text{'enterpath'} . " $key:")->pack;
my $entry = $sw->Entry(-textvariable => $val, -width => 60);
$entry->pack;
my $f = $sw->Frame;