diff options
author | Norbert Preining <preining@logic.at> | 2011-09-13 07:09:05 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2011-09-13 07:09:05 +0000 |
commit | f503033f36e49df5beb6e09aa7ca2cb6d6b31820 (patch) | |
tree | 813968d68882a75904132201095623c87299e16f /Master | |
parent | 0fda2dfff9005e82adae39ed18801c1084470f18 (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')
-rw-r--r-- | Master/tlpkg/installer/install-menu-perltk.pl | 8 | ||||
-rw-r--r-- | Master/tlpkg/installer/install-menu-wizard.pl | 13 |
2 files changed, 11 insertions, 10 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; diff --git a/Master/tlpkg/installer/install-menu-wizard.pl b/Master/tlpkg/installer/install-menu-wizard.pl index d5b8fe393de..6109ed27fa1 100644 --- a/Master/tlpkg/installer/install-menu-wizard.pl +++ b/Master/tlpkg/installer/install-menu-wizard.pl @@ -235,29 +235,30 @@ sub ask_mirror { if ($a eq 'local_compressed' || $a eq 'local_uncompressed') { push @loclst, " $b"; } elsif ($a eq 'NET') { - push @netlst, " cmd line repository: $b"; + #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; - $fmain->Label(-text => "Select repository for installation:")->place( + $fmain->Label(-text => __("Select repository") . ":")->place( -x => 0, -y => 0); $fmain->Label(-text => __("Mirror:"))->place(-x => 0, -y => 50); $fmain->BrowseEntry(-state => 'readonly', -listheight => 12, - -listwidth => 400, + -listwidth => 600, -width => 35, -autolistwidth => 1, -choices => \@mirror_list, |