X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=python%2Flangdefs.py;h=d3d6c07813083a7f224e3f9db42662f2487c704e;hb=a3d7090e7853579630b13f37ce8f962d3a30024e;hp=983fe3bb300a8050395cf634c07dabb128d4fa5e;hpb=3c6c00c08ff31f57ec8d88450b4e4e7917bc4f3e;p=lilypond.git diff --git a/python/langdefs.py b/python/langdefs.py index 983fe3bb30..d3d6c07813 100644 --- a/python/langdefs.py +++ b/python/langdefs.py @@ -73,8 +73,11 @@ zh = LanguageDef ('zh', '中文', enable_ly_identifier_l10n=False) # (please run 'make doc-clean' before doing that): #fr.enabled = False -# LANGUAGES = (site, cs, de, es, fr, hu, it, ja, nl, zh) LANGUAGES = (site, cs, de, es, fr, hu, it, ja, nl, zh) +WEB_LANGUAGES = (site, cs, de, es, fr, hu, it, ja, nl, zh) + +if os.getenv("MAKEWEB") == '1': + LANGUAGES=WEB_LANGUAGES if __name__ == '__main__': print ' '.join ([l.code for l in LANGUAGES if l.enabled and l.code != 'en'])