summaryrefslogtreecommitdiff
path: root/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl')
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl9
1 files changed, 7 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
index 15ab1b4110b..0af65998565 100755
--- a/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
+++ b/Master/texmf/scripts/texlive/tlmgrgui/tlmgrgui-real.pl
@@ -121,6 +121,7 @@ $TRANS{'en'} = {
updatemaps => "Update font map database",
warningnonetupdate => "No updates found.\n\nYour installation is set up to look on the disk for updates.\n\nIf you want to install from the Internet for this one time only, click on the \"Change\" button above and select \"Default Net Location\" (or any other network location you know to be working).\n\nIf you want to change it permanently, go to the \"Configuration\" Tab and change the default installation source.",
pleaseclick => "Please click on an item on the left for details",
+ alluptodate => "Everything uptodate!",
};
@@ -596,8 +597,12 @@ sub create_update_list {
}
# issue a warning if no updates are available, the tlmediatlpdb is loaded
# and is not from the net
- if (($#ret < 0) && ($tlmediasrc->media ne "NET")) {
- set_text_win($update_win, ___"warningnonetupdate");
+ if ($#ret < 0) {
+ if ($tlmediasrc->media ne "NET") {
+ set_text_win($update_win, ___"warningnonetupdate");
+ } else {
+ set_text_win($ipdate_win, ___"alluptodate");
+ }
}
} else {
@ret = ();