From 0822f6d076bab4082c4225a05f6ecd2d2b4a0d55 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 19 Jul 2012 11:48:47 -0400 Subject: [PATCH] Add bootstrap app to translation config file and script --- .tx/config | 11 +++++++++++ misc/process_messages.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.tx/config b/.tx/config index cedeb59913..f607087021 100644 --- a/.tx/config +++ b/.tx/config @@ -1,3 +1,14 @@ +[mayan-edms.apps-bootstrap] +source_file = apps/bootstrap/locale/en/LC_MESSAGES/django.po +source_lang = en +trans.es = apps/bootstrap/locale/es/LC_MESSAGES/django.po +trans.pt = apps/bootstrap/locale/pt/LC_MESSAGES/django.po +trans.pt_BR = apps/bootstrap/locale/pt_BR/LC_MESSAGES/django.po +trans.ru = apps/bootstrap/locale/ru/LC_MESSAGES/django.po +trans.it = apps/bootstrap/locale/it/LC_MESSAGES/django.po +trans.pl = apps/bootstrap/locale/pl/LC_MESSAGES/django.po +trans.de_DE = apps/bootstrap/locale/de_DE/LC_MESSAGES/django.po + [mayan-edms.apps-converter] source_file = apps/converter/locale/en/LC_MESSAGES/django.po source_lang = en diff --git a/misc/process_messages.py b/misc/process_messages.py index 847ca069fe..25fa595902 100755 --- a/misc/process_messages.py +++ b/misc/process_messages.py @@ -10,7 +10,7 @@ APP_LIST = ('common', 'converter', 'documents', 'document_comments', 'linking', 'main', 'metadata', 'navigation', 'ocr', 'permissions', 'project_setup', 'project_tools', 'smart_settings', 'sources', 'tags', 'user_management', 'web_theme', 'django_gpg', 'document_signatures', - 'acls', 'installation', 'scheduler') + 'acls', 'installation', 'scheduler', 'bootstrap') LANGUAGE_LIST = ('en', 'pt', 'pt_BR', 'ru', 'es', 'it', 'pl', 'de_DE') makemessages = pbs.Command('django-admin.py')