diff --git a/.tx/config b/.tx/config index bb063943e3..c5719f66e2 100644 --- a/.tx/config +++ b/.tx/config @@ -67,12 +67,6 @@ source_lang = en source_file = mayan/apps/folders/locale/en/LC_MESSAGES/django.po type = PO -[mayan-edms.apps-history] -file_filter = mayan/apps/history/locale//LC_MESSAGES/django.po -source_lang = en -source_file = mayan/apps/history/locale/en/LC_MESSAGES/django.po -type = PO - [mayan-edms.apps-installation] file_filter = mayan/apps/installation/locale//LC_MESSAGES/django.po source_lang = en @@ -85,6 +79,12 @@ source_lang = en source_file = mayan/apps/linking/locale/en/LC_MESSAGES/django.po type = PO +[mayan-edms.apps-mailer] +file_filter = mayan/apps/mailer/locale//LC_MESSAGES/django.po +source_lang = en +source_file = mayan/apps/mailer/locale/en/LC_MESSAGES/django.po +type = PO + [mayan-edms.apps-main] file_filter = mayan/apps/main/locale//LC_MESSAGES/django.po source_lang = en @@ -163,9 +163,4 @@ source_lang = en source_file = mayan/apps/user_management/locale/en/LC_MESSAGES/django.po type = PO -[mayan-edms.apps-mailer] -file_filter = mayan/apps/mailer/locale//LC_MESSAGES/django.po -source_lang = en -source_file = mayan/apps/mailer/locale/en/LC_MESSAGES/django.po -type = PO diff --git a/contrib/scripts/process_messages.py b/contrib/scripts/process_messages.py index 4d9aba4c2c..c205291326 100755 --- a/contrib/scripts/process_messages.py +++ b/contrib/scripts/process_messages.py @@ -7,9 +7,9 @@ import sh APP_LIST = ('acls', 'checkouts', 'common', 'converter', 'django_gpg', 'documents', 'document_comments', 'document_indexing', 'document_signatures', 'dynamic_search', - 'folders', 'history', 'installation', 'linking', 'mailer', 'main', 'metadata', 'navigation', - 'ocr', 'permissions', 'project_setup', 'project_tools', 'smart_settings', - 'sources', 'tags', 'user_management', 'registration', 'statistics') + 'events', 'folders', 'installation', 'linking', 'mailer', 'main', 'metadata', 'navigation', + 'ocr', 'permissions', 'project_setup', 'project_tools', 'registration', + 'smart_settings', 'sources', 'statistics', 'tags', 'user_management') LANGUAGE_LIST = ('ar', 'bg', 'bs_BA', 'da', 'de_CH', 'de_DE', 'en', 'es', 'fa', 'fr', 'hu', 'hr_HR', 'id', 'it', 'lv', 'nb', 'nl_NL', 'pl', 'pt', 'pt_BR', 'ro_RO', 'ru', 'sl_SI', 'sq', 'tr_TR', 'vi_VN', 'zh_CN', 'zh_TW') makemessages = sh.Command('django-admin.py')