Merge remote branch 'origin/master'
[wolnelektury.git] / apps / wolnelektury_core / management / commands / localepack.py
index f7b6bb3..5d8ec87 100644 (file)
@@ -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)