X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/dec2b6f06be97c498010e0b3af0d27f27631142d..43c76e9ba930644d0dff869a7de4504ae267fa42:/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 f7b6bb3b9..146cd3182 100644 --- a/apps/wolnelektury_core/management/commands/localepack.py +++ b/apps/wolnelektury_core/management/commands/localepack.py @@ -49,6 +49,7 @@ class AppLocale(Locale): shutil.copy2(os.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po'), os.path.join(output_directory, lc, self.name + '.po')) + def load(self, input_directory, languages): for lc in zip(*languages)[0]: if os.path.exists(os.path.join(input_directory, lc, self.name + '.po')): @@ -58,6 +59,16 @@ class AppLocale(Locale): shutil.copy2(os.path.join(input_directory, lc, self.name + '.po'), out) + wd = os.getcwd() + os.chdir(self.path) + try: + call_command('compilemessages', settings='wolnelektury.settings') + except: + pass + finally: + os.chdir(wd) + + def generate(self, languages): wd = os.getcwd() os.chdir(self.path) @@ -156,7 +167,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: