Skip to content

Commit

Permalink
Removed source strings from translated po files
Browse files Browse the repository at this point in the history
Forward port of 05a781a from stable/1.8.x
  • Loading branch information
claudep committed Apr 1, 2015
1 parent a184a99 commit dda1f7b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/manage_translations.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit dda1f7b

Please sign in to comment.