summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/texmf/scripts/texlive/tlmgrgui.pl2
-rw-r--r--Master/tlpkg/installer/install-menu-perltk.pl2
-rwxr-xr-xMaster/tlpkg/installer/install-menu-text.pl2
3 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl
index d5a427f163b..f245721cc61 100644
--- a/Master/texmf/scripts/texlive/tlmgrgui.pl
+++ b/Master/texmf/scripts/texlive/tlmgrgui.pl
@@ -1638,7 +1638,7 @@ sub menu_multi_location {
if ($foo{'status'}) {
if (defined($new_repos{$foo{'tag'}})) {
$sw->Dialog(-title => __("Warning"),
- -text => __("Multiple defined tags (first column) are not possible, please fix it."), -buttons => [ __("Ok") ])->Show;
+ -text => __("Repository tag name already used: %s", $foo{'tag'}), -buttons => [ __("Ok") ])->Show;
return;
}
$new_repos{$foo{'tag'}} = $foo{'val'};
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl
index 2cef2aec7e0..c3f7cae702d 100644
--- a/Master/tlpkg/installer/install-menu-perltk.pl
+++ b/Master/tlpkg/installer/install-menu-perltk.pl
@@ -497,7 +497,7 @@ Please select a different mirror.', $TeXLive::TLConfig::ReleaseYear, $texlive_re
}
if ($media ne 'NET') {
$row++;
- $fr->Label(-text => __('After install, use tlnet on CTAN for package updates'), -anchor => 'w')->grid(-row => $row, -column => 1, -sticky => 'w');
+ $fr->Label(-text => __('After installation, get package updates from CTAN'), -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 68a7947526f..53604790a00 100755
--- a/Master/tlpkg/installer/install-menu-text.pl
+++ b/Master/tlpkg/installer/install-menu-text.pl
@@ -895,7 +895,7 @@ EOF
print " <W> install TeXworks front end: $b_addoneditor\n";
}
if ($media ne "NET") {
- print " <Y> after install, use tlnet on CTAN for pkg updates: $b_adjustrepo\n";
+ print " <Y> after installation, get package updates from CTAN: $b_adjustrepo\n";
}
other_options qw(R Q diskspace);
my $answer = prompt 'Enter command';