summaryrefslogtreecommitdiff
path: root/Master/tlpkg/installer/install-menu-perltk.pl
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2011-09-13 07:09:05 +0000
committerNorbert Preining <preining@logic.at>2011-09-13 07:09:05 +0000
commitf503033f36e49df5beb6e09aa7ca2cb6d6b31820 (patch)
tree813968d68882a75904132201095623c87299e16f /Master/tlpkg/installer/install-menu-perltk.pl
parent0fda2dfff9005e82adae39ed18801c1084470f18 (diff)
update strings to better fit and be the same
git-svn-id: svn://tug.org/texlive/trunk@23933 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/installer/install-menu-perltk.pl')
-rw-r--r--Master/tlpkg/installer/install-menu-perltk.pl8
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;