diff options
-rw-r--r-- | Master/tlpkg/installer/install-menu-perltk.pl | 2 | ||||
-rwxr-xr-x | Master/tlpkg/installer/install-menu-text.pl | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl index f90746a80b4..ec23c49bc7d 100644 --- a/Master/tlpkg/installer/install-menu-perltk.pl +++ b/Master/tlpkg/installer/install-menu-perltk.pl @@ -493,7 +493,7 @@ Please select a different mirror.', $TeXLive::TLConfig::ReleaseYear, $texlive_re } if ($media ne 'NET') { $row++; - $fr->Label(-text => __('After install, use CTAN for package updates'), -anchor => 'w')->grid(-row => $row, -column => 1, -sticky => 'w'); + $fr->Label(-text => __('After install, use tlnet on CTAN for package updates'), -anchor => 'w')->grid(-row => $row, -column => 1, -sticky => 'w'); $fr->Label(-anchor => 'w', -textvariable => \$adjustrepoyesno)->grid(-row => $row, -column => 2, -padx => "2m"); $adjustrepo_toggle_button = $fr->Button(-text => __("Toggle"), -command => sub { toggle_and_set_opt_variable(\$vars{'option_adjustrepo'}, \$adjustrepoyesno); })->grid(-row => $row, -column => 3, -sticky => "ew", -padx => "2m"); } diff --git a/Master/tlpkg/installer/install-menu-text.pl b/Master/tlpkg/installer/install-menu-text.pl index 440caad6aa3..580e2dcd0e3 100755 --- a/Master/tlpkg/installer/install-menu-text.pl +++ b/Master/tlpkg/installer/install-menu-text.pl @@ -896,7 +896,7 @@ EOF print " <W> install TeXworks front end: $b_addoneditor\n"; } if ($media ne "NET") { - print " <Y> after install, use CTAN for pkg updates: $b_adjustrepo\n"; + print " <Y> after install, use tlnet on CTAN for pkg updates: $b_adjustrepo\n"; } other_options qw(R Q diskspace); my $answer = prompt 'Enter command'; @@ -1173,7 +1173,8 @@ EOF } if ($media ne 'NET') { - print " $b_adjustrepo after installation, use CTAN for package updates\n"; + print " $b_adjustrepo after install, use tlnet on CTAN " + . "for package updates\n"; } if ($vars{'portable'}) { |