return po
+def get_languages(langs):
+ if not langs: return settings.LANGUAGES
+ langs = langs.split(',')
+ lm = dict(settings.LANGUAGES)
+ return map(lambda l: (l, lm.get(l, l)), langs)
+
+
class Command(BaseCommand):
option_list = BaseCommand.option_list + (
make_option('-d', '--directory', help='Specify which directory should hold generated PO files', dest='directory'),
make_option('-l', '--load', help='load locales back to source', action='store_true', dest='load', default=False),
+ make_option('-L', '--language', help='locales to load', dest='lang', default=None),
+ make_option('-n', '--poname', help='name of the po file [no extension]', dest='poname', default=None),
)
help = 'Export models from app to po files'
args = 'app'
return r
def handle(self, appname, **options):
+ if not options['poname']: options['poname'] = appname
app = __import__(appname)
+
if options['load']:
objects = {}
modmod = {}
objects[md.__name__] = {}
modmod['model'] = md
- for lng in zip(*settings.LANGUAGES)[0]:
- pofile = os.path.join(options['directory'], lng, appname + '.po')
+ languages = get_languages(options['lang'])
+
+ for lng in zip(*languages)[0]:
+ pofile = os.path.join(options['directory'], lng, options['poname'] + '.po')
+ if not os.path.exists(pofile): raise OSError('%s po file: %s not found' % (appname, pofile))
po = polib.pofile(pofile)
for entry in po:
loc, pk = entry.occurrences[0]
for lng, po in pofiles.items():
try: os.makedirs(os.path.join(directory, lng))
except OSError: pass
- po.save(os.path.join(directory, lng, '%s.po' % appname))
+ po.save(os.path.join(directory, lng, '%s.po' % options['poname']))
from optparse import make_option
from django.conf import settings
from django.core.management.base import BaseCommand
-from django.core.management.color import color_style
from django.core.management import call_command
+from modeltranslation.management.commands.translation2po import get_languages
import os
import shutil
import tempfile
+import sys
import allauth
def load(self, input_directory, languages):
for lc in zip(*languages)[0]:
- shutil.copy2(os.path.join(input_directory, lc, self.name + '.po'),
- os.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po'))
+ if os.path.exists(os.path.join(input_directory, lc, self.name + '.po')):
+ shutil.copy2(os.path.join(input_directory, lc, self.name + '.po'),
+ os.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po'))
def generate(self, languages):
+ wd = os.getcwd()
os.chdir(self.path)
- print "in %s" % os.getcwd()
try:
call_command('makemessages', all=True)
except:
pass
+ finally:
+ os.chdir(wd)
class ModelTranslation(Locale):
- def __init__(self, appname):
+ def __init__(self, appname, poname=None):
self.appname = appname
+ self.poname = poname and poname or appname
def save(self, output_directory, languages):
- call_command('translation2po', self.appname, directory=output_directory)
+ call_command('translation2po', self.appname, directory=output_directory, poname=self.poname)
def load(self, input_directory, languages):
- call_command('translation2po', self.appname, directory=input_directory, load=True)
+ call_command('translation2po', self.appname, directory=input_directory,
+ load=True, lang=','.join(zip(*languages)[0]), poname=self.poname)
class CustomLocale(Locale):
for lc in zip(*languages)[0]:
shutil.copy2(os.path.join(input_directory, lc, self.name + '.po'),
self.po_file(lc))
- os.system('pybabel compile -D django -d %s' % os.dirname(self.out_file))
+ os.system('pybabel compile -D django -d %s' % os.path.dirname(self.out_file))
SOURCES = []
try:
SOURCES.append(AppLocale(app))
except LookupError, e:
- print "no locales in %s" % app
+ print "no locales in %s" % app.__name__
-SOURCES.append(ModelTranslation('infopages'))
+SOURCES.append(ModelTranslation('infopages', 'infopages_db'))
SOURCES.append(CustomLocale(os.path.dirname(allauth.__file__), name='contrib'))
class Command(BaseCommand):
option_list = BaseCommand.option_list + (
make_option('-l', '--load', help='load locales back to source', action='store_true', dest='load', default=False),
+ make_option('-L', '--lang', help='load just one language', dest='lang', default=None),
+ make_option('-d', '--directory', help='load from this directory', dest='directory', default=None),
make_option('-o', '--outfile', help='Resulting zip file', dest='outfile', default='./wl-locale.zip'),
+ make_option('-m', '--merge', help='Use git to merge. Please use with clean working directory.', action='store_true', dest='merge', default=False),
+ make_option('-M', '--message', help='commit message', dest='message', default='New locale'),
+
)
help = 'Make a locale pack'
args = ''
- def handle(self, *a, **options):
+ def current_rev(self):
+ return os.popen('git rev-parse HEAD').read()
+
+ def current_branch(self):
+ return os.popen("git branch |grep '^[*]' | cut -c 3-").read()
+
+ def save(self, options):
tmp_dir = tempfile.mkdtemp('-wl-locale')
out_dir = os.path.join(tmp_dir, 'wl-locale')
os.mkdir(out_dir)
src.save(out_dir, settings.LANGUAGES)
# src.save(settings.LANGUAGES)
+ # write out revision
+ rev = self.current_rev()
+ rf = open(os.path.join(out_dir, '.revision'), 'w')
+ rf.write(rev)
+ rf.close()
+
packname = options.get('outfile')
packname_b = os.path.basename(packname).split('.')[0]
fmt = '.'.join(os.path.basename(packname).split('.')[1:])
shutil.make_archive(packname_b, fmt, root_dir=os.path.dirname(out_dir), base_dir=os.path.basename(out_dir))
finally:
shutil.rmtree(tmp_dir, ignore_errors=True)
+
+ def load(self, options):
+ langs = get_languages(options['lang'])
+
+ for src in SOURCES:
+ src.load(options['directory'], langs)
+
+ def handle(self, *a, **options):
+ if options['load']:
+ if not options['directory'] or not os.path.exists(options['directory']):
+ print "Directory not provided or does not exist, please use -d"
+ sys.exit(1)
+
+ if options['merge']: self.merge_setup(options['directory'])
+ self.load(options)
+ if options['merge']: self.merge_finish(options['message'])
+ else:
+ self.save(options)
+
+ merge_branch = 'wl-locale-merge'
+ last_branch = None
+
+ def merge_setup(self, directory):
+ self.last_branch = self.current_branch()
+ rev = open(os.path.join(directory, '.revision')).read()
+
+ self.system('git checkout -b %s %s' % (self.merge_branch, rev))
+
+ def merge_finish(self, message):
+ self.system('git commit -a -m "%s"' % message.replace('"', '\\"'))
+ self.system('git checkout %s' % self.last_branch)
+ self.system('git merge -s recursive -X theirs %s' % self.merge_branch)
+ self.system('git branch -d %s' % self.merge_branch)
+
+ def system(self, fmt, *args):
+ code = os.system(fmt % args)
+ if code != 0:
+ raise OSError('Command %s returned with exit code %d' % (fmt % args, code))
+ return code