From dda1f7bff7fdca2dacec7628eb9d6dea1689a642 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Wed, 1 Apr 2015 14:42:04 +0200 Subject: [PATCH] Removed source strings from translated po files Forward port of 05a781a47 from stable/1.8.x --- scripts/manage_translations.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/manage_translations.py b/scripts/manage_translations.py index 546c4f87da..0063be52ad 100644 --- a/scripts/manage_translations.py +++ b/scripts/manage_translations.py @@ -138,21 +138,22 @@ def fetch(resources=None, languages=None): # Transifex pull if languages is None: call('tx pull -r %(res)s -a -f --minimum-perc=5' % {'res': _tx_resource_for_name(name)}, shell=True) - languages = sorted([d for d in os.listdir(dir_) if not d.startswith('_') and d != 'en']) + target_langs = sorted([d for d in os.listdir(dir_) if not d.startswith('_') and d != 'en']) else: for lang in languages: call('tx pull -r %(res)s -f -l %(lang)s' % { 'res': _tx_resource_for_name(name), 'lang': lang}, shell=True) + target_langs = languages # msgcat to wrap lines and msgfmt for compilation of .mo file - for lang in languages: + for lang in target_langs: po_path = '%(path)s/%(lang)s/LC_MESSAGES/django%(ext)s.po' % { 'path': dir_, 'lang': lang, 'ext': 'js' if name.endswith('-js') else ''} if not os.path.exists(po_path): print("No %(lang)s translation for resource %(name)s" % { 'lang': lang, 'name': name}) continue - call('msgcat -o %s %s' % (po_path, po_path), shell=True) + call('msgcat --no-location -o %s %s' % (po_path, po_path), shell=True) res = call('msgfmt -c -o %s.mo %s' % (po_path[:-3], po_path), shell=True) if res != 0: errors.append((name, lang))