From bf5c3f9be1d4e700a8475a54eaa68bdefbefc589 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 17 Oct 2014 11:34:15 +0530 Subject: [PATCH] Raise User Manual translations completion threshold --- setup/translations.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/translations.py b/setup/translations.py index dd3d4850fc..282d8ebb7f 100644 --- a/setup/translations.py +++ b/setup/translations.py @@ -332,8 +332,8 @@ class Translations(POT): # {{{ with open(self.j(self.d(dest), 'stats.json'), 'wb') as f: json.dump(stats, f) total = translated + untranslated - # Raise the 20% threshold in the future - if total and (translated / float(total)) > 0.2: + # Raise the 30% threshold in the future + if total and (translated / float(total)) > 0.3: complete[x] = stats with open(self.j(destbase, 'completed.json'), 'wb') as f: json.dump(complete, f, indent=True, sort_keys=True)