From 31e693cd0919f6924371b4b2d9fcd6ea03ffbd48 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 24 Aug 2017 00:18:46 +0530 Subject: [PATCH] Reduce the threshold for website translations to be included --- setup/translations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/translations.py b/setup/translations.py index fa90478c77..aae6c8abf7 100644 --- a/setup/translations.py +++ b/setup/translations.py @@ -482,7 +482,7 @@ class Translations(POT): # {{{ self.compile_group(files, handle_stats=handle_stats) for locale, translated in stats.iteritems(): - if translated > 30: + if translated >= 20: with open(os.path.join(tdir, locale + '.mo'), 'rb') as f: raw = f.read() zi = ZipInfo(os.path.basename(f.name))