fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
enable it
[wolnelektury.git]
/
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
e5362fe
..
f7b6bb3
100644
(file)
--- a/
apps/wolnelektury_core/management/commands/localepack.py
+++ b/
apps/wolnelektury_core/management/commands/localepack.py
@@
-45,18
+45,18
@@
class AppLocale(Locale):
def save(self, output_directory, languages):
for lc in languages:
lc = lc[0]
def save(self, output_directory, languages):
for lc in languages:
lc = lc[0]
- out = os.path.join(output_directory, lc, self.name + '.po')
if os.path.exists(os.path.join(self.path, 'locale', lc)):
if os.path.exists(os.path.join(self.path, 'locale', lc)):
- if not os.path.exists(os.path.dirname(out)):
- os.makedirs(os.path.dirname(dir))
shutil.copy2(os.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po'),
shutil.copy2(os.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po'),
-
out
)
+
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')):
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')):
+ 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'),
shutil.copy2(os.path.join(input_directory, lc, self.name + '.po'),
- o
s.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po')
)
+ o
ut
)
def generate(self, languages):
wd = os.getcwd()
def generate(self, languages):
wd = os.getcwd()