mirror of
https://github.com/haiwen/seahub.git
synced 2025-04-27 11:01:14 +00:00
59 lines
2.1 KiB
Python
59 lines
2.1 KiB
Python
# Copyright (c) 2012-2016 Seafile Ltd.
|
|
"""
|
|
Tools for i18n.
|
|
"""
|
|
import os
|
|
from fabric.api import local, task
|
|
from fabric.colors import red, green
|
|
|
|
@task
|
|
def make(default=True, lang='en'):
|
|
"""Update source language.
|
|
"""
|
|
local('django-admin makemessages -s -l %s -e py,html -i "thirdpart*" -i "docs*" -i "seahub/two_factor/gateways" -i "seahub/two_factor/templates/two_factor/core/otp_required.html" -i "seahub/two_factor/templates/two_factor/core/phone_register.html" -i "seahub/two_factor/templates/two_factor/profile/profile.html" -i "seahub/two_factor/models/phone.py" -i "seahub/two_factor/models/base.py" -i "seahub/two_factor/templates/two_factor/core/setup_complete.html" -i "seahub/help"' % lang)
|
|
local('cd seahub/help && django-admin makemessages -l %s' % lang)
|
|
local('cd ../../')
|
|
|
|
# some version of makemessages will produce "%%" in the string, replace that
|
|
# to "%".
|
|
_inplace_change('locale/%s/LC_MESSAGES/django.po' % lang, '%%s', '%s')
|
|
_inplace_change('locale/%s/LC_MESSAGES/django.po' % lang, '%%(', '%(')
|
|
|
|
makejs(lang)
|
|
|
|
@task
|
|
def makejs(lang='en'):
|
|
local('django-admin makemessages -l %s -d djangojs -i "thirdpart" -i "node_modules" -i "media" -i "static/scripts/dist" -i "static/scripts/lib" -i "tests" -i "tools" -i "tagging" -i "static/scripts/i18n" -i "frontend/build" -i "frontend/config" -i "frontend/scripts" --verbosity 2' % lang)
|
|
|
|
@task
|
|
def push():
|
|
"""Push source file to Transifex.
|
|
"""
|
|
local('tx push -s')
|
|
|
|
@task
|
|
def pull():
|
|
"""Update local po files with Transifex.
|
|
"""
|
|
local('tx pull -f')
|
|
|
|
@task()
|
|
def compile():
|
|
"""Compile po files.
|
|
"""
|
|
local('django-admin compilemessages && pushd seahub/trusted_ip && django-admin compilemessages')
|
|
|
|
########## utility functions
|
|
def _inplace_change(filename, old_string, new_string):
|
|
s = open(filename).read()
|
|
if old_string in s:
|
|
print((green('Changing "{old_string}" to "{new_string}" in "{filename}"'.format(**locals()))))
|
|
s = s.replace(old_string, new_string)
|
|
f = open(filename, 'w')
|
|
f.write(s)
|
|
f.flush()
|
|
f.close()
|
|
|
|
def _debug(msg):
|
|
print((red('Running: {msg}'.format(**locals()))))
|