diff options
author | Karl Berry <karl@freefriends.org> | 2021-05-20 21:12:36 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-05-20 21:12:36 +0000 |
commit | 374b167195586cfdf8ed186b06e043305deebd1c (patch) | |
tree | 1f92487c4a66f2aa0de30527e34d41b607670df0 | |
parent | 60ef7d3679665758cfa8119861cff974a77ff081 (diff) |
no translations -> debug msg
git-svn-id: svn://tug.org/texlive/trunk@59285 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/TeXLive/trans.pl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Master/tlpkg/TeXLive/trans.pl b/Master/tlpkg/TeXLive/trans.pl index 4a8054e87c6..8eeb4816a97 100644 --- a/Master/tlpkg/TeXLive/trans.pl +++ b/Master/tlpkg/TeXLive/trans.pl @@ -37,7 +37,7 @@ if (defined($::opt_lang)) { $::lang = $lang; $::area = uc($area); } else { - debug("Didn't get any usuful code from reg_country.\n"); + debug("didn't get any useful code from reg_country\n"); } } else { # we load POSIX and locale stuff @@ -127,10 +127,11 @@ sub load_translations() { } } if (!$found) { - tlwarn ("\n Sorry, no translations available for $code (nor $::lang); falling back to English. - Make sure that you have the package \"texlive-msg-translations\" installed. - (If you'd like to help translate the installer's messages, please see - https://tug.org/texlive/doc.html#install-tl-xlate for information.)\n\n"); + debug ("no translations available for $code (nor $::lang); falling back to English\n"); +# tlwarn ("\n Sorry, no translations available for $code (nor $::lang); falling back to English. +# Make sure that you have the package \"texlive-msg-translations\" installed. +# (If you'd like to help translate the installer's messages, please see +# https://tug.org/texlive/doc.html#install-tl-xlate for information.)\n\n"); } else { # merge the translated strings into the text string open(LANG, "<$::installerdir/tlpkg/translations/$::lang.po"); |