diff options
author | Norbert Preining <preining@logic.at> | 2014-01-14 05:15:23 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2014-01-14 05:15:23 +0000 |
commit | 5246edbdec2f76e72de771908d6c75131190432e (patch) | |
tree | a89da91c05940fda434a1eb4adc987f46e1fdb7d /Master | |
parent | fc11cfc9033a89888538c46f496698e5dbab3716 (diff) |
rewording of interface and messages of tlmgr gui
git-svn-id: svn://tug.org/texlive/trunk@32667 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/scripts/texlive/tlmgrgui.pl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/texlive/tlmgrgui.pl b/Master/texmf-dist/scripts/texlive/tlmgrgui.pl index 6a2ead7fbde..55a5b78deea 100644 --- a/Master/texmf-dist/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgrgui.pl @@ -168,7 +168,10 @@ sub guimain { build_initial_gui(); init_hooks(); - info(__("Loading local TeX Live database;\nthis may take some time, please be patient ...") . "\n"); + info(__("Loading local TeX Live database") . + "\n ($::maintree/$InfraLocation/$DatabaseName)\n" . + __("This may take some time, please be patient ...") . + "\n"); # call the init function from tlmgr.pl # with 0 as argument, so that it does not call die on errors. @@ -511,13 +514,13 @@ sub setup_menu_system { $tlpdb_location_string = __("multiple repositories"); } $menu_file->add('command', - -label => __("Load default repository:") . " $tlpdb_location_string", + -label => __("Load default (from tlpdb) repository:") . " $tlpdb_location_string", -command => sub { setup_location($tlpdb_location); }); if (defined($cmdline_location)) { $menu_file->add('command', -label => __("Load cmd line repository:") . " $cmdline_location", -command => sub { setup_location($cmdline_location); }); } - $menu_file->add('command', -label => __("Load default net repository:") . " $TeXLiveURL", + $menu_file->add('command', -label => __("Load net repository:") . " $TeXLiveURL", -command => sub { setup_location($TeXLiveURL); }); if ($mode_expert) { $menu_file->add('command', -label => __("Load other repository ..."), |