From 2be0243dff06dc4353d94a1ca53d5a269f9bed87 Mon Sep 17 00:00:00 2001 From: lpradel Date: Fri, 4 Jul 2014 23:11:27 +0200 Subject: [PATCH] Translated python script. --- src/archive.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/archive.py b/src/archive.py index 5fa62e0c..6696940b 100644 --- a/src/archive.py +++ b/src/archive.py @@ -18,6 +18,8 @@ # resources/l10n/pl/LC_MESSAGES/wxstd.mo # resources/l10n/fi/LC_MESSAGES/loot.mo # resources/l10n/fi/LC_MESSAGES/wxstd.mo +# resources/l10n/de/LC_MESSAGES/loot.mo +# resources/l10n/de/LC_MESSAGES/wxstd.mo # resources/report/report.html # resources/report/require.js # resources/report/polyfill.js @@ -70,7 +72,7 @@ if not os.path.exists(temp_path): # Now copy everything into the temporary folder. shutil.copy( os.path.join('..', 'build', 'LOOT.exe'), temp_path ) -for lang in ['es', 'ru', 'fr', 'zh_CN', 'pl', 'pt_BR', 'fi']: +for lang in ['es', 'ru', 'fr', 'zh_CN', 'pl', 'pt_BR', 'fi', 'de']: os.makedirs(os.path.join(temp_path, 'resources', 'l10n', lang, 'LC_MESSAGES')) shutil.copy( os.path.join('..', 'resources', 'l10n', lang, 'LC_MESSAGES', 'loot.mo'), os.path.join(temp_path, 'resources', 'l10n', lang, 'LC_MESSAGES') ) shutil.copy( os.path.join('..', 'resources', 'l10n', lang, 'LC_MESSAGES', 'wxstd.mo'), os.path.join(temp_path, 'resources', 'l10n', lang, 'LC_MESSAGES') )