From bb67bdb83cef809550d2b5305690d6bfa146d641 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Tue, 21 Oct 2014 15:34:38 +0200 Subject: [PATCH] Re-enable Esperento support after a large review (8% to 99%); No support under Windows (see _LOCALE_NAMES in gen/utils/grampslocale.py) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cb5b1d94f..85caab92c 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ import unittest # this list MUST be a subset of _LOCALE_NAMES in gen/utils/grampslocale.py # (that is, if you add a new language here, be sure it's in _LOCALE_NAMES too) -ALL_LINGUAS = ('ar', 'bg', 'ca', 'cs', 'da', 'de', 'el', 'en_GB', 'es', +ALL_LINGUAS = ('ar', 'bg', 'ca', 'cs', 'da', 'de', 'el', 'en_GB', 'eo', 'es', 'fi', 'fr', 'he', 'hr', 'hu', 'it', 'ja', 'lt', 'nb', 'nl', 'nn', 'pl', 'pt_BR', 'pt_PT', 'ru', 'sk', 'sl', 'sq', 'sv', 'uk', 'vi', 'zh_CN', 'zh_TW')