diff options
-rw-r--r-- | Master/texmf/scripts/texlive/tlmgrgui.pl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui.pl b/Master/texmf/scripts/texlive/tlmgrgui.pl index b6ea4e8771a..20daa064c2c 100644 --- a/Master/texmf/scripts/texlive/tlmgrgui.pl +++ b/Master/texmf/scripts/texlive/tlmgrgui.pl @@ -418,7 +418,7 @@ sub setup_menu_system { $menu_options = $menu->Menu(); $menu_actions = $menu->Menu(); $menu_help = $menu->Menu(); - $menu->add('cascade', -label => __("File"), -menu => $menu_file); + $menu->add('cascade', -label => "tlmgr", -menu => $menu_file); $menu->add('cascade', -label => __("Options"), -menu => $menu_options); $menu->add('cascade', -label => __("Actions"), -menu => $menu_actions); # on win32 people expect to have the Help button on the right side @@ -1634,6 +1634,12 @@ sub update_list_remote { push @critical_updates, $p; } } + # + # TODO TODO + # + # add to the warning text: NN further updates are available after updating + # telxive.infra.!!!! + # if (@critical_updates) { my $sw = $mw->DialogBox(-title => __("Warning"), -buttons => [ __("Ok") ]); my $t = __("Updates for the tlmgr are present.\nInstallation and upgrades won't work without being forced.\nPlease select \"Update all installed\" button below.\nThe program will terminate after the update.\nThen you can restart the program for further updates."); |