X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6a98f7b62a89bd4ffef3991f19c751eb19faff53..aae232dcf008ab39db553bc1b20573fa00e3b191:/apps/wolnelektury_core/management/commands/localepack.py diff --git a/apps/wolnelektury_core/management/commands/localepack.py b/apps/wolnelektury_core/management/commands/localepack.py index 5d8ec870d..26eee83a5 100644 --- a/apps/wolnelektury_core/management/commands/localepack.py +++ b/apps/wolnelektury_core/management/commands/localepack.py @@ -1,4 +1,7 @@ - +# -*- coding: utf-8 -*- +# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# from optparse import make_option from django.conf import settings from django.core.management.base import BaseCommand @@ -27,6 +30,11 @@ class Locale(object): def generate(self, languages): pass +def copy_f(frm, to): + "I can create a necessary dest directiories, yey!" + if not os.path.exists(os.path.dirname(to)): + os.makedirs(os.path.dirname(to)) + shutil.copyfile(frm,to) class AppLocale(Locale): def __init__(self, appmod): @@ -46,7 +54,7 @@ class AppLocale(Locale): for lc in languages: lc = lc[0] if os.path.exists(os.path.join(self.path, 'locale', lc)): - shutil.copy2(os.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po'), + copy_f(os.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po'), os.path.join(output_directory, lc, self.name + '.po')) @@ -56,7 +64,7 @@ class AppLocale(Locale): out = os.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po') if not os.path.exists(os.path.dirname(out)): os.makedirs(os.path.dirname(out)) - shutil.copy2(os.path.join(input_directory, lc, self.name + '.po'), + copy_f(os.path.join(input_directory, lc, self.name + '.po'), out) wd = os.getcwd() @@ -90,7 +98,7 @@ class ModelTranslation(Locale): def load(self, input_directory, languages): call_command('translation2po', self.appname, directory=input_directory, - load=True, lang=','.join(zip(*languages)[0]), poname=self.poname) + load=True, lang=','.join(zip(*languages)[0]), poname=self.poname, keep_running=True) class CustomLocale(Locale): @@ -115,12 +123,12 @@ class CustomLocale(Locale): def save(self, output_directory, languages): for lc in zip(*languages)[0]: if os.path.exists(self.po_file(lc)): - shutil.copy2(self.po_file(lc), + copy_f(self.po_file(lc), os.path.join(output_directory, lc, self.name + '.po')) def load(self, input_directory, languages): for lc in zip(*languages)[0]: - shutil.copy2(os.path.join(input_directory, lc, self.name + '.po'), + copy_f(os.path.join(input_directory, lc, self.name + '.po'), self.po_file(lc)) os.system('pybabel compile -D django -d %s' % os.path.dirname(self.out_file)) @@ -167,7 +175,7 @@ class Command(BaseCommand): raise NotImplementedError('Sorry. Only zip format supported at the moment.') tmp_dir = tempfile.mkdtemp('-wl-locale') - out_dir = os.path.join(tmp_dir, packname) + out_dir = os.path.join(tmp_dir, packname_b) os.mkdir(out_dir) try: