diff options
Diffstat (limited to 'Master/tlpkg/installer/install-menu-perltk.pl')
-rw-r--r-- | Master/tlpkg/installer/install-menu-perltk.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/installer/install-menu-perltk.pl b/Master/tlpkg/installer/install-menu-perltk.pl index d76e05f719b..441e34f31c7 100644 --- a/Master/tlpkg/installer/install-menu-perltk.pl +++ b/Master/tlpkg/installer/install-menu-perltk.pl @@ -247,18 +247,18 @@ sub run_menu_perltk { if ($a eq 'local_compressed' || $a eq 'local_uncompressed') { push @loclst, " $b"; } elsif ($a eq 'NET') { - push @netlst, " cmd line repository: $b"; + push @netlst, " " . __("Command line repository") . ": $b"; } else { tlwarn("Unknown media $l\n"); } } if ($#loclst >= 0) { - push @mirror_list, "LOCAL REPOSITORIES"; + push @mirror_list, __("LOCAL REPOSITORIES"); push @mirror_list, @loclst; } } - push @mirror_list, "NETWORK REPOSITORIES"; - push @mirror_list, " Default repository: http://mirror.ctan.org"; + push @mirror_list, __("NETWORK REPOSITORIES"); + push @mirror_list, " " . __("Default remote repository") . ": http://mirror.ctan.org"; push @mirror_list, @netlst; push @mirror_list, TeXLive::TLUtils::create_mirror_list(); my $mirror_entry; |