diff --git a/HISTORY.rst b/HISTORY.rst index 3eb843de53..b367be7e43 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,13 +1,28 @@ -Importer branch -=============== -* Add a reusable task to upload documents. -* Add MVP of the importer app. - -3.2.4 (2019-06-XX) +3.2.4 (2019-06-29) ================== * Support configurable GUnicorn timeouts. Defaults to current value of 120 seconds. * Fix help text of the platformtemplate command. +* Fix IMAP4 mailbox.store flags argument. Python's documentation + incorrectly state it is named flag_list. Closes GitLab issue + #606. +* Improve the workflow preview generation. Use polylines + instead of splines. Add state actions to the preview. + Highlight the initial state. +* Add help text to the workflow transition form comment field. +* Fix direct deployment instructions. +* Add user, group, and role dashboard widgets. +* Add test mixin detect database connection leaks. +* Remove tag create event registration from the tag + instances. The tag create event is not applicable to + existing tags. +* Add proper redirection after moving a document to the + trash. +* Remove the INSTALLED_APPS setting. Replace it with + the new COMMON_EXTRA_APPS and COMMON_DISABLED_APPS. +* Improve email metadata support. Can now work on + email with nested parts. Also the metadata.yaml + attachment no longer needs to be the first attachment. 3.2.3 (2019-06-21) ================== diff --git a/docker/rootfs/version b/docker/rootfs/version index b347b11eac..351227fca3 100755 --- a/docker/rootfs/version +++ b/docker/rootfs/version @@ -1 +1 @@ -3.2.3 +3.2.4 diff --git a/docs/releases/3.2.4.rst b/docs/releases/3.2.4.rst index 9db3ec8308..1dd4e3f4bb 100644 --- a/docs/releases/3.2.4.rst +++ b/docs/releases/3.2.4.rst @@ -1,7 +1,7 @@ Version 3.2.4 ============= -Released: June XX, 2019 +Released: June 29, 2019 Changes @@ -10,6 +10,33 @@ Changes - Support configurable GUnicorn timeouts. Defaults to current value of 120 seconds. - Fix help text of the platformtemplate command. +- Fix IMAP4 mailbox.store flags argument. Python's documentation + incorrectly state it is named flag_list. Closes GitLab issue + #606. Thanks to Samuel Aebi (@samuelaebi) for the report and + debug information. +- Support configurable GUnicorn timeouts. Defaults to + current value of 120 seconds. +- Fix help text of the platformtemplate command. +- Fix IMAP4 mailbox.store flags argument. Python's documentation + incorrectly state it is named flag_list. Closes GitLab issue + #606. +- Improve the workflow preview generation. Use polylines + instead of splines. Add state actions to the preview. + Highlight the initial state. +- Add help text to the workflow transition form comment field. +- Fix direct deployment instructions. +- Add user, group, and role dashboard widgets. +- Add test mixin detect database connection leaks. +- Remove tag create event registration from the tag + instances. The tag create event is not applicable to + existing tags. +- Add proper redirection after moving a document to the + trash. +- Remove the INSTALLED_APPS setting. Replace it with + the new COMMON_EXTRA_APPS and COMMON_DISABLED_APPS. +- Improve email metadata support. Can now work on + email with nested parts. Also the metadata.yaml + attachment no longer needs to be the first attachment. Removals -------- @@ -29,7 +56,7 @@ Remove deprecated requirements:: Type in the console:: - $ pip install mayan-edms==3.2.3 + $ pip install mayan-edms==3.2.4 the requirements will also be updated automatically. @@ -68,7 +95,7 @@ variables values show here with your respective settings. This step will refresh the supervisord configuration file with the new queues and the latest recommended layout:: - MAYAN_DATABASE_ENGINE=django.db.backends.postgresql MAYAN_DATABASE_NAME=mayan \ + sudo MAYAN_DATABASE_ENGINE=django.db.backends.postgresql MAYAN_DATABASE_NAME=mayan \ MAYAN_DATABASE_PASSWORD=mayanuserpass MAYAN_DATABASE_USER=mayan \ MAYAN_DATABASE_HOST=127.0.0.1 MAYAN_MEDIA_ROOT=/opt/mayan-edms/media \ /opt/mayan-edms/bin/mayan-edms.py platformtemplate supervisord > /etc/supervisor/conf.d/mayan.conf @@ -76,7 +103,7 @@ recommended layout:: Edit the supervisord configuration file and update any setting the template generator missed:: - vi /etc/supervisor/conf.d/mayan.conf + sudo vi /etc/supervisor/conf.d/mayan.conf Migrate existing database schema with:: @@ -98,6 +125,7 @@ Backward incompatible changes Bugs fixed or issues closed --------------------------- +- :gitlab-issue:`606` Delete after IMAP Processing - :gitlab-issue:`628` mailbox.user in POP3Email gets passed keyword argument, but only accepts "user" or positional argument .. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/mayan/__init__.py b/mayan/__init__.py index d64fa74a55..02c2642a13 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,9 +1,9 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '3.2.3' -__build__ = 0x030203 -__build_string__ = 'v3.2.3_Fri Jun 21 00:01:37 2019 -0400' +__version__ = '3.2.4' +__build__ = 0x030204 +__build_string__ = 'v3.2.4_Sat Jun 29 02:50:51 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index 86ef081477..266f7c0345 100644 --- a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po index 3b5d60a77e..c63866b825 100644 --- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po index 6941392004..106436b792 100644 --- a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po b/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po index f0a3cb7eff..1aa27dae94 100644 --- a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po index 0acd6b036a..16cfec73c6 100644 --- a/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po index 98d027bde6..a6463d208f 100644 --- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po b/mayan/apps/acls/locale/el/LC_MESSAGES/django.po index ba0fa8ae15..2a203bec79 100644 --- a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po index 69b17e1c43..515977122a 100644 --- a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po index acac77c884..da325b1542 100644 --- a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po index 875b2f12ee..89a25cfd42 100644 --- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po index 4dd3aa3113..7946f444fa 100644 --- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po index 2a05da59c5..d9b1915d55 100644 --- a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po index 875b4e024e..f05b38b412 100644 --- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po index 4f0b7f64c0..05002f4535 100644 --- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.mo index dd3ff3b865..89d6babdf5 100644 Binary files a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po index a1ff19296c..8acb9dad4d 100644 --- a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" +"PO-Revision-Date: 2019-06-28 11:16+0000\n" +"Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -185,7 +185,7 @@ msgstr "Lomas, kuru piekļuve tiks mainīta." #: workflow_actions.py:52 workflow_actions.py:167 msgid "" "Permissions to grant/revoke to/from the role for the object selected above." -msgstr "Atļaujas piešķirt / atsaukt iepriekš atlasītā objekta lomu." +msgstr "Atļaujas piešķirt/atsaukt iepriekš atlasītā objekta lomu." #: workflow_actions.py:60 msgid "Grant access" @@ -197,8 +197,8 @@ msgstr "Atsaukt piekļuvi" #: workflow_actions.py:175 msgid "Grant document access" -msgstr "" +msgstr "Piešķirt piekļuvi dokumentam" #: workflow_actions.py:214 msgid "Revoke document access" -msgstr "" +msgstr "Atsaukt piekļuvi dokumentam" diff --git a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po index 94a1878c8f..43f782289e 100644 --- a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po index e52676cf01..cdad323055 100644 --- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index 96d1eb459e..56a7e901ba 100644 --- a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po index f3531fed85..3ba4681a6f 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo index ab3b6b4e44..f091bd4382 100644 Binary files a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po index 23d3188623..a54f03263a 100644 --- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" +"PO-Revision-Date: 2019-06-18 15:35+0000\n" +"Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -197,8 +197,8 @@ msgstr "Revocă acces" #: workflow_actions.py:175 msgid "Grant document access" -msgstr "" +msgstr "Acordați acces la documente" #: workflow_actions.py:214 msgid "Revoke document access" -msgstr "" +msgstr "Revocați accesul la documente" diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po index 60b8725901..b8494e8cc1 100644 --- a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po index b19210dca9..2469b32127 100644 --- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po index 83e39599ea..94cda22a94 100644 --- a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po index 61070f2e21..048e0c732d 100644 --- a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po index 01fcd12ef9..5e0145b33b 100644 --- a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:14-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po index 083db56ea5..4b9addd8af 100644 --- a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po index 96a9868cd9..f544d25f1e 100644 --- a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po index 320caadd70..4ec5537c34 100644 --- a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po index e19d2ad3b3..a9fb2aed0d 100644 --- a/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po index ba3d40059e..25d8034a9f 100644 --- a/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po index 214cd53a22..3ebc25d63d 100644 --- a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po index 926a8114d3..84ce347e11 100644 --- a/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po index a881ed0a95..5297228cd8 100644 --- a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index b6cfb480af..e97af56b61 100644 --- a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po index 693ddae19c..2e43200f63 100644 --- a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index a77c1125ff..27b7bc130b 100644 --- a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index 7f1ba64878..a75c46e5bd 100644 --- a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index 36d082315e..fbd6543a5d 100644 --- a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po index 24d09a54b5..ebb8335248 100644 --- a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.mo index b2ae0646b8..46be54c446 100644 Binary files a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po index 82cad48340..23812d1d39 100644 --- a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-27 12:06+0000\n" +"Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +24,7 @@ msgstr "Izskats" #: dependencies.py:10 msgid "Lato font" -msgstr "" +msgstr "Lato fonts" #: dependencies.py:14 msgid "Bootstrap" diff --git a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po index 8120a7cb4e..96c1442715 100644 --- a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po index cce54d9f54..2e1f9ab26f 100644 --- a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index c9884e3c57..63782262bc 100644 --- a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po index 74a956b2f3..8680fe8824 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po index fb15ce017b..75c0d6f315 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index ebac2d6d82..5160bb15a6 100644 --- a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po index 2035940bff..708cfdef45 100644 --- a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po index cb41f469c8..a04aed99e8 100644 --- a/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po index a8fbd3220e..41ccc0a408 100644 --- a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po index fc16356564..5e29dc5a22 100644 --- a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:35-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index 8ffe808856..d9b1a3992f 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po index 7b75409342..ac6f1f7d84 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po index 0fd4e84796..df1b019836 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po index e1d978e403..226f242e3d 100644 --- a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po index 96704c0e27..c44ead59b9 100644 --- a/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po index bbd9b3838e..90d40b0ab8 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po index 06f4d7fcce..fe59f438df 100644 --- a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po index 30ea2c9e06..271b123659 100644 --- a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po index 010603d0d4..31755fee92 100644 --- a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po index 6a0b5fbc13..6d28415e56 100644 --- a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po index f4f0568e3b..3ef61bc378 100644 --- a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index 094042356c..07f516fbac 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po index 736f62aa97..dfa093cfd2 100644 --- a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po index 32a6d9dd63..c223af42cf 100644 --- a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.mo index 768405f3aa..2206a2c7f5 100644 Binary files a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po index 5b82eb938b..e809cc9350 100644 --- a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-27 12:07+0000\n" +"Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +66,7 @@ msgstr "Kontrolē lietotāja autentifikācijas mehānismu. Iespējas ir: lietot msgid "" "Maximum time a user clicking the \"Remember me\" checkbox will remain logged" " in. Value is time in seconds." -msgstr "" +msgstr "Maksimālais laiks, uz kādu lietotājs, noklikšķinot uz izvēles rūtiņas „Atcerēties mani”, paliks pieteicies. Vērtība ir laiks sekundēs." #: templates/authentication/login.html:11 msgid "Login" diff --git a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po index 743d6e8356..59421ff75a 100644 --- a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index ce8ca56477..c2f80a7c11 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po index 9d4cb1ea02..73520f4a5a 100644 --- a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po index 400fe69425..2964f38807 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo index 700a9b4b2b..f8b1408e87 100644 Binary files a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po index a03126e0ae..54b41c9dcf 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-18 15:36+0000\n" +"Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +66,7 @@ msgstr "Controlează mecanismul utilizat pentru utilizatorul autentificat. Opți msgid "" "Maximum time a user clicking the \"Remember me\" checkbox will remain logged" " in. Value is time in seconds." -msgstr "" +msgstr "Timpul maxim pe care un utilizator îl dă clic pe caseta de selectare \"Reține-mă\" va rămâne logat. Valoarea este timpul în secunde." #: templates/authentication/login.html:11 msgid "Login" diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index cb7073fb2d..187cfcd29e 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po index c0d709932f..c0ebe5bc42 100644 --- a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po index 709583cb95..61ad8a094c 100644 --- a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po index 0643212b6b..bd910b7728 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po index 3eb698d60b..ca724e26b0 100644 --- a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po index 266d74ffff..3faf2e67a8 100644 --- a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mohammed ALDOUB , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" diff --git a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po index 60e95e82a3..3d64464ee7 100644 --- a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Pavlin Koldamov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po index 2c9ef74cde..6ab68449d5 100644 --- a/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Atdhe Tabaku , 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po index 64eb19f6ad..ac9a472bd8 100644 --- a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po index 70aab4ec29..1240d4101c 100644 --- a/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Language-Team: Danish (https://www.transifex.com/rosarior/teams/13584/da/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po index 404d8117ab..fdcabf4b72 100644 --- a/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" diff --git a/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po index 429342444c..d20f562f0e 100644 --- a/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po index 61c6f7e40b..2641f822f5 100644 --- a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" diff --git a/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po index 9b95982446..694e2a5854 100644 --- a/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po index 91e1458ec5..e13a6a35f1 100644 --- a/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po index c643dbeff9..86eacd59e0 100644 --- a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po index 8f84741b2a..839dae3d7e 100644 --- a/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po index f9a59b3590..c566d278a2 100644 --- a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: molnars , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" diff --git a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po index a0640065c5..8aae84cb30 100644 --- a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Dzikri Hakim , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" diff --git a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po index cae426ed59..1faad4d12c 100644 --- a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Daniele Bortoluzzi , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po index c2731d3021..0aae951652 100644 --- a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" diff --git a/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po index 587c28d59e..629ae8aefd 100644 --- a/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Martin Horseling , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po index d441df90cf..85ca3547b0 100644 --- a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po index 17cf631268..0cc95b3b00 100644 --- a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Manuela Silva , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" diff --git a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po index 631cee611c..8d6b8928ff 100644 --- a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: José Samuel Facundo da Silva , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po index 69235e7abc..729b663d8e 100644 --- a/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" diff --git a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po index b5bd67f23e..f4ec6b3da5 100644 --- a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: mizhgan , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po index 0f9290d6c0..16de55ea9f 100644 --- a/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po index 7021e027f0..2cbdad8d7c 100644 --- a/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: serhatcan77 , 2019\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" diff --git a/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po index b57691af61..cc4161eefd 100644 --- a/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Trung Phan Minh , 2019\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" diff --git a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po index 24996ddbc0..e2dd154c6e 100644 --- a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" diff --git a/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po index 17fb019ca5..83de52f848 100644 --- a/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Ford Guo , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/rosarior/teams/13584/zh_CN/)\n" diff --git a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po index e2619e6959..a43ef2a009 100644 --- a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" diff --git a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po index 616647778d..24b99fa6c4 100644 --- a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Iliya Georgiev , 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po index e7e6d40d3f..50549cfa15 100644 --- a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po index 9c7f017ecf..9efab06517 100644 --- a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Sebastian Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" diff --git a/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po index fc46965b20..fc6b99735f 100644 --- a/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" diff --git a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po index 3170d14ca6..cd6ea3e0f6 100644 --- a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po index 5e59fa6e6a..e0c06e76d0 100644 --- a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Hmayag Antonian , 2018\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" diff --git a/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po index 46aacc0831..9a7a352dcd 100644 --- a/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po index c2ef87d951..08b15d7d14 100644 --- a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Roberto Rosario, 2018\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po index 1585163e28..3656aca8b6 100644 --- a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Mehdi Amani , 2017\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po index 636573b900..45d21014a7 100644 --- a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po index 7d165fc74a..683ed541c2 100644 --- a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: molnars , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" diff --git a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po index 6530abe43f..93e1432baa 100644 --- a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" diff --git a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po index 637f35250a..04f68c7a0b 100644 --- a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Andrea Evangelisti , 2018\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po index 508b7cbada..f4761fa5a2 100644 --- a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" diff --git a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po index 3a7838869a..43e0c02d88 100644 --- a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Evelijn Saaltink , 2017\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po index daeaad8ad2..cbe372c0e5 100644 --- a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Wojciech Warczakowski , 2017\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po index 425c1063c0..5168822af4 100644 --- a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Manuela Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" diff --git a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po index 04a448a2c2..3cb99dd56b 100644 --- a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: José Samuel Facundo da Silva , 2018\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po index 486820b5a9..3d5357dd74 100644 --- a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" diff --git a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po index b5302fd687..3604e8b5eb 100644 --- a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: panasoft , 2017\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po index 2251069765..a0e125e20d 100644 --- a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: kontrabant , 2017\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" diff --git a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po index 7c655fc937..c9d98eeffc 100644 --- a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: serhatcan77 , 2017\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" diff --git a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po index 24b7f0450f..f6cb6e3796 100644 --- a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Trung Phan Minh , 2017\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" diff --git a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po index 0b76f2a2ed..f0849feb36 100644 --- a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po index b0da2f6489..d599a50d8f 100644 --- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po index 2cb61a2b85..8a9d866628 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po index 4412a6b0b3..7013597f1f 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po index d706a68dff..ae22ad44bf 100644 --- a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po index 13270eb1aa..e89bf0c5f5 100644 --- a/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po index 8793f50b97..f2981dda50 100644 --- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-28 21:17+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po index 57769e700f..180f680c1e 100644 --- a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po index 7a4e421844..a174a46b0a 100644 --- a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po index 56015f7ab5..55307447d3 100644 --- a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-30 16:35+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po index 4e218ae24c..d9c0858ffa 100644 --- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po index 72927e0373..fbc1fb7c2e 100644 --- a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-17 13:31+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po index 8b86fb295c..5bf64d121d 100644 --- a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po index 9b32ac5f27..15daa92738 100644 --- a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-14 11:19+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po index 3ee63afef2..f0bd806277 100644 --- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po index ed8fadf2a5..a34518464e 100644 --- a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-30 08:08+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po index db64e3f6b1..d4f3477295 100644 --- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po index 9359ebb4a9..58e9b41ca5 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index 5309f61b5b..e5eeebbba1 100644 --- a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po index 5c7da2f43e..75943ecbef 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po index eb1d91cc3a..39422e78f3 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-02 05:01+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po index 170132b733..6a5f12de10 100644 --- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po index 203d3588da..7eacda3eaf 100644 --- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po index b34d5a0457..d4cc76a4b5 100644 --- a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po index 43323a26a5..aa14c17bd8 100644 --- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po index f3367bf62b..695320b536 100644 --- a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: 2019-05-02 03:31+0000\n" "Last-Translator: Philip Hai \n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo index 745a1c23bc..d23c806bc6 100644 Binary files a/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index 76a604d5b4..9d0025c8f1 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" @@ -320,41 +320,57 @@ msgid "" "propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -369,7 +385,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -379,13 +395,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,7 +410,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -409,14 +425,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -424,17 +440,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -442,23 +458,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -466,7 +482,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -476,22 +492,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -500,7 +508,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -509,7 +517,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -519,7 +527,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +535,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +544,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +556,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,7 +564,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -564,14 +572,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,11 +587,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -591,7 +599,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo index b88440b9c5..b59d522561 100644 Binary files a/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index 92f8bc8eee..e50efc3245 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" @@ -320,41 +320,57 @@ msgid "" "propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -369,7 +385,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -379,13 +395,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,7 +410,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -409,14 +425,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -424,17 +440,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -442,23 +458,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -466,7 +482,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -476,22 +492,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -500,7 +508,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -509,7 +517,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -519,7 +527,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +535,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +544,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +556,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,7 +564,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -564,14 +572,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,11 +587,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -591,7 +599,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo index 1362159eba..196fc7a43b 100644 Binary files a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po index 1689b7c18e..ff1174e67d 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" @@ -321,41 +321,57 @@ msgid "" "propagate." msgstr "Vreme za odlaganje pozadinskih zadataka koji zavise od baze podataka obavezuju se da se propagiraju." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "Omogućite prijavljivanje grešaka izvan sistemskih mogućnosti evidentiranja grešaka." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Put do log datoteke koja će pratiti greške tokom proizvodnje" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr " Backend skladišta koju svi radnici mogu koristiti za dijeljenje datoteka." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -370,7 +386,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -380,13 +396,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -395,7 +411,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -410,14 +426,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -425,17 +441,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -443,23 +459,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -467,7 +483,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,22 +493,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -501,7 +509,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -510,7 +518,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -520,7 +528,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -528,7 +536,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -537,7 +545,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,7 +557,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -557,7 +565,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -565,14 +573,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -580,11 +588,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -592,7 +600,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/common/locale/cs/LC_MESSAGES/django.mo index 377e964f2e..b6b67d3e15 100644 Binary files a/mayan/apps/common/locale/cs/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/cs/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po index ba38a740cc..a83e7fcdb2 100644 --- a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" @@ -319,41 +319,57 @@ msgid "" "propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -368,7 +384,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -378,13 +394,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,7 +409,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -408,14 +424,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,23 +457,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -465,7 +481,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,22 +491,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -499,7 +507,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,7 +516,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -518,7 +526,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,7 +563,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -563,14 +571,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,11 +586,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -590,7 +598,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.mo index 85f9363a1f..d7e0823839 100644 Binary files a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po index ec4d551730..b07970f8e7 100644 --- a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -319,41 +319,57 @@ msgid "" "propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -368,7 +384,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -378,13 +394,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,7 +409,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -408,14 +424,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,23 +457,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -465,7 +481,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,22 +491,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -499,7 +507,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,7 +516,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -518,7 +526,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,7 +563,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -563,14 +571,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,11 +586,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -590,7 +598,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.mo index fad51a0d64..5648c90e2b 100644 Binary files a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po index 733d65bc91..21169640cd 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -328,41 +328,57 @@ msgid "" "propagate." msgstr "Zeit für die Verzögerung von Hintergrundaufgaben, die für ihre Fortsetzung auf einen Datenbankcommit warten." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "Name des Formulars, das mit dem Markenanker im Hauptmenü verknüpft ist. Zu diesem Formular werden die Benutzer auch nach dem Anmeldevorgang weitergeleitet." -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "Fehlerprotokollierung außerhalb des regulären Systemfehlerprotokolls aktivieren." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Der Pfad zur Protokolldatei, in der Fehler im Produktivbetrieb aufgezeichnet werden." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Der im Hauptmenü angezeigte Name." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "Die URL der Installation oder Webseite des Projekts." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Datenbackend, das alle Worker benutzen können, um Dateien zu teilen." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -377,7 +393,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "Eine Liste aller Hosts bzw. Domainnamen, die mit dieser Seite funktionieren. Sie dient als Sicherheitsmaßnahme um Angriffe über HTTP Hostheader zu verhindern, welche selbst unter vermeintlich sicheren Webserverkonfigurationen möglich sein können. Werte in dieser Liste können voll qualifizierte Domainnamen enthalten, die exakt gegen den Hostheader des Requests geprüft werden (ohne Prüfung von Groß-/Kleinschreibung und Port). Werte, die mit einem Punkt beginnen werden wie eine Subdomain Wildcard behandelt, so steht z.B. '.example.com' für 'example.com' oder 'www.example.com' oder jede andere Subdomain von example.com. '*' steht als Wert für alles Mögliche, in diesem Fall sind Sie selbst verantwortlich für eine Validierung des Hostheaders (z.B. mittels einer Middleware. Sollte das der Fall sein, muss diese in MIDDLEWARE zuerst gelistet werden)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -387,13 +403,13 @@ msgid "" "PREPEND_WWW." msgstr "Falls \"Wahr\" (true), wird eine Umleitung (HTTP Redirect) auf die bereitgestellte URL mit angehängtem Slash erzeugt, sofern diese nicht bereits mit einem Slash endet oder einem Muster aus der URLconf entspricht. Bitte beachten Sie, dass die Umleitung den Verlust von Daten aus den übermittelten POST-Requests verursachen kann. Die Einstellung APPEND_SLASH wird nur benutzt, wenn CommonMiddleware installiert ist (siehe Middleware). Siehe auch PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "Liste der Validatoren, die für die Überprüfung der Passwortstärke von Benutzerpasswörtern verwendet werden." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -402,7 +418,7 @@ msgid "" "databases may also be specified." msgstr "Ein Dictionary welches eine Liste aller Einstellungen für die mit Django verwendeten Datenbanken enthält. Dieses Dictionary enthält Aliase zu einem weiteren Dictionaries, welche wiederum die Einstellungen für weitere Datenbanken enthalten. Die DATABASES Einstellung muss eine Standarddatenbank enthalten, es können aber auch beliebige weitere Datenbanken angegeben werden." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -417,14 +433,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Requestbodys in Bytes, für Werte darüber wird die Aktion 'SuspiciousOperation - RequestDataTooBig' ausgelöst. Diese Prüfung wird immer ausgeführt, wenn auf 'request.body' oder 'request.POST' zugegriffen wird. Dabei wird die Gesamtgröße des Requests berechnet ohne Einbezug der Größe einer eventuell hochzuladenen Datei. Die Einstellung 'None' deaktiviert diese Prüfung. Anwendungen, welche erwartungsgemäß umfangreichere Formularanfragen erhalten, sollten diese Einstellung entsprechend anpassen. Der Umfang an Requestdaten korreliert mit dem zur Verarbeitung benötigten Speicher und dem benötigten Speicher zur Befüllung der GET und POST Dictionaries. Sehr umfangreiche Requests könnten ungeprüft einem Denial-of-Service Angriff dienen. Da Webserver für gewöhnlich eine solch gründliche Prüfung der Anfragen nicht durchführen, ist eine vergleichbare Prüfung auf Dieser Ebene nicht möglich. Siehe auch: FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "Standard: 'webmaster@localhost' Standard-E-Mailadresse, die für verschiedene automatische Korrespondenz durch die Sitemanager verwendet wird. Dies gilt nicht für Fehlerbenachrichtigungen an ADMINS and MANAGERS, für diese siehe SERVER_EMAIL." -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -432,17 +448,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "Standard: [] (Leere Liste). Eine Liste von kompilierten regulären Ausdrücken (RegEx) welche diejenigen User-Agent Strings repräsentieren die systemweit keine einzige Seite aufrufen dürfen. Nutzen Sie diese gegen unerwünschte Robots oder Crawler. Wird nur genutzt wenn CommonMiddleware installiert ist (siehe: Middleware)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "Standard: 'django.core.mail.backends.smtp.EmailBackend'. Das Backend für den E-Mailversand." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Standard: 'localhost'. Der Host für den E-Mailversand." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -450,23 +466,23 @@ msgid "" "Django won't attempt authentication." msgstr "Standard: \" (Leere Zeichenfolge). Das Passwort zur Nutzung des SMTP-Servers, der in EMAIL_HOST definiert wurde. Diese Einstellung wird zusammen mit der für EMAIL_HOST_USER für die Authentifizierung am SMTP-Server genutzt. Wird eine der beiden leer gelassen, benutzt Django keine Authentifizierung." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "Standard: \" (Leere Zeichenfolge). Der Benutzername zur Nutzung des SMTP-Servers, der in EMAIL_HOST definiert wurde. Wird die Einstellung leer gelassen, benutzt Django keine Authentifizierung." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "Standard: 25. Der für den in EMAIL_HOST definierten SMTP-Server zu benutzende Port." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "Standard: None (Keiner). Stellt einen Timeout (in Sekunden) für blockierende Operationen wie z.B. Verbindungsversuche ein." -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -474,7 +490,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim Verbinden zum SMTP-Server aufgebaut werden soll. Wird für explizite TLS-Verbindungen, üblicherweise über den Port 587, verwendet. Sollte es zu Verbindungsfehlern kommen, prüfen Sie bitte die implizite TLS Einstellung EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -484,22 +500,14 @@ msgid "" "those settings to True." msgstr "Standard: False. Definiert ob eine TLS Verbindung (sichere Verbindung) beim Verbinden zum SMTP Server aufgebaut werden soll. Gelegentlich wird diese TLS Verbindung auch als SSL bezeichnet. Die Verbindung nutzt üblicherweise den Port 465. Sollte es zu Verbindungsfehlern kommen, prüfen Sie bitte die explizite TLS Einstellung EMAIL_USE_TLS. Beachten Sie bitte, dass immer nur eine Einstellung für EMAIL_USE_TLS oder EMAIL_USE_SSL genutzt werden kann, es sollte daher immer nur eine Einstellungen auf \"True\" gestellt werden." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "Standard: 2621440 (entspricht 2,5 MB). Die Maximalgröße eines Uploads in Bytes, bevor dieser zum Dateisystem gestreamt wird. Mehr Details im Kapitel zum Dateimanagement. Siehe auch: DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "Eine Liste aller Applikationen (String), welche für diese Django-Installation aktiviert sind. Jede Zeichenfolge muss ein punktuierter Pythonpfad zu einer Anwendungskonfigurationsklasse (bevorzugt) oder einem Anwendungspaket sein." - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -508,7 +516,7 @@ msgid "" "and URLconf)." msgstr "Standard: '/accounts/login/' Die URL zur Weiterleitung zum Login, insbesondere wenn z.B. der login_required() Decorator benutzt wird. Diese Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn z.B. mehrfach gleiche Konfigurationen an verschiedenen Stellen vermieden werden sollen (z.B. in 'Einstellungen' und URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -517,7 +525,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "Standard: '/accounts/profile/' Die URL zur Weiterleitung von Requests nach erfolgreichem Login, insbesondere wenn die Ansicht contrib.auth.login keinen next Parameter übermittelt bekommt. Wird z.B. vom login_required() Decorator benutzt. Diese Einstellung akzeptiert auch die Eingabe von URL-Mustern, wenn mehrfach gleiche Konfigurationen an verschiedenen Stellen vermieden werden sollen (z.B. in 'Einstellungen' und URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -527,7 +535,7 @@ msgid "" "places (settings and URLconf)." msgstr "Standard: None. Die URL zu der Benutzer nach der Nutzung von LogoutView weitergeleitet werden (wenn das Formular kein Argument für nächste Seite enthält). Mit None wird keine Weiterleitung durchgeführt und das Logout-Formular dargestellt. Diese Einstellung akzeptiert auch 'named URL patterns', die benutzt werden können um die URL nur an einer Stelle zu definieren (anstatt Einstellungen und URLconf)." -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -535,7 +543,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "Eine Liste von IP-Adressen (als Zeichenketten). Ermöglicht dem debug() context processor einige Variablen zum Vorlagenkontext hinzuzufügen. Kann admindocs bookmarklets benutzen, auch wenn nicht als Benutzer angemeldet. Werden in AdminEmailHandler E-Mails als \"internal\" (im Gegensatz zu \"EXTERNAL\") markiert." -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -544,7 +552,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "Liste von verfügbaren Sprachen. Die Liste setzt sich zusammen aus Zweier-Tupeln mit dem Format (Sprachencode, Sprachenname), z.B. ('ja', 'Japanese'). Diese Eintellung bestimmt die für die Auswahl verfügbaren Sprachen. Üblicherweise sollte die Einstellung des Standardwerts ausreichen. Benutzen Sie diese Einstellung nur, wenn Sie die Auswahl auf eine Untermenge der von Django zur Verfügung gestellten Sprachen einstellen wollen." -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -556,7 +564,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "Eine Zeichenkette, die den Sprachencode für diese Installation festlegt. Das Format sollte das Standardsprachenformat für IDs sein, z.B. \"en-us\" für U.S. English. Die Einstellung dient zwei Zwecken: Wenn die Lokalisierungs-Middleware nicht in Gebrauch ist, bestimmt sie die Übersetzung für alle Benutzer. Wenn die Lokalisierungs-Middleware in Gebrauch ist, bestimmt sie die Rückfallsprache, wenn die bevorzugte Sprache des Benutzers nicht ermittelt werden kann oder von der Website nicht unterstützt wird. Außerdem dient sie als Rückfallübersetzung, wenn eine Übersetzung in der vom Benutzer eingestellten Sprache nicht existiert." -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -564,7 +572,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -572,14 +580,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "Das Backend für die Speicherung von statischen Dateien mit dem collectstatic Management-Kommando. Eine betriebsfertige Instanz des Speicherungsbackends kann in django.contrib.staticfiles.storage.staticfiles_storage gefunden werden." -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "Eine Zeichenkette für die Zeitzone dieser Installation. Die muss nicht unbedingt die Zeitzone des Servers sein. Zum Beispiel kann ein Server mehrere Django-Sites bedienen, jede mit einer eigenen Zeitzoneneinstellung." -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -587,11 +595,11 @@ msgid "" "it, and point this setting to that application." msgstr "Der volle Pythonpfad für die WSGI application, das Django's built-in servers (e.g. runserver) benutzen wird. Das django-admin startproject Management-Kommando erstellt eine einfache wsgi.py Datei mit einem application callable, auf das diese Einstellung zeigt." -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -599,7 +607,7 @@ msgid "" "specific transports default values." msgstr "Standard: \"amqp://\". Die Standard Broker-URL. Muss in folgender Form angegeben werden: transport://userid:password@hostname:port/virtual_host\nNur das Schema (transport://) muss angegeben werden, der Rest ist optional und verweist auf die Standardwerte." -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/el/LC_MESSAGES/django.mo b/mayan/apps/common/locale/el/LC_MESSAGES/django.mo index c1435e294d..4f87852ea3 100644 Binary files a/mayan/apps/common/locale/el/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/el/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/el/LC_MESSAGES/django.po b/mayan/apps/common/locale/el/LC_MESSAGES/django.po index 44eceac6ee..47b2908871 100644 --- a/mayan/apps/common/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/el/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" @@ -319,41 +319,57 @@ msgid "" "propagate." msgstr "Χρόνος αναμονής για ενέργειες παρασκηνίου που εξαρτώνται από την καταχώρηση στην βάση δεδομένων για να ολοκληρωθούν." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Διαδρομή όπου θα αποθηκευτεί το ημερολόγιο καταγραφής σφαλμάτων κατά την λειτουργεία του συστήματος." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -368,7 +384,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -378,13 +394,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,7 +409,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -408,14 +424,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,23 +457,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -465,7 +481,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,22 +491,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -499,7 +507,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,7 +516,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -518,7 +526,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,7 +563,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -563,14 +571,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,11 +586,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -590,7 +598,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.po b/mayan/apps/common/locale/en/LC_MESSAGES/django.po index 2826219f41..016ee5c88e 100644 --- a/mayan/apps/common/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -318,41 +318,57 @@ msgid "" "Time to delay background tasks that depend on a database commit to propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package " +"containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also " "the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which " @@ -367,7 +383,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the " @@ -376,13 +392,13 @@ msgid "" "used if CommonMiddleware is installed (see Middleware). See also PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -391,7 +407,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -406,14 +422,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -421,17 +437,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -439,23 +455,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the " "SMTP server. This is used for explicit TLS connections, generally on port " @@ -463,7 +479,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -473,22 +489,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login, " "especially when using the login_required() decorator. This setting also " @@ -497,7 +505,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -506,7 +514,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no " @@ -516,7 +524,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -524,7 +532,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -533,7 +541,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -545,7 +553,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -553,7 +561,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -561,14 +569,14 @@ msgid "" "storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -576,11 +584,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of: " "transport://userid:password@hostname:port/virtual_host Only the scheme part " @@ -588,7 +596,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to http://docs.celeryproject.org/en/v4.1.0/" diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.mo b/mayan/apps/common/locale/es/LC_MESSAGES/django.mo index 6387812b85..d0e4c16c3a 100644 Binary files a/mayan/apps/common/locale/es/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/es/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index c247254fbe..da061bab20 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/es/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:55+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -323,41 +323,57 @@ msgid "" "propagate." msgstr "Tiempo para retrasar las tareas de fondo que dependen de la propagación de información en la base de datos." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "Nombre de la vista adjunta al ancla de la marca en el menú principal. Esta es también la vista a la que los usuarios serán redirigidos después de iniciar sesión." -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "El número de objetos que se mostrarán por página." -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "Habilite el registro de errores fuera de las capacidades de registro de errores del sistema." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Ruta de acceso al archivo de registro que rastreará errores durante la producción." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nombre que se mostrará en el menú principal." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "URL de la instalación o página de inicio del proyecto." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Un soporte de almacenamiento que todos los 'workers' puedan utilizar para compartir archivos." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -372,7 +388,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "Una lista de cadenas que representan los nombres de host / dominio que este sitio puede servir. Esta es una medida de seguridad para evitar los ataques de encabezado HTTP Host, que son posibles incluso bajo muchas configuraciones de servidor web aparentemente seguras. Los valores en esta lista pueden ser nombres totalmente calificados (por ejemplo, 'www.ejemplo.com'), en cuyo caso se compararán exactamente con el encabezado Host de la solicitud (no distingue entre mayúsculas y minúsculas, sin incluir el puerto). Un valor que comienza con un punto se puede usar como un comodín de subdominio: '.example.com' coincidirá con example.com, www.example.com y cualquier otro subdominio de example.com. Un valor de '*' coincidirá con cualquier cosa; en este caso, usted es responsable de proporcionar su propia validación del encabezado de host (quizás en un middleware, si es así, este middleware debe aparecer primero en MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -382,13 +398,13 @@ msgid "" "PREPEND_WWW." msgstr "Cuando se establece en True, si la URL de solicitud no coincide con ninguno de los patrones en el URLconf y no termina en una barra inclinada, se emite un redireccionamiento HTTP a la misma URL con una barra inclinada. Tenga en cuenta que la redirección puede hacer que se pierdan los datos enviados en una solicitud POST. La configuración APPEND_SLASH solo se usa si está instalado CommonMiddleware (ver Middleware). Ver también PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "La lista de validadores que se utilizan para verificar la seguridad de las contraseñas de los usuarios." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -397,7 +413,7 @@ msgid "" "databases may also be specified." msgstr "Un diccionario que contiene la configuración de todas las bases de datos que se utilizarán con Django. Es un diccionario anidado cuyos contenidos asignan un alias de base de datos a un diccionario que contiene las opciones para una base de datos individual. La configuración DATABASES debe configurar una base de datos predeterminada; también se puede especificar cualquier cantidad de bases de datos adicionales." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -412,14 +428,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo en bytes que puede ser un cuerpo de solicitud antes de que se genere una Operación Sospechosa (RequestDataTooBig). La comprobación se realiza al acceder a request.body o request.POST y se calcula con respecto al tamaño total de la solicitud, excluyendo cualquier archivo de carga de datos. Puede configurar esto en Ninguno para desactivar la verificación. Las aplicaciones que se espera que reciban publicaciones de forma inusualmente grande deben ajustar esta configuración. La cantidad de datos de solicitud se correlaciona con la cantidad de memoria necesaria para procesar la solicitud y llenar los diccionarios GET y POST. Las solicitudes grandes podrían usarse como un vector de ataque de denegación de servicio si no se seleccionan. Dado que los servidores web normalmente no realizan una inspección profunda de solicitudes, no es posible realizar una comprobación similar en ese nivel. Ver también FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "Predeterminado:'webmaster@localhost' Dirección de correo electrónico predeterminada que se usa para la correspondencia automatizada del administrador(es) del sitio. Esto no incluye los mensajes de error enviados a ADMINS y MANAGERS; para eso, vea SERVER_EMAIL." -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -427,17 +443,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "Valor predeterminado: [] (lista vacía). Lista de objetos de expresiones regulares compilados que representan cadenas de User-Agent que no pueden visitar ninguna página, en todo el sistema. Úselo para robots / rastreadores malos. Esto solo se usa si CommonMiddleware está instalado (ver Middleware)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "Valor predeterminado: 'django.core.mail.backends.smtp.EmailBackend'. El backend para usar para enviar correos electrónicos." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Valor predeterminado: 'localhost'. El host que se usará para enviar correos electrónicos." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -445,23 +461,23 @@ msgid "" "Django won't attempt authentication." msgstr "Valor predeterminado: '' (cadena vacía). Contraseña para usar para el servidor SMTP definido en EMAIL_HOST. Esta configuración se usa junto con EMAIL_HOST_USER al autenticarse en el servidor SMTP. Si cualquiera de estas configuraciones está vacía, Django no intentará la autenticación." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "Valor predeterminado: '' (cadena vacía). Nombre de usuario a usar para el servidor SMTP definido en EMAIL_HOST. Si está vacío, Django no intentará la autenticación." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "Valor predeterminado: 25. Puerto para usar para el servidor SMTP definido en EMAIL_HOST." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "Predeterminado: ninguno Especifica un tiempo de espera en segundos para operaciones de bloqueo como el intento de conexión." -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -469,7 +485,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "Predeterminado: Falso. Si se debe usar una conexión TLS (segura) cuando se habla con el servidor SMTP. Esto se usa para conexiones explícitas de TLS, generalmente en el puerto 587. Si experimenta conexiones suspendidas, consulte la configuración de TLS implícita EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -479,22 +495,14 @@ msgid "" "those settings to True." msgstr "Predeterminado: Falso. Si se debe usar una conexión TLS (segura) implícita al hablar con el servidor SMTP. En la mayoría de la documentación de correo electrónico, este tipo de conexión TLS se conoce como SSL. Generalmente se usa en el puerto 465. Si tiene problemas, consulte la configuración de TLS explícita EMAIL_USE_TLS. Tenga en cuenta que EMAIL_USE_TLS / EMAIL_USE_SSL son mutuamente excluyentes, por lo que solo debe establecer una de esas configuraciones en True." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "Valor predeterminado: 2621440 (es decir, 2,5 MB). El tamaño máximo (en bytes) que una carga será antes de que se transmita al sistema de archivos. Consulte Administración de archivos para más detalles. Ver también DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "Una lista de cadenas que designan todas las aplicaciones que están habilitadas en esta instalación de Django. Cada cadena debe ser una ruta de Python punteada a: una clase de configuración de la aplicación (preferida), o un paquete que contenga una aplicación." - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -503,7 +511,7 @@ msgid "" "and URLconf)." msgstr "Valor predeterminado: '/ accounts / login /' La URL donde las solicitudes se redireccionan para iniciar sesión, especialmente cuando se utiliza el decodificador login_required (). Esta configuración también acepta patrones de URL nombrados que se pueden usar para reducir la duplicación de configuración, ya que no tiene que definir la URL en dos lugares (configuración y URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -512,7 +520,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "Valor predeterminado: '/ accounts / profile /' La URL donde las solicitudes se redirigen después del inicio de sesión cuando la vista contrib.auth.login no obtiene el siguiente parámetro. Esto es usado por el decorador login_required (), por ejemplo. Esta configuración también acepta patrones de URL nombrados que se pueden usar para reducir la duplicación de configuración, ya que no tiene que definir la URL en dos lugares (configuración y URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -522,7 +530,7 @@ msgid "" "places (settings and URLconf)." msgstr "Predeterminado: Ninguno. La URL donde se redirigen las solicitudes después de que un usuario cierre sesión usando LogoutView (si la vista no obtiene un argumento next_page). Si Ninguno, no se realizará una redirección y se procesará la vista de cierre de sesión. Esta configuración también acepta patrones de URL con nombre que se pueden usar para reducir la duplicación de la configuración, ya que no tiene que definir la URL en dos lugares (configuración y URLconf)." -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -530,7 +538,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "Una lista de direcciones IP, como cadenas, que: Permiten que el procesador de contexto debug() agregue algunas variables al contexto de la plantilla. Puede usar los marcadores de Admindocs incluso si no ha iniciado sesión como usuario del personal. Están marcados como 'internos' (a diferencia de 'EXTERNOS') en los correos electrónicos de AdminEmailHandler." -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -539,7 +547,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "Una lista de todos los idiomas disponibles. La lista es una lista de dos tuplas en el formato (código de idioma, nombre del idioma), por ejemplo, ('ja', 'Japonés'). Esto especifica qué idiomas están disponibles para la selección de idiomas. Generalmente, el valor predeterminado debería ser suficiente. Solo establezca esta configuración si desea restringir la selección de idioma a un subconjunto de los idiomas proporcionados por Django." -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -551,7 +559,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "Un texto que representa el código de idioma para esta instalación. Esto debe estar en formato de ID de idioma estándar. Por ejemplo, el inglés de EE. UU. Es 'en-us'. Tiene dos propósitos: si el middleware de configuración regional no está en uso, decide qué traducción se sirve a todos los usuarios. Si el middleware de configuración regional está activo, proporciona un idioma alternativo en caso de que el idioma preferido del usuario no se pueda determinar o el sitio web no lo admita. También proporciona la traducción alternativa cuando no existe una traducción para un literal dado para el idioma preferido del usuario." -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -559,7 +567,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "URL a usar cuando se hace referencia a archivos estáticos ubicados en STATIC_ROOT. Ejemplo: \"/static/\" o \"http://static.example.com/\". Si no es None, se usará como ruta base para las definiciones de activos (la clase Media) y la aplicación staticfiles. Debe terminar en una barra inclinada si se establece en un valor no vacío." -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -567,14 +575,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "El motor de almacenamiento de archivos que se utiliza al recopilar archivos estáticos con el comando de gestión collectstatic. Puede encontrar una instancia lista para usar del backend de almacenamiento definido en esta configuración en django.contrib.staticfiles.storage.staticfiles_storage." -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "Una cadena que representa la zona horaria para esta instalación. Tenga en cuenta que esto no es necesariamente la zona horaria del servidor. Por ejemplo, un servidor puede servir múltiples sitios con Django, cada uno con una configuración de zona horaria separada." -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -582,11 +590,11 @@ msgid "" "it, and point this setting to that application." msgstr "La ruta completa de Python del objeto de aplicación WSGI que usarán los servidores incorporados de Django (por ejemplo, runserver). El comando django-admin startproject management creará un archivo wsgi.py simple con una aplicación invocable en él, y señalará esta configuración a esa aplicación." -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -594,7 +602,7 @@ msgid "" "specific transports default values." msgstr "Valor predeterminado: \"amqp://\". URL del intermediario predeterminado Debe ser una URL en forma de: transporte://usuario:contraseña@servidor:puerto/virtual_host Solo se requiere la parte de esquema (transporte: //), el resto es opcional y se predetermina a los valores predeterminados de transporte específico." -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo index f23852f5b5..18db48fa26 100644 Binary files a/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po index 5a588e3702..4f49eb05c3 100644 --- a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" @@ -321,41 +321,57 @@ msgid "" "propagate." msgstr "زمان برای به تاخیر انداختن وظایف پس زمینه که به پایگاه داده متعهد به انتشار است." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "مسیر فایل logfile که خطاهای تولید را دنبال می کند." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "محلی که کلیه کاربران جهت به اشتراک گذاری فایل میتوانند استفاه کنند." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -370,7 +386,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -380,13 +396,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -395,7 +411,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -410,14 +426,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -425,17 +441,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -443,23 +459,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -467,7 +483,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,22 +493,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -501,7 +509,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -510,7 +518,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -520,7 +528,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -528,7 +536,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -537,7 +545,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,7 +557,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -557,7 +565,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -565,14 +573,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -580,11 +588,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -592,7 +600,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo index 2c9bf41705..ee48a870dc 100644 Binary files a/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po index 265a66176c..ce398fd7f3 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" @@ -328,41 +328,57 @@ msgid "" "propagate." msgstr "Durée de temporisation des tâches d'arrière plan dépendant d'une mise à jour de la base de données." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "Activer la journalisation des erreurs en dehors des capacités de journalisation du système d'erreur." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Chemin d'accès au fichier journal qui enregistrera les erreurs pendant la production." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nom qui sera affiché dans le menu principal." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "URL de l'installation ou de la page d'accueil du projet." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Un espace de stockage que tous les agents pourront utiliser pour partager des fichiers." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -377,7 +393,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -387,13 +403,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "La liste des validateurs utilisés pour vérifier la force des mots de passe de l'utilisateur." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -402,7 +418,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -417,14 +433,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -432,17 +448,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Par défaut: 'localhost'. L'hôte à utiliser pour l'envoi de courriel." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -450,23 +466,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -474,7 +490,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -484,22 +500,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -508,7 +516,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -517,7 +525,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -527,7 +535,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -535,7 +543,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -544,7 +552,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -556,7 +564,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -564,7 +572,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -572,14 +580,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -587,11 +595,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -599,7 +607,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo index 7e99c9d346..b2c0ff9d06 100644 Binary files a/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index 1e35232235..d2043a58cc 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" @@ -320,41 +320,57 @@ msgid "" "propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -369,7 +385,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -379,13 +395,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,7 +410,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -409,14 +425,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -424,17 +440,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -442,23 +458,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -466,7 +482,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -476,22 +492,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -500,7 +508,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -509,7 +517,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -519,7 +527,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +535,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +544,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +556,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,7 +564,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -564,14 +572,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,11 +587,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -591,7 +599,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.mo b/mayan/apps/common/locale/id/LC_MESSAGES/django.mo index 38822dee44..bafbc9c3d4 100644 Binary files a/mayan/apps/common/locale/id/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/id/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index 77146bf2a1..c0d1555e9a 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" @@ -319,41 +319,57 @@ msgid "" "propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -368,7 +384,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -378,13 +394,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,7 +409,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -408,14 +424,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,23 +457,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -465,7 +481,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,22 +491,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -499,7 +507,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,7 +516,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -518,7 +526,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,7 +563,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -563,14 +571,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,11 +586,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -590,7 +598,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.mo b/mayan/apps/common/locale/it/LC_MESSAGES/django.mo index 0fbd099a22..9af94a3266 100644 Binary files a/mayan/apps/common/locale/it/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/it/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index d3bb2cfa99..c3b1100b32 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/LC_MESSAGES/django.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" @@ -325,41 +325,57 @@ msgid "" "propagate." msgstr "Il ritardo per i task in background dipende dalla propagazione del commit su database." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "Nome della vista collegata all'ancora brand nel menù principale. Questa è anche la vista alla quale gli utenti verranno reindirizzati dopo il login." -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Percorso del file di log su cui verranno scritti gli errori in produzione." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nome da visualizzare nel menù principale." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "URL dell'installazione o pagina home del progetto." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Un backend di memorizzazione che tutti i lavoratori possono utilizzare per condividere i file." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -374,7 +390,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "Una lista di stringhe con i nomi host o nomi di dominio che questo sito può servire. Si tratta di una misura di sicurezza per prevenire attacchi con l'intestazione HTTP Host, che sono possibili in tante configurazioni dei web server anche apparentemente sicure. I valori in questa lista possono essere FQDN (es. 'www.nomesito.it'), nel quale caso verranno confrontati con l'header di richiesta Host in maniera esatta (senza controllo maiuscole e senza la porta). Una stringa che inizi con un punto può essere usata come wildcard per il sottodominio: '.nomesito.it' sarà valido per nomesito.it, www.nomesito.it e qualunque altro sottodominio di nomesito.it. Il valore '*' corrisponde a qualunque sito; in questo caso sei tu responsabile di validare in qualche modo l'intestazione Host (magari in un middleware, in tal caso deve essere il primo della lista MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -384,13 +400,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "La lista dei validatori usati per controllare l'efficacia delle password degli utenti." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -399,7 +415,7 @@ msgid "" "databases may also be specified." msgstr "Un dizionario che contiene le impostazioni per tutti i database da usare con Django. È un dizionario innestato le cui chiavi sono alias di database e i valori sono i dizionari con le opzioni per ogni database. L'impostazione DATABASES deve contenere un database chiamato 'default'; è possibile poi specificare ulteriori database aggiuntivi." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -414,14 +430,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -429,17 +445,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -447,23 +463,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -471,7 +487,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -481,22 +497,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -505,7 +513,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -514,7 +522,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -524,7 +532,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -532,7 +540,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -541,7 +549,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -553,7 +561,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -561,7 +569,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -569,14 +577,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -584,11 +592,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -596,7 +604,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo index 165056e725..f4d6f70230 100644 Binary files a/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po b/mayan/apps/common/locale/lv/LC_MESSAGES/django.po index 9866faa9e8..20523c2d05 100644 --- a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -320,41 +320,57 @@ msgid "" "propagate." msgstr "Laiks uz kādu aizkavēt fona uzdevumus, kas ir atkarīgs no datu bāzes apņemšanās uz izplatīšanu." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "Zīmola enkuram pievienotā skata nosaukums galvenajā izvēlnē. Tas ir arī skats, uz kuru pēc pierakstīšanās lietotāji tiks novirzīti." -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." -msgstr "" +msgstr "Objektu skaits, kas tiks rādīti vienā lapā." -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "Iespējot kļūdu reģistrēšanu ārpus sistēmas kļūdu reģistrēšanas iespējām." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Ceļš uz žurnāla failu, kurā tiks novērotas kļūdas ražošanas laikā." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nosaukums, kas jārāda galvenajā izvēlnē." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "Projekta instalācijas vai mājas lapas URL." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Uzglabāšanas backend, ko visi darbinieki var izmantot, lai koplietotu failus." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -367,9 +383,9 @@ msgid "" " match anything; in this case you are responsible to provide your own " "validation of the Host header (perhaps in a middleware; if so this " "middleware must be listed first in MIDDLEWARE)." -msgstr "Saraksts ar virknēm, kas pārstāv vietnes / domēna vārdus, kurus šī vietne var pasniegt. Šis ir drošības pasākums, lai novērstu HTTP uzņēmēja galvenes uzbrukumus, kas ir iespējami pat daudzās šķietami drošās tīmekļa servera konfigurācijās. Vērtības šajā sarakstā var būt pilnībā kvalificēti vārdi (piemēram, “www.example.com”), un tādā gadījumā tie tiks precīzi saskaņoti ar pieprasījuma Host galvenes virsrakstu (nejūtīga, neietverot portu). Vērtību, kas sākas ar punktu, var izmantot kā apakšdomēna aizstājējzīmi: '.example.com' atbilst example.com, www.example.com un jebkuram citam example.com apakšdomēnam. Vērtība '*' atbilst jebkuram; šajā gadījumā jūs esat atbildīgs par savas galvenes apstiprinājuma apstiprināšanu (varbūt starpprogrammatūrā; ja tā, tad starpprogrammatūra vispirms jānorāda iekš MIDDLEWARE)." +msgstr "Saraksts ar virknēm, kas pārstāv vietnes/domēna vārdus, kurus šī vietne var pasniegt. Šis ir drošības pasākums, lai novērstu HTTP uzņēmēja galvenes uzbrukumus, kas ir iespējami pat daudzās šķietami drošās tīmekļa servera konfigurācijās. Vērtības šajā sarakstā var būt pilnībā kvalificēti vārdi (piemēram, “www.example.com”), un tādā gadījumā tie tiks precīzi saskaņoti ar pieprasījuma Host galvenes virsrakstu (nejūtīga, neietverot portu). Vērtību, kas sākas ar punktu, var izmantot kā apakšdomēna aizstājējzīmi: '.example.com' atbilst example.com, www.example.com un jebkuram citam example.com apakšdomēnam. Vērtība '*' atbilst jebkuram; šajā gadījumā jūs esat atbildīgs par savas galvenes apstiprinājuma apstiprināšanu (varbūt starpprogrammatūrā; ja tā, tad starpprogrammatūra vispirms jānorāda iekš MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -379,13 +395,13 @@ msgid "" "PREPEND_WWW." msgstr "Ja iestatījums ir True, un pieprasījuma URL neatbilst nevienam no URLconf modeļiem un tas nenotiek slīpsvītrā, HTTP novirzīšana tiek izdota tam pašam URL ar pievienoto slīpsvītru. Ņemiet vērā, ka novirzīšana var izraisīt jebkādu POST pieprasījumā iesniegto datu pazaudēšanu. Iestatījums APPEND_SLASH tiek izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. Starpprogrammatūra). Skatiet arī PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "Validatoru saraksts, kurus izmanto, lai pārbaudītu lietotāja paroļu stiprumu." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,7 +410,7 @@ msgid "" "databases may also be specified." msgstr "Vārdnīca ar visu Django lietojamo datu bāzu iestatījumiem. Tā ir ligzdota vārdnīca, kuras saturs iezīmē datubāzes aizstājvārdu vārdnīcā, kurā ir atsevišķas datu bāzes iespējas. DATABASES iestatījumam jākonfigurē noklusējuma datu bāze; var norādīt arī jebkuru papildu datu bāzu skaitu." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -409,56 +425,56 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums baitos, ko pieprasīšanas struktūra var būt pirms aizdomīgas darbības (RequestDataTooBig) palielināšanas. Pārbaude tiek veikta, piekļūstot pieprasījumam.body vai request.POST, un tiek aprēķināta pēc kopējā pieprasījuma lieluma, izņemot visus failu augšupielādes datus. To var iestatīt uz Nav, lai izslēgtu pārbaudi. Lietojumprogrammām, kurām sagaidāms, ka tās saņems neparasti lielas veidlapas ziņas, ir jākontrolē šis iestatījums. Pieprasījuma datu apjoms ir saistīts ar atmiņas apjomu, kas nepieciešams, lai apstrādātu pieprasījumu un aizpildītu GET un POST vārdnīcas. Lielus pieprasījumus var izmantot kā pakalpojumu atteikšanas uzbrukuma vektoru, ja tas netiek pārbaudīts. Tā kā tīmekļa serveri parasti neveic dziļu pieprasījumu pārbaudi, nav iespējams veikt līdzīgu pārbaudi šajā līmenī. Skatiet arī FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "Noklusējums: “webmaster@localhost” Noklusējuma e-pasta adrese, ko izmanto dažādai automatizētai sarakstei no vietnes pārvaldnieka (-iem). Tas neietver kļūdas ziņojumus, kas nosūtīti ADMINS un MANAGERS; par to skatiet SERVER_EMAIL." -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " "systemwide. Use this for bad robots/crawlers. This is only used if " "CommonMiddleware is installed (see Middleware)." -msgstr "Noklusējums: [] (Tukšs saraksts). Sastādīto regulāro izteiksmes objektu saraksts, kas pārstāv lietotāja-aģentu virknes, kurām nav atļauts apmeklēt jebkuru lapu. Izmantojiet to sliktiem robotiem / rāpuļprogrammām. Tas tiek izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. Starpprogrammatūra)." +msgstr "Noklusējums: [] (Tukšs saraksts). Sastādīto regulāro izteiksmes objektu saraksts, kas pārstāv lietotāja-aģentu virknes, kurām nav atļauts apmeklēt jebkuru lapu. Izmantojiet to sliktiem robotiem/rāpuļprogrammām. Tas tiek izmantots tikai tad, ja ir instalēta CommonMiddleware (sk. Starpprogrammatūra)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "Noklusējums: “django.core.mail.backends.smtp.EmailBackend”. Backend, ko izmanto e-pasta sūtīšanai." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Noklusējums: “localhost”. Hosts, ko izmanto e-pasta sūtīšanai." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " "authenticating to the SMTP server. If either of these settings is empty, " "Django won't attempt authentication." -msgstr "Noklusējums: '' (Tukša virkne). Parole, ko izmantot SMTP serverim, kas definēts vietnē EMAIL_HOST. Šis iestatījums tiek izmantots kopā ar EMAIL_HOST_USER autentificējot SMTP serveri. Ja kāds no šiem iestatījumiem ir tukšs, Django neveic autentifikāciju." +msgstr "Noklusējums: '' (Tukša virkne). Parole, ko izmantot SMTP serverim, kas definēts vietnē EMAIL_HOST. Šis iestatījums tiek izmantots kopā ar EMAIL_HOST_USER autentificējot SMTP serveri. Ja kāds no šiem iestatījumiem ir tukšs, Django neveic autentifikāciju." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." -msgstr "Noklusējums: '' (Tukša virkne). Lietotājvārds, ko izmantot SMTP serverim, kas definēts pakalpojumā EMAIL_HOST. Ja tukšs, Django neizmēģinās autentifikāciju." +msgstr "Noklusējums: '' (Tukša virkne). Lietotājvārds, ko izmantot SMTP serverim, kas definēts pakalpojumā EMAIL_HOST. Ja tukšs, Django neizmēģinās autentifikāciju." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "Noklusējums: 25. Portu, ko izmantot SMTP serverim, kas definēts EMAIL_HOST." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "Noklusējums: nav. Norāda taimautu sekundēs, lai bloķētu darbības, piemēram, savienojuma mēģinājumu." -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -466,7 +482,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "Noklusējums: False. Vai lietojat TLS (drošu) savienojumu, runājot ar SMTP serveri. Tas tiek izmantots skaidriem TLS savienojumiem, parasti 587. portā. Ja rodas savienojumi ar kabeļiem, skatiet netiešo TLS iestatījumu EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -474,42 +490,34 @@ msgid "" "are experiencing problems, see the explicit TLS setting EMAIL_USE_TLS. Note " "that EMAIL_USE_TLS/EMAIL_USE_SSL are mutually exclusive, so only set one of " "those settings to True." -msgstr "Noklusējums: False. Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS iestatījumu EMAIL_USE_TLS. Ņemiet vērā, ka EMAIL_USE_TLS / EMAIL_USE_SSL ir savstarpēji izslēdzoši, tāpēc tikai vienu no šiem iestatījumiem iestatiet uz True." +msgstr "Noklusējums: False. Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS iestatījumu EMAIL_USE_TLS. Ņemiet vērā, ka EMAIL_USE_TLS/EMAIL_USE_SSL ir savstarpēji izslēdzoši, tāpēc tikai vienu no šiem iestatījumiem iestatiet uz True." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "Noklusējums: 2621440 (ti, 2,5 MB). Maksimālais lielums (baitos), ko augšupielāde būs pirms straumēšanas datņu sistēmā. Papildinformāciju skatiet sadaļā Failu pārvaldīšana. Skatiet arī DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "Saraksts ar virknēm, kas apzīmē visas programmas, kas ir iespējotas šajā Django instalācijā. Katrai virknei vajadzētu būt punktveida Python ceļam uz: lietojumprogrammas konfigurācijas klasi (vēlamo) vai paketi, kurā ir lietojumprogramma." - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " "accepts named URL patterns which can be used to reduce configuration " "duplication since you don't have to define the URL in two places (settings " "and URLconf)." -msgstr "Noklusējums: '/ accounts / login /' URL, kurā pieprasījumi tiek novirzīti, lai pieteiktos, īpaši, ja izmantojat login_required () dekoratoru. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." +msgstr "Noklusējums: '/accounts/login/' URL, kurā pieprasījumi tiek novirzīti, lai pieteiktos, īpaši, ja izmantojat login_required () dekoratoru. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " "by the login_required() decorator, for example. This setting also accepts " "named URL patterns which can be used to reduce configuration duplication " "since you don't have to define the URL in two places (settings and URLconf)." -msgstr "Noklusējums: '/ accounts / profile /' URL, kurā pieprasījumi tiek novirzīti pēc pieteikšanās brīdī, kad skats par ieguldījumu.auth.login nesaņem nākamo parametru. To izmanto, piemēram, login_required () dekorētājs. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." +msgstr "Noklusējums: '/accounts/profile/' URL, kurā pieprasījumi tiek novirzīti pēc pieteikšanās brīdī, kad skats par ieguldījumu.auth.login nesaņem nākamo parametru. To izmanto, piemēram, login_required () dekorētājs. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -519,24 +527,24 @@ msgid "" "places (settings and URLconf)." msgstr "Noklusējums: nav. URL, kurā pieprasījumi tiek novirzīti pēc tam, kad lietotājs ir pieteicies, izmantojot LogoutView (ja skats nesaņem nākamo lapu argumentu). Ja nav, netiks veikta novirzīšana un tiks atteikts logout skats. Šis iestatījums arī pieņem nosauktos URL modeļus, kurus var izmantot, lai samazinātu konfigurācijas dublēšanos, jo jums nav jādefinē URL divās vietās (iestatījumi un URLconf)." -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " "admindocs bookmarklets even if not logged in as a staff user. Are marked as " "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." -msgstr "IP adrešu saraksts kā virknes, kas: Ļauj atkļūdošanas () konteksta procesoram pievienot dažus mainīgos veidnes kontekstam. Var izmantot admindocs grāmatzīmes, pat ja nav pieteicies kā personāla lietotājs. Tiek atzīmēti kā "iekšējie" (atšķirībā no "EXTERNAL") AdminEmailHandler e-pastos." +msgstr "IP adrešu saraksts kā virknes, kas: Ļauj atkļūdošanas () konteksta procesoram pievienot dažus mainīgos veidnes kontekstam. Var izmantot admindocs grāmatzīmes, pat ja nav pieteicies kā personāla lietotājs. Tiek atzīmēti kā \"iekšējie\" (atšķirībā no \"EXTERNAL\") AdminEmailHandler e-pastos." -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " "specifies which languages are available for language selection. Generally, " "the default value should suffice. Only set this setting if you want to " "restrict language selection to a subset of the Django-provided languages. " -msgstr "Visu pieejamo valodu saraksts. Sarakstā ir iekļauts divu ierakstu saraksts (valodas kods, valodas nosaukums), piemēram, ('ja', 'japāņu'). Tas norāda, kuras valodas ir pieejamas valodas izvēlei. Parasti pietiek ar noklusējuma vērtību. Iestatiet šo iestatījumu tikai tad, ja vēlaties ierobežot valodu izvēli ar Django sniegto valodu apakškopu." +msgstr "Visu pieejamo valodu saraksts. Sarakstā ir iekļauts divu ierakstu saraksts (valodas kods, valodas nosaukums), piemēram, ('ja', 'japāņu'). Tas norāda, kuras valodas ir pieejamas valodas izvēlei. Parasti pietiek ar noklusējuma vērtību. Iestatiet šo iestatījumu tikai tad, ja vēlaties ierobežot valodu izvēli ar Django sniegto valodu apakškopu." -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -546,17 +554,17 @@ msgid "" "language can't be determined or is not supported by the website. It also " "provides the fallback translation when a translation for a given literal " "doesn't exist for the user's preferred language." -msgstr "Stringi, kas attēlo šīs instalācijas valodas kodu. Tam jābūt standarta valodas ID formātā. Piemēram, ASV angļu valoda ir "en-us". Tas kalpo diviem mērķiem: ja lokālā starpprogrammatūra netiek izmantota, tā nolemj, kurš tulkojums tiek nodrošināts visiem lietotājiem. Ja lokalizācijas starpprogrammatūra ir aktīva, tā nodrošina rezerves valodu, ja lietotāja vēlamo valodu nevar noteikt vai vietne to neatbalsta. Tā arī nodrošina rezerves tulkojumu, ja konkrētā literārā tulkojums nav lietotāja vēlamajai valodai." +msgstr "Stringi, kas attēlo šīs instalācijas valodas kodu. Tam jābūt standarta valodas ID formātā. Piemēram, ASV angļu valoda ir \"en-us\". Tas kalpo diviem mērķiem: ja lokālā starpprogrammatūra netiek izmantota, tā nolemj, kurš tulkojums tiek nodrošināts visiem lietotājiem. Ja lokalizācijas starpprogrammatūra ir aktīva, tā nodrošina rezerves valodu, ja lietotāja vēlamo valodu nevar noteikt vai vietne to neatbalsta. Tā arī nodrošina rezerves tulkojumu, ja konkrētā literārā tulkojums nav lietotāja vēlamajai valodai." -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " "used as the base path for asset definitions (the Media class) and the " "staticfiles app. It must end in a slash if set to a non-empty value." -msgstr "" +msgstr "URL, kas jāizmanto, atsaucoties uz statiskiem failiem, kas atrodas STATIC_ROOT. Piemērs: \"/static/\" vai \"http://static.example.com/\". Ja šī vērtība nav tukša, tā tiks izmantota kā bāzes ceļš aktīvu definīcijām (multivides Media klase) un staticfiles lietotnei. Ja vērtība nav tukša, tai ir jābeidzas ar slīpsvītru." -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -564,14 +572,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "Failu glabāšanas dzinējs, ko izmanto, lai savāktu statiskos failus ar kolektīvās pārvaldības komandu. Šajā iestatījumā definētais glabāšanas backend piemērs ir pieejams vietnē django.contrib.staticfiles.storage.staticfiles_storage." -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "Virkne, kas attēlo šīs instalācijas laika joslu. Ņemiet vērā, ka tas ne vienmēr ir servera laika josla. Piemēram, viens serveris var kalpot vairākām Django darbinātām vietnēm, katra ar atsevišķu laika joslu iestatījumu." -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,19 +587,19 @@ msgid "" "it, and point this setting to that application." msgstr "Pilns Python ceļš WSGI lietojumprogrammas objektam, ko izmantos Django iebūvētie serveri (piemēram, palaišanas serveris). Django-admin startproject vadības komanda izveidos vienkāršu wsgi.py failu ar tajā pieprasāmo lietojumprogrammu un norādīs šo iestatījumu uz šo programmu." -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Selerijas" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" " (transport://) is required, the rest is optional, and defaults to the " "specific transports default values." -msgstr "Noklusējums: "amqp: //". Noklusējuma starpnieka URL. Tam ir jābūt URL:" +msgstr "Noklusējums: \"amqp://\". Noklusējuma starpnieka URL. Tam ir jābūt URL šādā formā: transport://userid:password@hostname:port/virtual_host Nepieciešama tikai shēmas daļa (transport://), pārējais ir neobligāts, un pēc noklusējuma konkrētās transportēšanas noklusējuma vērtības." -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo index f937fe9acf..9ff8eae3aa 100644 Binary files a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po index 7b9ea82c00..a2821bc6b8 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -322,41 +322,57 @@ msgid "" "propagate." msgstr "Wachttijd voor achtergrondtaken die afhankelijk zijn van het verbreiden van een database commit." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Een opslagbackend die alle werkers kunnen gebruiken om bestanden te delen." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -371,7 +387,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -381,13 +397,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -396,7 +412,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -411,14 +427,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -426,17 +442,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -444,23 +460,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -468,7 +484,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -478,22 +494,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -502,7 +510,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -511,7 +519,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -521,7 +529,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -529,7 +537,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -538,7 +546,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -550,7 +558,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -558,7 +566,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -566,14 +574,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -581,11 +589,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -593,7 +601,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo index dd58dd4c0a..31858fe9cd 100644 Binary files a/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po index 6bafbc3e09..981986f681 100644 --- a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" @@ -326,41 +326,57 @@ msgid "" "propagate." msgstr "Czas opóźnienia wykonania zadań zależnych od operacji na bazie danych." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Ścieżka do pliku dziennika śledzącego błędy w systemie produkcyjnym." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Backend przechowywania umożliwiający wszystkim użytkownikom udostępnianie plików." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -375,7 +391,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -385,13 +401,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -400,7 +416,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -415,14 +431,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -430,17 +446,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -448,23 +464,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -472,7 +488,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -482,22 +498,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -506,7 +514,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -515,7 +523,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -525,7 +533,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -533,7 +541,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -542,7 +550,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -554,7 +562,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -562,7 +570,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -570,14 +578,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -585,11 +593,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -597,7 +605,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo index 54f37cf011..a9ddfde706 100644 Binary files a/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index 2b81d89b5d..5380f7b28a 100644 --- a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -322,41 +322,57 @@ msgid "" "propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -371,7 +387,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -381,13 +397,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -396,7 +412,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -411,14 +427,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -426,17 +442,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -444,23 +460,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -468,7 +484,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -478,22 +494,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -502,7 +510,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -511,7 +519,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -521,7 +529,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -529,7 +537,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -538,7 +546,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -550,7 +558,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -558,7 +566,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -566,14 +574,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -581,11 +589,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -593,7 +601,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo index e0597163de..54576439dc 100644 Binary files a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po index ef102e3609..051da5214c 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -325,41 +325,57 @@ msgid "" "propagate." msgstr "Tempo para atrasar as tarefas de fundo que dependem da propagação de informação na base de dados." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "Habilite registro de erros fora das capacidades do registro de erros do sistema." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Caminho para o arquivo de registro que rastreará erros durante a produção." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Nome a ser mostrado no menu principal." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "URL da instalação ou homepage do projeto." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Um suporte de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -374,7 +390,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "Uma lista de strings representando os nomes de host/domínio que este site pode utilizar. Esta é uma medida de segurança para prevenir ataques virtuais que utilizem Host header do protocolo HTTP, os quais são possíveis mesmo sob configurações aparentemente seguras de servidor web. Valores nesta lista podem ser nomes totalmente qualificados (por exemplo 'www.example.com'), que nestes casos coincidirão exatamente com as requisições do Host header (sem considerar maiúsculas ou minúsculas, não incluindo porta). Valores que começam com ponto podem ser usados como curingas para subdomínios: \".example.com\" coincidirá com \"example.com\", \"www.example.com\" e quaisquer outros subdomínios de \"example.com\". Um valor de '*' coincidirá com qualquer outro; nesse caso você será responsável porfornecer sua própria validação para o Host header (talvez num middleware; assim sendo o middleware deve ser listado primeiro em MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -384,13 +400,13 @@ msgid "" "PREPEND_WWW." msgstr "Quando indicado como Verdadeiro, caso a URL requisitada não coincida com os padrões na URLconf e não termine com uma barra, haverá um redirecionamento HTTP para a mesma URL com uma barra adicionada. Note que o redirecionamento pode fazer com que quaisquer dados submetidos numa requisição POST sejam perdidos. A configuração APPEND_SLASH é usada apenas se o CommonMiddleware estiver instalado (veja Middleware). Veja também PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -399,7 +415,7 @@ msgid "" "databases may also be specified." msgstr "Um dicionário contendo as configurações de todas as bases de dados a serem usadas com Django. Trata-se de um dicionário aninhado cujo conteúdo mapeia pseudônimos de bases de dados para um dicionário contendo as opções para cada base de dados específica. O parâmetro DATABASES deve configurar uma base de dados padrão; qualquer número de bases de dados adicionais deve ser especificado." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -414,14 +430,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo em bytes que um corpo de requisição pode atingir antes que se gere uma Operação Suspeita (RequestDataTooBig). A checagem é feita quando se acessa request.body ou request.POST e é calculada em relação ao tamanho total da solicitação, excluindo qualquer arquivo de carga de dados. Você pode configurá-la para \"nenhuma\" para desativar a verificação. Aplicações para as quais se esperam publicações de tamanho muito grande devem ajustar esse parâmetro. A quantidade de dados da requisição está correlacionada com a quantidade de memória necessária para processá-la e povoar os dicionários GET e POST. As requisições grandes podem ser usadas como vetor de ataques de negação de serviço - \"denial-of-service\" - caso o parâmetro não seja preenchido. Dado que os servidores webnormalmente não realizam uma inspeção profunda das requisições, não é possível realizar uma verificação similar nesse nível. Veja também FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -429,17 +445,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "Valor padrão: [] (Lista vazia). Lista de objetos de expressões regulares compilados representando strings de User-Agent que não tem permissão para visitar nenhuma página em todo o sistema. Use contra maus robôs/rastradores. Este parâmetro só é usado com o CommonMiddleware instalado (veja Middleware)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "Valor padrão: 'django.core.mail.backends.smtp.EmailBackend'. O back-end usado para enviar e-mails." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Valor padrão: 'localhost'. O host usado para enviar e-mail." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -447,23 +463,23 @@ msgid "" "Django won't attempt authentication." msgstr "Valor padrão: '' (String vazia). Senha utilizada para o servidor SMTP definido em EMAIL_HOST. Este parâmetro é usado junto ao EMAIL_HOST_USER durante a autenticação no servidor SMTP. Se qualquer um desses parâmetros estiver vazio, Django não tentará a autenticação." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "Valor padrão '' (String vazia). Nome de usuário utilizado para o servidor SMTP definido em EMAIL_HOST. Se estiver vazio, Django não tentará a autenticação." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "Valor padrão: 25. Porta usada para o servidor SMTP definido em EMAIL_HOST." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "Valor padrão: Nenhum. Especifica um tempo de espera em segundos para operações de bloqueio, como tentativas de conexão." -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -471,7 +487,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "Valor padrão: Falso. Define se deve ser utilizada uma conexão TLS (segura) quando se comunica com o servidor SMTP. Isto é usado para conexões explícitas de TLS, geralmente na porta 587. Se você está experimentando conexões suspensas, consulte o parâmetro de TLS implícita EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -481,22 +497,14 @@ msgid "" "those settings to True." msgstr "Valor padrão: Falso. Define se deve ser utilizada uma conexão implícita TLS (segura) ao comunicar-se com o servidor SMTP. Na maior parte da documentação de e-mail este tipo de conexão TLS é conhecida como SSL. Geralmente é usada a porta 465. Se você está experimentando problemas, veja o parâmetro de TSL explícita EMAIL_USE_TLS. Tenha em mente que EMAIL_USE_TLS / EMAIL_USE_SSL são mutuamente excludentes, razão pela qual apenas um dos parâmetros pode ser Verdadeiro." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "Valor padrão: 2621440 (i.e. 2.5MB). O tamanho máximo (em bytes) que um upload terá antes de ser transmitida ao sistema de arquivos. Veja Administração de arquivos para detalhes. Veja ainda DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "Uma lista de strings designando todas as aplicações que estão habilitadas nesta instalação Django. Cada string deve ser um caminho de Python para: uma classe de configuração da aplicação (preferencial); ou um pacote contendo uma aplicação." - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -505,7 +513,7 @@ msgid "" "and URLconf)." msgstr "Valor padrão: '/accounts/login/' A URL onde as requisições são redirecionadas para iniciar a sessão, especialmente quando se utiliza o decorador login_required(). Este parâmetro também aceita padrões de URL que podem ser usados para reduzir a duplicação de configuração, uma vez que você não precisa definir a URL em dois lugares (parâmetros e URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -514,7 +522,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "Valor padrão: '/accounts/profile/' A URL para onde são redirecionadas as requisições após o início da sessão quando a vista contrib.auth.login não obtêm o próximo parâmetro. Isto é utilizado pelo decorador login_required() , por exemplo. Este parâmetro também aceita padrões de URL que podem ser usados para reduzir a duplicação de configuração, uma vez que você não precisa definir a URL em dois lugares (parâmetros e URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -524,7 +532,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -532,7 +540,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -541,7 +549,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -553,7 +561,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -561,7 +569,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -569,14 +577,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -584,11 +592,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -596,7 +604,7 @@ msgid "" "specific transports default values." msgstr "Valor padrão: \"amqp://\". URL do intermediário padrão. Deve ser uma URL em forma de: \"transport://userid:password@hostname:port/virtual_host\". Apenas a parte de esquema (transport://) é requerida, o resto é opcional e determina os valores padrão específicos de transportes." -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo index 465085ac56..847df109ce 100644 Binary files a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po index 79b515a600..c4e4e2402c 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" @@ -321,41 +321,57 @@ msgid "" "propagate." msgstr "Timpul de întârziere pentru sarcini de fundal care depind de propagarea schimbărilor în baza de date." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "Numele afișării atașate ancorei de marcă din meniul principal. Aceasta este și perspectiva la care utilizatorii vor fi redirecționați după conectare." -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." -msgstr "" +msgstr "Obiectele numerice care vor fi afișate pe pagină." -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "Activați înregistrarea erorilor în afara capabilităților de înregistrare a erorilor de sistem." -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Calea către fișierul jurnal care va urmări erorile în timpul producției." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "Numele care urmează să fie afișat în meniul principal." -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "Adresa URL a instalării sau a paginii de pornire a proiectului." -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Un backend de stocare pe care toți lucrătorii îl pot folosi pentru partajarea fișierelor." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -370,7 +386,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "O listă de șiruri reprezentând numele gazdă / domenii pe care acest site le poate difuza. Aceasta este o măsură de securitate pentru a preveni atacurile de antet gazdă HTTP, care sunt posibile chiar și în cazul multor configurații aparent confortabile ale serverului web. Valorile din această listă pot fi nume calificate complet (de exemplu, \"www.example.com\"), caz în care acestea vor fi potrivite exact cu antetul gazdei gazdă (fără majuscule, fără a include portul). O valoare care începe cu o un punct poate fi folosită ca un wildcard subdomeniu: '.example.com' se va potrivi cu example.com, www.example.com și orice alt subdomeniu al example.com. O valoare de '*' se va potrivi cu orice; în acest caz, sunteți responsabil să vă asigurați validarea propriu-zisă a antetului Host (poate într-un middleware, dacă acest lucru trebuie să fie menționat mai întâi în MIDDLEWARE)." -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -380,13 +396,13 @@ msgid "" "PREPEND_WWW." msgstr "Când este setat la True, dacă adresa URL a solicitării nu se potrivește cu niciunul dintre modelele din URLconf și nu se termină într-un / , redirecționarea HTTP se emite aceluiași URL cu / adăugat. Rețineți că redirecționarea poate duce la pierderea datelor transmise într-o solicitare POST. Setarea APPEND_SLASH este utilizată numai dacă este instalat CommonMiddleware (consultați Middleware). Consultați și PREPEND_WWW." -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "Lista de validatori folosită pentru a verifica puterea parolelor utilizatorului." -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -395,7 +411,7 @@ msgid "" "databases may also be specified." msgstr "Un dicționar care conține setările pentru toate bazele de date care vor fi utilizate cu Django. Acesta este un dicționar imbricat al cărui conținut alcătuiește un alias de bază de date într-un dicționar care conține opțiunile pentru o bază de date individuală. Setarea DATABASES trebuie să configureze o bază de date implicită; poate fi specificat orice număr de baze de date adiționale." -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -410,14 +426,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă în octeți pe care un corp de solicitare ar putea fi înainte ca o SuspiciousOperation (RequestDataTooBig) să fie ridicată. Verificarea se face când se accesează request.body sau request.POST și se calculează în funcție de dimensiunea totală a solicitării, excluzând datele de încărcare a fișierelor. Puteți seta această opțiune la None pentru a dezactiva verificarea. Aplicațiile care sunt așteptate să primească posturi neobișnuit de mari trebuie să ajusteze această setare. Suma datelor solicitate este corelată cu cantitatea de memorie necesară pentru procesarea solicitării și cu conținutul dicționarelor GET și POST. Solicitările mari ar putea fi folosite ca vector de atac al refuzului de serviciu dacă nu sunt bifate. Întrucât serverele web nu efectuează în mod obișnuit o inspecție profundă a solicitărilor, nu este posibil să efectuați o verificare similară la acel nivel. Consultați și FILE_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "Implicit: 'webmaster @ localhost' Adresa de e-mail implicită pentru a fi utilizată pentru diverse corespondențe automate de la administratorii site-ului. Aceasta nu include mesajele de eroare trimise ADMINS și MANAGERS; pentru asta, vezi SERVER_EMAIL." -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -425,17 +441,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "Implicit: [] (Listă goală). Lista de obiecte de expresie obișnuită compilate care reprezintă șiruri de caractere ale utilizatorilor care nu au permisiunea de a vizita nicio pagină, la nivel de sistem. Utilizați acest lucru pentru roboți / crawlere rele. Acest lucru este folosit numai dacă este instalat CommonMiddleware (consultați Middleware)." -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "Implicit: 'django.core.mail.backends.smtp.EmailBackend'. Backend-ul de utilizat pentru trimiterea de e-mailuri." -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "Implicit: \"localhost\". Gazda de utilizat pentru trimiterea de e-mailuri." -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -443,23 +459,23 @@ msgid "" "Django won't attempt authentication." msgstr "Implicit: '' (Șir gol). Parolă de utilizat pentru serverul SMTP definit în EMAIL_HOST. Această setare este utilizată împreună cu EMAIL_HOST_USER atunci când se autentifică la serverul SMTP. Dacă oricare dintre aceste setări este goală, Django nu va încerca autentificarea." -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "Implicit: '' (Șir gol). Utilizator de utilizat pentru serverul SMTP definit în EMAIL_HOST. Dacă este gol, Django nu va încerca autentificarea." -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "Implicit: 25. Portul de utilizat pentru serverul SMTP definit în EMAIL_HOST." -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "Implicit: Niciuna. Specifică un interval de timp în secunde pentru blocarea operațiilor, cum ar fi încercarea de conectare." -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -467,7 +483,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "Implicit: Fals. Dacă să utilizați o conexiune TLS (securizată) atunci când vorbiți cu serverul SMTP. Acesta este utilizat pentru conexiuni TLS explicite, în general pe portul 587. Dacă întâmpinați conexiuni suspendate, consultați setarea implicită TLS EMAIL_USE_SSL." -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,22 +493,14 @@ msgid "" "those settings to True." msgstr "Implicit: Fals. Dacă să utilizați o conexiune implicită TLS (securizată) atunci când vorbiți cu serverul SMTP. În majoritatea documentelor de e-mail, acest tip de conexiune TLS este denumit SSL. În general, este folosit pe portul 465. Dacă întâmpinați probleme, consultați setarea explicită TLS EMAIL_USE_TLS. Rețineți că EMAIL_USE_TLS / EMAIL_USE_SSL se exclud reciproc, deci setați numai una dintre aceste setări la True." -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "Implicit: 2621440 (adică 2,5 MB). Dimensiunea maximă (în octeți) pe care o încărcare va declanșa transmiterea în flux la sistemul de fișiere. Consultați Gestionarea fișierelor pentru detalii. Consultați și DATA_UPLOAD_MAX_MEMORY_SIZE." -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "O listă de șiruri care indică toate aplicațiile activate în această instalare Django. Fiecare șir ar trebui să fie o cale Python punctată la: o clasă de configurare a aplicației (preferată) sau un pachet care conține o aplicație." - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -501,7 +509,7 @@ msgid "" "and URLconf)." msgstr "Implicit: '/ accounts / login /' URL-ul în cazul în care cererile sunt redirecționate pentru autentificare, mai ales când utilizați decoratorul login_required (). Această setare acceptă, de asemenea, șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea configurației, deoarece nu trebuie să definiți adresa URL în două locuri (setări și URLconf)." -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -510,7 +518,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "Implicit: '/ accounts / profile /' Adresa URL unde cererile sunt redirecționate după autentificare când vizualizarea contrib.auth.login nu primește niciun alt parametru. Acest lucru este folosit, de exemplu, de decoratorul login_required (). Această setare acceptă, de asemenea, șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea configurației, deoarece nu trebuie să definiți adresa URL în două locuri (setări și URLconf)." -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -520,7 +528,7 @@ msgid "" "places (settings and URLconf)." msgstr "Implicit: Niciuna. Adresa URL unde cererile sunt redirecționate după ce un utilizator se deconectează utilizând LogoutView (dacă vizualizarea nu are un argument next_page). Dacă nu există, nu va fi efectuată nicio redirecționare și va fi redată vizualizarea logout. Această setare acceptă, de asemenea, șabloanele URL denumite care pot fi utilizate pentru a reduce duplicarea configurației, deoarece nu trebuie să definiți adresa URL în două locuri (setări și URLconf)." -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -528,7 +536,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "O listă de adrese IP, ca șiruri de caractere, care: Permite procesorului de context debug () să adauge unele variabile în contextul șablonului. Poate utiliza marcajele admindocs chiar dacă nu este logat ca personal utilizator. Sunt marcate ca \"interne\" (spre deosebire de \"EXTERNAL\") în e-mailurile AdminEmailHandler." -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -537,7 +545,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "O listă a tuturor limbilor disponibile. Lista este o listă cu două perechi în format (codul limbii, numele limbii), de exemplu, ('ja', 'japoneză'). Aceasta specifică limbile disponibile pentru selectarea limbii. În general, valoarea implicită ar trebui să fie suficientă. Setați această setare numai dacă doriți să restricționați selectarea limbii pe un subset de limbi furnizate de Django." -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,15 +557,15 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "Un șir reprezentând codul de limbă pentru această instalare. Aceasta ar trebui să fie în format standard de limbă. De exemplu, engleza americană este 'en-us'. Acesta servește două scopuri: dacă middleware-ul locale nu este utilizat, acesta decide ce traducere este servită tuturor utilizatorilor. Dacă middleware-ul local este activ, acesta oferă o limbă de rezervă în cazul în care limba preferată a utilizatorului nu poate fi determinată sau nu este acceptată de site-ul web. De asemenea, oferă traducerea de rezervă atunci când o traducere pentru un cuvânt dat nu există pentru limba preferată a utilizatorului." -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " "used as the base path for asset definitions (the Media class) and the " "staticfiles app. It must end in a slash if set to a non-empty value." -msgstr "" +msgstr "Adresa URL care trebuie utilizată atunci când se face referire la fișiere statice situate în STATIC_ROOT. Exemplu: \"/static /\" sau \"http://static.example.com/\" Dacă nu este niciunul, acesta va fi folosit ca și cale de bază pentru definirea activelor (clasa Media) și aplicația staticfiles. Trebuie să se încheie într-o bară, dacă este setată la o valoare care nu este goală." -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -565,14 +573,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "Motorul de stocare a fișierelor utilizat la colectarea fișierelor statice cu comanda de gestionare collectstatic. O instanță gata de utilizare a backend-ului de stocare definită în această setare poate fi găsită la django.contrib.staticfiles.storage.staticfiles_storage." -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "Un șir reprezentând fusul orar pentru această instalare. Rețineți că acest lucru nu este neapărat fusul orar al serverului. De exemplu, un server poate servi mai multe site-uri cu putere Django, fiecare având o setare de fus orar separată." -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -580,11 +588,11 @@ msgid "" "it, and point this setting to that application." msgstr "Calea completă Python a obiectului aplicației WSGI pe care o vor utiliza serverele încorporate Django (de exemplu, runserver). Comanda django-admin startproject de administrare va crea un simplu fișier wsgi.py cu o aplicație care poate fi apelată în ea și va indica această setare acelei aplicații." -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -592,7 +600,7 @@ msgid "" "specific transports default values." msgstr "Implicit: \"amqp: //\". Adresa URL a brokerului implicit. Aceasta trebuie să fie o adresă URL sub forma: transport://userid:password@hostname:port/virtual_host Este necesar doar partea sistemului (transport: //), restul este opțional și are implicit valorile implicite pentru transport." -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo index 7d4c303742..63fc345c8e 100644 Binary files a/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po index 54bfb0812b..3d772cf0cf 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" @@ -321,41 +321,57 @@ msgid "" "propagate." msgstr "Время задержки фоновых задач зависящих от процесса распространения записанных в БД данных." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Бекенд хранения, который каждый может использовать для хранения файлов." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -370,7 +386,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -380,13 +396,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -395,7 +411,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -410,14 +426,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -425,17 +441,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -443,23 +459,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -467,7 +483,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,22 +493,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -501,7 +509,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -510,7 +518,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -520,7 +528,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -528,7 +536,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -537,7 +545,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,7 +557,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -557,7 +565,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -565,14 +573,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -580,11 +588,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -592,7 +600,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo index 20ef32ee20..049c4280e4 100644 Binary files a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po index d724f07103..459122ebcf 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -319,41 +319,57 @@ msgid "" "propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -368,7 +384,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -378,13 +394,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -393,7 +409,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -408,14 +424,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -423,17 +439,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -441,23 +457,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -465,7 +481,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -475,22 +491,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -499,7 +507,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -508,7 +516,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -518,7 +526,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -526,7 +534,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -535,7 +543,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -547,7 +555,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -555,7 +563,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -563,14 +571,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -578,11 +586,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -590,7 +598,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.mo index 6f49290745..6a07c5f6cd 100644 Binary files a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po index 55602e04a8..6f6cfdce78 100644 --- a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -321,41 +321,57 @@ msgid "" "propagate." msgstr "Veritabanına bağımlı arka plan görevlerini geciktirme zamanını oluşturmak için kullanılır." -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "Üretim sırasında hataları izleyecek olan günlük dosyasının yolu." -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "Tüm çalışanların dosyaları paylaşmak için kullanabileceği bir depolama alanı." -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -370,7 +386,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -380,13 +396,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -395,7 +411,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -410,14 +426,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -425,17 +441,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -443,23 +459,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -467,7 +483,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -477,22 +493,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -501,7 +509,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -510,7 +518,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -520,7 +528,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -528,7 +536,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -537,7 +545,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -549,7 +557,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -557,7 +565,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -565,14 +573,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -580,11 +588,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -592,7 +600,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo index 88adfc74f0..6f08d7b35f 100644 Binary files a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po index 1ace83ece8..547495bc80 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -320,41 +320,57 @@ msgid "" "propagate." msgstr "" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -369,7 +385,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -379,13 +395,13 @@ msgid "" "PREPEND_WWW." msgstr "" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,7 +410,7 @@ msgid "" "databases may also be specified." msgstr "" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -409,14 +425,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -424,17 +440,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -442,23 +458,23 @@ msgid "" "Django won't attempt authentication." msgstr "" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -466,7 +482,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -476,22 +492,14 @@ msgid "" "those settings to True." msgstr "" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -500,7 +508,7 @@ msgid "" "and URLconf)." msgstr "" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -509,7 +517,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -519,7 +527,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +535,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +544,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +556,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,7 +564,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -564,14 +572,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,11 +587,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -591,7 +599,7 @@ msgid "" "specific transports default values." msgstr "" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/common/locale/zh/LC_MESSAGES/django.mo index f93208c9a6..e7b3327e2d 100644 Binary files a/mayan/apps/common/locale/zh/LC_MESSAGES/django.mo and b/mayan/apps/common/locale/zh/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po index d910d774ea..95b138f61c 100644 --- a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" +"POT-Creation-Date: 2019-06-29 02:15-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -320,41 +320,57 @@ msgid "" "propagate." msgstr "是时候延迟依赖于数据库提交传播的后台任务了。" -#: settings.py:32 +#: settings.py:33 +msgid "" +"A list of strings designating all applications that are to be removed from " +"the list normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:43 +msgid "" +"A list of strings designating all applications that are installed beyond " +"those normally installed by Mayan EDMS. Each string should be a dotted " +"Python path to: an application configuration class (preferred), or a package" +" containing an application." +msgstr "" + +#: settings.py:52 msgid "" "Name of the view attached to the brand anchor in the main menu. This is also" " the view to which users will be redirected after log in." msgstr "" -#: settings.py:41 +#: settings.py:61 msgid "The number objects that will be displayed per page." msgstr "" -#: settings.py:48 +#: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." msgstr "在系统错误日志记录功能之外启用错误日志记录。" -#: settings.py:55 +#: settings.py:75 msgid "Path to the logfile that will track errors during production." msgstr "日志文件的路径,用于跟踪生产期间的错误。" -#: settings.py:62 +#: settings.py:82 msgid "Name to be displayed in the main menu." msgstr "要在主菜单中显示的名称。" -#: settings.py:68 +#: settings.py:88 msgid "URL of the installation or homepage of the project." msgstr "项目的安装或主页的URL。" -#: settings.py:74 +#: settings.py:94 msgid "A storage backend that all workers can use to share files." msgstr "所有工作人员可用于共享文件的存储后端。" -#: settings.py:83 +#: settings.py:103 msgid "Django" msgstr "Django" -#: settings.py:88 +#: settings.py:108 msgid "" "A list of strings representing the host/domain names that this site can " "serve. This is a security measure to prevent HTTP Host header attacks, which" @@ -369,7 +385,7 @@ msgid "" "middleware must be listed first in MIDDLEWARE)." msgstr "表示此站点可以提供的主机/域名的字符串列表。这是一种防止HTTP主机头攻击的安全措施,即使在许多看似安全的Web服务器配置下也是如此。此列表中的值可以是完全限定名称(例如“www.example.com”),在这种情况下,它们将与请求的主机标头完全匹配(不区分大小写,不包括端口)。以句点开头的值可用作子域通配符:'.example.com'将匹配example.com,www.example.com和example.com的任何其他子域。值'*'将匹配任何内容;在这种情况下,您有责任提供自己的主机头验证(可能在中间件中;如果是这样,则必须首先在MIDDLEWARE中列出此中间件)。" -#: settings.py:106 +#: settings.py:126 msgid "" "When set to True, if the request URL does not match any of the patterns in " "the URLconf and it doesn't end in a slash, an HTTP redirect is issued to the" @@ -379,13 +395,13 @@ msgid "" "PREPEND_WWW." msgstr "设置为True时,如果请求URL与URLconf中的任何模式都不匹配,并且不以斜杠结尾,则会向相同的URL发出HTTP重定向,并附加斜杠。请注意,重定向可能导致POST请求中提交的任何数据丢失。 APPEND_SLASH设置仅在安装了CommonMiddleware时使用(请参阅Middleware)。另见PREPEND_WWW。" -#: settings.py:119 +#: settings.py:139 msgid "" "The list of validators that are used to check the strength of user's " "passwords." msgstr "" -#: settings.py:126 +#: settings.py:146 msgid "" "A dictionary containing the settings for all databases to be used with " "Django. It is a nested dictionary whose contents map a database alias to a " @@ -394,7 +410,7 @@ msgid "" "databases may also be specified." msgstr "包含要与Django一起使用的所有数据库的设置的字典。它是一个嵌套字典,其内容将数据库别名映射到包含单个数据库选项的字典。 DATABASES设置必须配置默认数据库;还可以指定任意数量的附加数据库。" -#: settings.py:138 +#: settings.py:158 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size in bytes that a request " "body may be before a SuspiciousOperation (RequestDataTooBig) is raised. The " @@ -409,14 +425,14 @@ msgid "" "similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE." msgstr "默认值:2621440(即2.5 MB)。引发可疑操作(请求数据太大)之前请求正文的最大大小(以字节为单位)。在访问request.body或request.POST时完成检查,并根据不包括任何文件上传数据的总请求大小计算。您可以将其设置为“无”以禁用检查。预计会收到异常大型表单提交的应用程序应调整此设置。请求数据量与处理请求和填充GET和POST词典所需的内存量相关联。如果不加以检查,大请求可以用作拒绝服务攻击载体。由于Web服务器通常不执行深度请求检查,因此无法在该级别执行类似检查。另请参见FILE_UPLOAD_MAX_MEMORY_SIZE。" -#: settings.py:158 +#: settings.py:178 msgid "" "Default: 'webmaster@localhost' Default email address to use for various " "automated correspondence from the site manager(s). This doesn't include " "error messages sent to ADMINS and MANAGERS; for that, see SERVER_EMAIL." msgstr "" -#: settings.py:168 +#: settings.py:188 msgid "" "Default: [] (Empty list). List of compiled regular expression objects " "representing User-Agent strings that are not allowed to visit any page, " @@ -424,17 +440,17 @@ msgid "" "CommonMiddleware is installed (see Middleware)." msgstr "默认值:[](空列表)。在系统范围内表示不允许访问任何页面的用户代理字符串的已编译正则表达式对象的列表。用于防范恶意的机器人/爬虫。这仅在安装了CommonMiddleware时使用(请参阅Middleware)。" -#: settings.py:179 +#: settings.py:199 msgid "" "Default: 'django.core.mail.backends.smtp.EmailBackend'. The backend to use " "for sending emails." msgstr "默认值:'django.core.mail.backends.smtp.EmailBackend'。用于发送电子邮件的后端。" -#: settings.py:187 +#: settings.py:207 msgid "Default: 'localhost'. The host to use for sending email." msgstr "默认值:'localhost'。用于发送电子邮件的主机。" -#: settings.py:194 +#: settings.py:214 msgid "" "Default: '' (Empty string). Password to use for the SMTP server defined in " "EMAIL_HOST. This setting is used in conjunction with EMAIL_HOST_USER when " @@ -442,23 +458,23 @@ msgid "" "Django won't attempt authentication." msgstr "默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的密码。在向SMTP服务器进行身份验证时,此设置与EMAIL_HOST_USER结合使用。如果这些设置中的任何一个为空,Django将不会尝试身份验证。" -#: settings.py:205 +#: settings.py:225 msgid "" "Default: '' (Empty string). Username to use for the SMTP server defined in " "EMAIL_HOST. If empty, Django won't attempt authentication." msgstr "默认值:''(空字符串)。用于EMAIL_HOST中定义的SMTP服务器的用户名。如果为空,Django将不会尝试身份验证。" -#: settings.py:214 +#: settings.py:234 msgid "Default: 25. Port to use for the SMTP server defined in EMAIL_HOST." msgstr "默认值:25。用于EMAIL_HOST中定义的SMTP服务器的端口。" -#: settings.py:221 +#: settings.py:241 msgid "" "Default: None. Specifies a timeout in seconds for blocking operations like " "the connection attempt." msgstr "默认值:无。指定阻塞操作(如连接尝试)的超时(以秒为单位)。" -#: settings.py:229 +#: settings.py:249 msgid "" "Default: False. Whether to use a TLS (secure) connection when talking to the" " SMTP server. This is used for explicit TLS connections, generally on port " @@ -466,7 +482,7 @@ msgid "" "setting EMAIL_USE_SSL." msgstr "默认值:False。与SMTP服务器通信时是否使用TLS(安全)连接。这用于显式TLS连接,通常在端口587上。如果遇到挂起连接,请参阅隐式TLS设置EMAIL_USE_SSL。" -#: settings.py:239 +#: settings.py:259 msgid "" "Default: False. Whether to use an implicit TLS (secure) connection when " "talking to the SMTP server. In most email documentation this type of TLS " @@ -476,22 +492,14 @@ msgid "" "those settings to True." msgstr "默认值:False。与SMTP服务器通信时是否使用隐式TLS(安全)连接。在大多数电子邮件文档中,此类型的TLS连接称为SSL。它通常用于端口465.如果遇到问题,请参阅显式TLS设置EMAIL_USE_TLS。请注意,EMAIL_USE_TLS / EMAIL_USE_SSL是互斥的,因此只将其中一个设置为True。" -#: settings.py:251 +#: settings.py:271 msgid "" "Default: 2621440 (i.e. 2.5 MB). The maximum size (in bytes) that an upload " "will be before it gets streamed to the file system. See Managing files for " "details. See also DATA_UPLOAD_MAX_MEMORY_SIZE." msgstr "默认值:2621440(即2.5 MB)。上传在流式传输到文件系统之前的最大大小(以字节为单位)。有关详情,请参阅管理文件。另请参见DATA_UPLOAD_MAX_MEMORY_SIZE。" -#: settings.py:261 -msgid "" -"A list of strings designating all applications that are enabled in this " -"Django installation. Each string should be a dotted Python path to: an " -"application configuration class (preferred), or a package containing an " -"application." -msgstr "指定在此Django安装中启用的所有应用程序的字符串列表。每个字符串应该是一个虚线的Python路径:应用程序配置类(首选)或包含应用程序的包。" - -#: settings.py:271 +#: settings.py:281 msgid "" "Default: '/accounts/login/' The URL where requests are redirected for login," " especially when using the login_required() decorator. This setting also " @@ -500,7 +508,7 @@ msgid "" "and URLconf)." msgstr "默认值:'/ accounts / login /',重定向请求以进行登录的URL,尤其是在使用login_required()装饰器时。此设置还接受命名的URL模式,可用于减少配置重复,因为您不必在两个位置(设置和URLconf)定义URL。" -#: settings.py:283 +#: settings.py:293 msgid "" "Default: '/accounts/profile/' The URL where requests are redirected after " "login when the contrib.auth.login view gets no next parameter. This is used " @@ -509,7 +517,7 @@ msgid "" "since you don't have to define the URL in two places (settings and URLconf)." msgstr "默认值:'/ accounts / profile /',当contrib.auth.login视图没有下一个参数时,登录后重定向请求的URL。例如,login_required()装饰器使用它。此设置还接受命名的URL模式,可用于减少重复配置,因此您不必在两个位置(设置和URLconf)定义URL。" -#: settings.py:295 +#: settings.py:305 msgid "" "Default: None. The URL where requests are redirected after a user logs out " "using LogoutView (if the view doesn't get a next_page argument). If None, no" @@ -519,7 +527,7 @@ msgid "" "places (settings and URLconf)." msgstr "" -#: settings.py:308 +#: settings.py:318 msgid "" "A list of IP addresses, as strings, that: Allow the debug() context " "processor to add some variables to the template context. Can use the " @@ -527,7 +535,7 @@ msgid "" "\"internal\" (as opposed to \"EXTERNAL\") in AdminEmailHandler emails." msgstr "" -#: settings.py:319 +#: settings.py:329 msgid "" "A list of all available languages. The list is a list of two-tuples in the " "format (language code, language name) for example, ('ja', 'Japanese'). This " @@ -536,7 +544,7 @@ msgid "" "restrict language selection to a subset of the Django-provided languages. " msgstr "" -#: settings.py:332 +#: settings.py:342 msgid "" "A string representing the language code for this installation. This should " "be in standard language ID format. For example, U.S. English is \"en-us\". " @@ -548,7 +556,7 @@ msgid "" "doesn't exist for the user's preferred language." msgstr "" -#: settings.py:347 +#: settings.py:357 msgid "" "URL to use when referring to static files located in STATIC_ROOT. Example: " "\"/static/\" or \"http://static.example.com/\" If not None, this will be " @@ -556,7 +564,7 @@ msgid "" "staticfiles app. It must end in a slash if set to a non-empty value." msgstr "" -#: settings.py:358 +#: settings.py:368 msgid "" "The file storage engine to use when collecting static files with the " "collectstatic management command. A ready-to-use instance of the storage " @@ -564,14 +572,14 @@ msgid "" "django.contrib.staticfiles.storage.staticfiles_storage." msgstr "" -#: settings.py:368 +#: settings.py:378 msgid "" "A string representing the time zone for this installation. Note that this " "isn't necessarily the time zone of the server. For example, one server may " "serve multiple Django-powered sites, each with a separate time zone setting." msgstr "" -#: settings.py:378 +#: settings.py:388 msgid "" "The full Python path of the WSGI application object that Django's built-in " "servers (e.g. runserver) will use. The django-admin startproject management " @@ -579,11 +587,11 @@ msgid "" "it, and point this setting to that application." msgstr "" -#: settings.py:386 +#: settings.py:396 msgid "Celery" msgstr "Celery" -#: settings.py:391 +#: settings.py:401 msgid "" "Default: \"amqp://\". Default broker URL. This must be a URL in the form of:" " transport://userid:password@hostname:port/virtual_host Only the scheme part" @@ -591,7 +599,7 @@ msgid "" "specific transports default values." msgstr "默认值:“amqp://”。默认代理URL。这必须是以下形式的URL:transport:// userid:password @ hostname:port / virtual_host只需要方案部分(transport://),其余部分是可选的,默认为特定传输的默认值。" -#: settings.py:401 +#: settings.py:411 msgid "" "Default: No result backend enabled by default. The backend used to store " "task results (tombstones). Refer to " diff --git a/mayan/apps/common/settings.py b/mayan/apps/common/settings.py index e838c07a65..841549b38f 100644 --- a/mayan/apps/common/settings.py +++ b/mayan/apps/common/settings.py @@ -26,6 +26,26 @@ settings_db_sync_task_delay = namespace.add_setting( 'propagate.' ) ) +setting_disabled_apps = namespace.add_setting( + global_name='COMMON_DISABLED_APPS', + default=settings.COMMON_DISABLED_APPS, + help_text=_( + 'A list of strings designating all applications that are to be removed ' + 'from the list normally installed by Mayan EDMS. Each string should be ' + 'a dotted Python path to: an application configuration class (preferred), ' + 'or a package containing an application.' + ), +) +setting_extra_apps = namespace.add_setting( + global_name='COMMON_EXTRA_APPS', + default=settings.COMMON_EXTRA_APPS, + help_text=_( + 'A list of strings designating all applications that are installed ' + 'beyond those normally installed by Mayan EDMS. Each string should be ' + 'a dotted Python path to: an application configuration class (preferred), ' + 'or a package containing an application.' + ), +) setting_home_view = namespace.add_setting( global_name='COMMON_HOME_VIEW', default=DEFAULT_COMMON_HOME_VIEW, help_text=_( @@ -254,16 +274,6 @@ setting_django_file_upload_max_memory_size = namespace.add_setting( 'DATA_UPLOAD_MAX_MEMORY_SIZE.' ), ) -setting_django_installed_apps = namespace.add_setting( - global_name='INSTALLED_APPS', - default=settings.INSTALLED_APPS, - help_text=_( - 'A list of strings designating all applications that are enabled ' - 'in this Django installation. Each string should be a dotted ' - 'Python path to: an application configuration class (preferred), ' - 'or a package containing an application.' - ), -) setting_django_login_url = namespace.add_setting( global_name='LOGIN_URL', default=settings.LOGIN_URL, diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po index 7b908054e2..7d0661c048 100644 --- a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po index c6c64b7f24..1d5683a989 100644 --- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po index b0957e8e5e..db9d8f3dd4 100644 --- a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po b/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po index 829ddba1ac..401dd00b91 100644 --- a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po index d374096107..d8137d5d83 100644 --- a/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po index 6d3d758966..46780383bc 100644 --- a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 22:15+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po b/mayan/apps/converter/locale/el/LC_MESSAGES/django.po index 835a3e374c..5c27a089b3 100644 --- a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po index eb719a6233..f882dd500f 100644 --- a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po index 9ca0813772..4b4ebbd525 100644 --- a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-28 19:34+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po index 76886d2328..8f4d474ace 100644 --- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po index 9ba376ef55..cdbb485023 100644 --- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-09 13:35+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po index 90fb0af145..3ccb0643b7 100644 --- a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po index 8d0ec5bdc0..fed985edf7 100644 --- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-12 18:08+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po index 3d159775e1..a57040bfa9 100644 --- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.mo index ae177b7483..e459edd68f 100644 Binary files a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po index 85d5ce9502..7a7544e538 100644 --- a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" -"PO-Revision-Date: 2019-05-31 12:00+0000\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"PO-Revision-Date: 2019-06-27 13:00+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -57,7 +57,7 @@ msgstr "Utility no popper-utils paketes, ko izmanto, lai no PDF failiem izņemtu #: forms.py:28 #, python-format msgid "\"%s\" not a valid entry." -msgstr ""%s" nav derīgs ieraksts." +msgstr "\"%s\" nav derīgs ieraksts." #: links.py:36 msgid "Create new transformation" @@ -93,7 +93,7 @@ msgstr "Nosaukums" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "Ievadiet transformācijas argumentus kā YAML vārdnīcu. ti: {"grādi": 180}" +msgstr "Ievadiet transformācijas argumentus kā YAML vārdnīcu. ti: {\"grādi\": 180}" #: models.py:49 msgid "Arguments" @@ -183,12 +183,12 @@ msgstr "Izveidot jaunu transformāciju: %s" #: views.py:127 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "Dzēst transformāciju "%(transformation)s": %(content_object)s?" +msgstr "Dzēst transformāciju \"%(transformation)s\": %(content_object)s?" #: views.py:171 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "Rediģēt transformāciju "%(transformation)s" par: %(content_object)s" +msgstr "Rediģēt transformāciju \"%(transformation)s\" par: %(content_object)s" #: views.py:227 msgid "" diff --git a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po index 0839ece204..03ffc2a3a5 100644 --- a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po index acd77adbb0..4506b2a814 100644 --- a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po index 079479aa2d..206c07b55b 100644 --- a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po index 18ac9eca61..ad82fccd3e 100644 --- a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po index 7fe0756fcd..a6a0e9c0b4 100644 --- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 08:08+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po index 0685c52889..ea66780f41 100644 --- a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po index 339594b6e9..c3b8d185b2 100644 --- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po index 822f0ca65d..22791db4ba 100644 --- a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po index a9fcca2a46..035d1bb5fb 100644 --- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po index 5a84d3eddd..b29be47ae8 100644 --- a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po index a323735a8a..545a447c4d 100644 --- a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po index f813d5a742..38db37ff97 100644 --- a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Pavlin Koldamov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po index 80f5f3fa57..09189ac228 100644 --- a/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Atdhe Tabaku , 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po index 95a2075f39..547cc60bc4 100644 --- a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po index 440e077bf2..33ae204438 100644 --- a/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" diff --git a/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po index 975a2ac225..15b290e513 100644 --- a/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po index 388509ed86..b4178f3202 100644 --- a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" diff --git a/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po index b971bc626d..6f75f71cb0 100644 --- a/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po index 6e7ea567b5..8e517375c7 100644 --- a/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po index 86df1b849e..d00761f889 100644 --- a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po index 69c32b1b61..fe2820dec6 100644 --- a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po index ed30395ed6..c8bf570139 100644 --- a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po index 7323d01cdd..6b1cf8437c 100644 --- a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po index 63d423b507..35c4762e52 100644 --- a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Marco Camplese , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po index 26bce1a9c2..a8e4fe26a3 100644 --- a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" diff --git a/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po index bfc1487763..c672852925 100644 --- a/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Martin Horseling , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po index a0bb20a0ac..6379aff1ff 100644 --- a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po index ddae7ca9a3..aefccb84bc 100644 --- a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po index a9001b5851..457b73a636 100644 --- a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: José Samuel Facundo da Silva , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po index b0bd215908..4fec0edfe4 100644 --- a/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" diff --git a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po index 69bc343b5e..9ddec07492 100644 --- a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: mizhgan , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po index 17c7987ce3..75d4679536 100644 --- a/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: kontrabant , 2019\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" diff --git a/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po index ac22f0014e..96d2532844 100644 --- a/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po index cbb9b1717a..0f59501c38 100644 --- a/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po index 0f9d6c1120..b902238212 100644 --- a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:36-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" diff --git a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po index dc15fdc035..36c077d9e4 100644 --- a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" diff --git a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po index 7a53791989..48fa5d3d37 100644 --- a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po index 87536eac63..9483e5213b 100644 --- a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po index 7de8e88b78..aadf6bfca0 100644 --- a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Jiri Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" diff --git a/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po index 2db17c5764..2ccfc6fa36 100644 --- a/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" diff --git a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po index 4c0f036713..982158c096 100644 --- a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po index 94d3d30ee9..edf2a1cdda 100644 --- a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" diff --git a/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po index 5665437f77..4b350de685 100644 --- a/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po index 12a9ac79cb..b5f16a989a 100644 --- a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po index 26e46cd9d6..ef04f4a1dc 100644 --- a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po index f4faba8f14..e824bdf1c2 100644 --- a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po index d5ffa00ae0..c2c195185b 100644 --- a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: molnars , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" diff --git a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po index a30ba8ec6c..382620f0ec 100644 --- a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" diff --git a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po index cedc89c0f7..a64c8455e5 100644 --- a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Giovanni Tricarico , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.mo index 36450a6f68..5571d652ae 100644 Binary files a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po index 0afe03661e..c3efcb316e 100644 --- a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" @@ -66,6 +66,8 @@ msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" +"Vide, ko izmanto programmatūras izplatāmo pakešu veidošanai. Gala lietotāji " +"var ignorēt trūkstošās atkarības šajā vidē." #: classes.py:68 msgid "Build" @@ -76,6 +78,8 @@ msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" +"Vide, ko izstrādātāji izmanto, lai veiktu izmaiņas kodā. Gala lietotāji var " +"ignorēt trūkstošās atkarības šajā vidē." #: classes.py:74 msgid "Development" @@ -86,6 +90,8 @@ msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" +"Normāla vide gala lietotājiem. Trūkstošas atkarības šajā vidē radīs " +"problēmas un kļūdas normālas lietošanas laikā." #: classes.py:80 msgid "Production" @@ -120,7 +126,7 @@ msgstr "Nepieciešams norādīt vismaz vienu: app_label vai moduli." #: classes.py:279 #, python-format msgid "Dependency \"%s\" already registered." -msgstr "Atkarība "%s" jau ir reģistrēta." +msgstr "Atkarība \"%s\" jau ir reģistrēta." #: classes.py:305 #, python-format @@ -153,7 +159,7 @@ msgstr "Nav precizēts" #: classes.py:405 msgid "Patching files... " -msgstr "" +msgstr "Notiek failu lāpīšana ..." #: classes.py:440 msgid "Executables that are called directly by the code." @@ -168,10 +174,12 @@ msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" +"JavaScript bibliotēkas lejupielādēja no NPM reģistra un tika izmantotas " +"front-end funkcionalitātei." #: classes.py:462 msgid "JavaScript" -msgstr "" +msgstr "JavaScript" #: classes.py:496 classes.py:729 msgid "Downloading... " @@ -195,11 +203,11 @@ msgstr "Python" #: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." -msgstr "" +msgstr "Fonti, kas lejupielādēti no fonts.googleapis.com." #: classes.py:712 msgid "Google font" -msgstr "" +msgstr "Google fonti" #: classes.py:791 msgid "Declared in app" @@ -207,7 +215,7 @@ msgstr "Paziņots lietotnē" #: classes.py:792 msgid "Show dependencies by the app that declared them." -msgstr "" +msgstr "Rādīt atkarības pēc lietotnēm, kas tās deklarēja." #: classes.py:796 msgid "Class" @@ -218,6 +226,8 @@ msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" +"Rādīt dažādu atkarību klases. Klases parasti tiek sadalītas pēc valodas vai " +"atkarības faila veidiem." #: classes.py:802 msgid "State" @@ -229,12 +239,16 @@ msgid "" "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" +"Rādīt dažādos atkarību stāvokļus. True nozīmē, ka atkarības ir instalētas un" +" ir pareizas. False nozīmē, ka trūkst atkarību vai ir nepareiza versija." #: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" +"Atkarības, kas nepieciešamas vienai videi, var nebūt nepieciešama citai. " +"Vides paraugi: Produkcijas vide, Izstrādes vide." #: links.py:11 views.py:35 msgid "Check for updates" diff --git a/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po index d7b23b8032..fa9bc33475 100644 --- a/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Lucas Weel , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po index b95372ee0b..2e54876f62 100644 --- a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po index c897acadb3..a224bc7a4f 100644 --- a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Manuela Silva , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" diff --git a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po index 79de8ed754..dec46083d6 100644 --- a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.mo index 13c65dbc96..025d8e3c06 100644 Binary files a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po index 394e11d0a4..c1bb4288c0 100644 --- a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" @@ -69,6 +69,8 @@ msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" +"Mediul utilizat pentru a construi pachete distribuite ale software-ului. " +"Utilizatorii finali pot ignora dependențele care lipsesc în acest mediu." #: classes.py:68 msgid "Build" @@ -79,6 +81,8 @@ msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" +"Mediul fost folosit de dezvoltatori pentru a face schimbări de cod. " +"Utilizatorii finali pot ignora dependențele care lipsesc în acest mediu." #: classes.py:74 msgid "Development" @@ -89,6 +93,8 @@ msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" +"Mediu normal pentru utilizatorii finali. O dependență lipsă în acest mediu " +"va duce la probleme și erori în timpul utilizării normale." #: classes.py:80 msgid "Production" @@ -171,10 +177,12 @@ msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" +"Bibliotecile JavaScript descărcate din registrul NPM și folosite la " +"funcționalitatea front-end." #: classes.py:462 msgid "JavaScript" -msgstr "" +msgstr "JavaScript" #: classes.py:496 classes.py:729 msgid "Downloading... " @@ -210,7 +218,7 @@ msgstr "Declarate în aplicație" #: classes.py:792 msgid "Show dependencies by the app that declared them." -msgstr "" +msgstr "Afișați dependențele după aplicația care le-a declarat." #: classes.py:796 msgid "Class" @@ -221,6 +229,8 @@ msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" +"Arătați diferitele clase de dependențe. Clasele sunt de obicei împărțite în " +"funcție de limbă sau de tipurile de fișiere ale dependenței." #: classes.py:802 msgid "State" @@ -232,12 +242,17 @@ msgid "" "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" +"Afișați diferitele stări ale dependențelor. True înseamnă că dependențele " +"sunt instalate și că au o versiune corectă. Fals înseamnă că lipsesc " +"dependențele sau există o versiune incorectă." #: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" +"Este posibil ca dependențele necesare pentru un mediu să nu fie necesare " +"pentru altul. Exemplu de medii: producție, dezvoltare." #: links.py:11 views.py:35 msgid "Check for updates" diff --git a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po index f5c8cd7b75..b073629e32 100644 --- a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: lilo.panic, 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po index 97965796c0..d37074267f 100644 --- a/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: kontrabant , 2019\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" diff --git a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po index dfa92df6b0..7427e4125e 100644 --- a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: serhatcan77 , 2019\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" diff --git a/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po index f866792142..c7af47bac8 100644 --- a/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" diff --git a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po index a8b9eef6f2..2513c0545c 100644 --- a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" diff --git a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po index cb0309b1d8..d481cc5cef 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po index 6096745530..336a54dad7 100644 --- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po index 82cfda5aa2..210caeccfa 100644 --- a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po index 4a4dd2d201..3d8096c95a 100644 --- a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po index 10f01fc388..a8b6a23fb0 100644 --- a/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po index 236c0f1f92..26bcd9f478 100644 --- a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-19 09:33+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po index 6e7794b288..1e47f63179 100644 --- a/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po index eb50f26637..6c27e35c2a 100644 --- a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po index 43e4109ca3..3a5d75f796 100644 --- a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:43+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po index 254cc280ba..b3896e0ac5 100644 --- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po index a875ece109..b7fec258ba 100644 --- a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-05 02:55+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po index a731c50776..97daa3513c 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po index 1ee4f72fc6..eca448e13a 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-12 17:32+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po index 4ecdc3d6f4..a96b34ff8a 100644 --- a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po index dc6a6ece6d..4247ebe8db 100644 --- a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-31 12:03+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po index 68cbb5cd1b..1ce1f5f7a9 100644 --- a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po index 0ac63dda2c..e43033fe79 100644 --- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po index 2fb3cc7ae1..9e830fa94a 100644 --- a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po index e495de0f9e..d7e21e4f13 100644 --- a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po index 93c9c74e9a..ca51ec251a 100644 --- a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po index 2aef5b6dcd..446a835b09 100644 --- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po index 30bf65dc41..a75d83028f 100644 --- a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po index ede9a9b691..2d63aa0c7a 100644 --- a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po index ef4ed5e710..c7ba9712da 100644 --- a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po index 193cb849a4..00cdd6af86 100644 --- a/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po index 731a48ccf6..bf527c5649 100644 --- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Mohammed ALDOUB \n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po index ccec495c18..69723bf447 100644 --- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Pavlin Koldamov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po index 5466177d99..9ef8b85b38 100644 --- a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: www.ping.ba \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po index 68bc9d6576..809bc7a6b0 100644 --- a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Jiri Fait \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po index e7d0cac28d..9393207ec5 100644 --- a/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po index dbe932b5c9..e1d068b5d6 100644 --- a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-26 21:45+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po index e9680f77fe..9d0622097f 100644 --- a/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po index d1ccefdc53..c0bb58fd84 100644 --- a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po index bd1a3f0afd..cff34d9cd9 100644 --- a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 06:38+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po index c3469d9e0e..c184dd1f01 100644 --- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po index b8d0d1109e..44965da666 100644 --- a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 13:23+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po index 0466988555..795b58a6b4 100644 --- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: molnars \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po index c0185be6f8..63a3e8dbb8 100644 --- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po index cce6e51f99..742567bc1b 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Pierpaolo Baldan \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po index 4b86700462..ec5f00f98d 100644 --- a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-31 12:03+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po index 3cc2e5386a..19f6df0e5b 100644 --- a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Johan Braeken\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po index b581e58c61..6301ed0be2 100644 --- a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Wojciech Warczakowski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po index 16ae52f222..2a9330d0b8 100644 --- a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Emerson Soares \n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po index 997428270a..b9df4111f8 100644 --- a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po index ac01634b92..da4ffe7707 100644 --- a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 18:46+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po index 70941d6068..5101bbc16a 100644 --- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Sergey Glita \n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po index 0517b0326f..8d0ab87470 100644 --- a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po index e61d508a5a..02f1d272f3 100644 --- a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po index db6325c25e..e60b676ad7 100644 --- a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Trung Phan Minh \n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po index e552733062..7a1ed46df8 100644 --- a/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po index 64e1b0cc7a..937efc00bd 100644 --- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po index d19870bd6f..8740bb25dc 100644 --- a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po index 0466c81300..0669cdb5e1 100644 --- a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po index 904b5b426d..dfc9bc3728 100644 --- a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po index e4c184ebc4..ef6d99b279 100644 --- a/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po index 26ad14c750..86506bb192 100644 --- a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 22:16+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po index 0b553be71f..4077e88f6d 100644 --- a/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po index 83b0a00b10..ef41269a60 100644 --- a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po index b237c0ab33..aa59be1fa5 100644 --- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:34+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po index 3a9c3b2559..a3db4b0018 100644 --- a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo index 5029251548..d7d8fc2aa0 100644 Binary files a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po index 4bcb6c420c..c46a4dca51 100644 --- a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-05-17 12:07+0000\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"PO-Revision-Date: 2019-06-17 20:41+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" @@ -337,7 +337,7 @@ msgstr "Modifier le nœud du modèle d'index : %s" msgid "" "This could mean that no index templates have been created or that there " "index templates but they are no properly defined." -msgstr "" +msgstr "Cela peut signifier qu'aucun modèle d'index n'a été créé ou qu'il existe des modèles d'index, mais qu'ils ne sont pas correctement définis." #: views.py:291 msgid "There are no index instances available." diff --git a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po index 27006e3c51..cfca730b13 100644 --- a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po index 5de4f81f6a..3085ae9a92 100644 --- a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-14 11:30+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po index 357411e38b..e9e305a379 100644 --- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.mo index e9b6dc72eb..279c515ea0 100644 Binary files a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po index d5296d7cf2..f77e027631 100644 --- a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-05-31 12:11+0000\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" +"PO-Revision-Date: 2019-06-27 12:14+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -367,6 +367,6 @@ msgstr "Indeksu mezgli, kas satur dokumentu: %s" #, python-format msgid "%(count)d index queued for rebuild." msgid_plural "%(count)d indexes queued for rebuild." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%(count)d indeksi tiek atjaunoti." +msgstr[1] "%(count)d indekss, kas rindā ir atjaunots." +msgstr[2] "%(count)d indeksi tiek atjaunoti." diff --git a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po index dd14efa5d8..bc9c1bd356 100644 --- a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po index 3d021a7640..cfdc2fa9ce 100644 --- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po index f2bdca77ae..b8712e926f 100644 --- a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po index 706f3d32be..a2e126fbec 100644 --- a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po index 53cfafe090..e39d4914c1 100644 --- a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-08 08:11+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po index 845e457efa..cc269a95c4 100644 --- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po index 5ead007df3..1484baa6a5 100644 --- a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po index 96b3f8f349..ee5ed6f00e 100644 --- a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po index b80a09b96c..a690f9565b 100644 --- a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po index 01ff422ab1..b72e1586a9 100644 --- a/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po index b244d48d33..267690e993 100644 --- a/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mohammed ALDOUB , 2018\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" diff --git a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po index 942e51ab43..dbc4288c06 100644 --- a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Iliya Georgiev , 2018\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po index 9602b69f52..be26a019a5 100644 --- a/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po index b8bb5168cc..de2e737408 100644 --- a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po index 57074ba725..25797b01b0 100644 --- a/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" diff --git a/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po index a57c650e68..cd7417ac10 100644 --- a/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po index a621d619a7..d11b84252d 100644 --- a/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" diff --git a/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po index 7db5ef12e3..ea36b1516e 100644 --- a/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po index 922b71b1b1..91528b2c09 100644 --- a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po index bb2a981946..1739563b57 100644 --- a/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mehdi Amani , 2018\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po index 94637db0f3..e9aa6eb688 100644 --- a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po index 5bec65a6ef..a739ae3603 100644 --- a/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: molnars , 2018\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" diff --git a/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po index f414106eed..84e5f611de 100644 --- a/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" diff --git a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po index 0fe8f25bc8..8e710743e4 100644 --- a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Giovanni Tricarico , 2018\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.mo index b20ec965cf..dc6003d9d9 100644 Binary files a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po index 2c66444f92..9a2087db54 100644 --- a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" @@ -196,14 +196,14 @@ msgstr "%(count)d dokumenti, kas pievienoti parsēšanas rindai" #, python-format msgid "Submit %(count)d document to the parsing queue?" msgid_plural "Submit %(count)d documents to the parsing queue" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Iesniegt %(count)d dokumentus parsēšanas rindā" +msgstr[1] "Iesniegt %(count)d dokumentu parsēšanas rindā?" +msgstr[2] "Iesniegt %(count)d dokumentus parsēšanas rindā" #: views.py:129 #, python-format msgid "Submit document \"%s\" to the parsing queue" -msgstr "Iesniegt parsēšanas rindā dokumentu "%s"" +msgstr "Iesniegt parsēšanas rindā dokumentu \"%s\"" #: views.py:154 #, python-format diff --git a/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po index 8db5f12772..c42d453661 100644 --- a/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Lucas Weel , 2018\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po index 436a112f40..05013ff6db 100644 --- a/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Wojciech Warczakowski , 2018\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po index 9bb66f7660..3bb03b7823 100644 --- a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Emerson Soares , 2018\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" diff --git a/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po index 12b08fe0a1..88ad2cc10c 100644 --- a/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: José Samuel Facundo da Silva , 2018\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po index cdcdf3e664..c2fd70c398 100644 --- a/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" diff --git a/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po index e5177c9e77..cda10d472d 100644 --- a/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: lilo.panic, 2018\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po index 34513d2724..43211a9f02 100644 --- a/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: kontrabant , 2018\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" diff --git a/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po index bcf282d7e1..99cec3c0cf 100644 --- a/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: serhatcan77 , 2018\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" diff --git a/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po index 59771e9e47..967eed136c 100644 --- a/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Trung Phan Minh , 2018\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" diff --git a/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po index e1a5e76c48..513b85fcf4 100644 --- a/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:16-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" diff --git a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po index 71759718e7..d86ba02543 100644 --- a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po index 8967db9e12..81a7938f93 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po index ea49c62228..49eb01ad37 100644 --- a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po index 0e42ccec52..64d92f8ea0 100644 --- a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po index 7c522dee07..e623c96d60 100644 --- a/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po index 48df4dc453..3563217200 100644 --- a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-08 22:16+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po index db9a4717ca..924e894eb4 100644 --- a/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po index d3eb49268d..25140d385d 100644 --- a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po index 22506ecc2f..af817c84fc 100644 --- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-30 16:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po index e84afa9e80..de0da99cf8 100644 --- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po index 9153a53895..5910e9f000 100644 --- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-17 12:04+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po index 3ff5f64116..1bf3edc9b9 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po index e59f6fb20a..5ae74ba313 100644 --- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-12 17:54+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po index 989f04c5ff..08b1a21121 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.mo index 902b8bcdb4..15dab31ec0 100644 Binary files a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po index cc887f2da5..4e60b7f13d 100644 --- a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-05-31 12:16+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-27 13:01+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -255,12 +255,12 @@ msgstr "Dokumenta versija ir veiksmīgi parakstīta." #: views.py:127 #, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "Parakstiet dokumenta versiju "%s" ar atdalītu parakstu" +msgstr "Parakstiet dokumenta versiju \"%s\" ar atdalītu parakstu" #: views.py:224 #, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "Parakstiet dokumenta versiju "%s" ar iegulto parakstu" +msgstr "Parakstiet dokumenta versiju \"%s\" ar iegulto parakstu" #: views.py:240 #, python-format diff --git a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po index b9cd75081c..0b30c3c2a9 100644 --- a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po index 4e8e01d207..3d0c559112 100644 --- a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po index 3c0451b679..46eeaeccee 100644 --- a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po index ed2f29deab..435c4b7f6f 100644 --- a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po index ed12073257..6ec3724799 100644 --- a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-02 05:17+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po index 6f408767f3..1387d7b96b 100644 --- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po index 08c1527554..32b4757e62 100644 --- a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po index b819129565..400146bd00 100644 --- a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po index a5f744f189..5049ded4f6 100644 --- a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po index 1a5e8c0976..78d296a2ac 100644 --- a/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo index b9f7199f52..f35fcaa9f9 100644 Binary files a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po index 0bdc7f76a6..1174566ef0 100644 --- a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "لا شيء" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "مستخدم" @@ -55,15 +55,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "تعليق" @@ -79,7 +79,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +99,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "العنوان" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "مفعل" @@ -115,6 +115,10 @@ msgstr "لا" msgid "Yes" msgstr "نعم" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +214,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Event type" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo index 9f609c4545..cd4a3463bf 100644 Binary files a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po index 6d195c88bc..ea5e15a0fe 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Няма" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Потребител" @@ -55,15 +55,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Коментар" @@ -79,7 +79,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +99,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +115,10 @@ msgstr "Не" msgid "Yes" msgstr "Да" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +214,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Тип на събитието" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo index 90045c9e87..2846bef68d 100644 Binary files a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po index c13ee68149..eb4f6609e1 100644 --- a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Nijedno" msgid "Current state" msgstr "Trenutna stanje" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Korisnik" @@ -56,15 +56,15 @@ msgstr "Poslednja tranzicija" msgid "Date and time" msgstr "Datum i vreme" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Završetak" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Tranzicija" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentar" @@ -80,7 +80,7 @@ msgstr "Vrsta akcije" msgid "Triggers" msgstr "Uzroci" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Akcije stanja rada" @@ -100,11 +100,11 @@ msgstr "Akcija" msgid "Namespace" msgstr "Imenovani prostor" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Labela" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Omogućeno" @@ -116,6 +116,10 @@ msgstr "Ne" msgid "Yes" msgstr "Da" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj tok msgid "Internal name" msgstr "Interno ime" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Radni tok" @@ -211,127 +215,127 @@ msgstr "Radni tok" msgid "Initial state" msgstr "Početno stanje" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Izaberite da li će ovo biti stanje s kojom želite da radni tok započne. Samo jedno stanje može biti početno stanje." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Inicijalno" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "Unesite procenat završetka koji ovo stanje predstavlja u odnosu na radni tok. Koristite brojeve bez znakova procenata." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Stanje radnog toka" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Stanje Radnog toka" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "U kojem momentu stanje ova akcija će se izvršiti" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Kada" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "Podešena staza Python do klase akcije radnog toka." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Putanja za ulaznu akciju" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Podaci o ulaznoj akciji" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Stanje akcije radnog toka" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Stanje porekla" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Stanje destinacije" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Prelazak na radni tok" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Prelazak na radni tok" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tip događaja" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Događaji tranzicije radnog toka" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Događaji tranzicije radnog toka" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Primjer posla" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Primeri toka posla" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Datum i vrijeme" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Unos tragova u procesu toka posla" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Unos tragova u procesu toka posla" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Izbor tranzicije nije validan." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Vrijeme radnog toka proxy" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Vrijeme radnog toka proxies" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Proxy za izvršavanje radnog procesa" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Radni proksi za izvršavanje posla" diff --git a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.mo index dd8e76bed2..9196cdec33 100644 Binary files a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po index 5521eb6690..812d303b09 100644 --- a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "" @@ -55,15 +55,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "" @@ -79,7 +79,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +99,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Označení" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +115,10 @@ msgstr "" msgid "Yes" msgstr "" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +214,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.mo index 3c8ae99e6c..e87b3dff88 100644 Binary files a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po index fca096aff5..027ed93c1d 100644 --- a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Ingen" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Bruger" @@ -55,15 +55,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "" @@ -79,7 +79,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +99,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etiket" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +115,10 @@ msgstr "Nej" msgid "Yes" msgstr "Ja" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +214,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo index a34319fc04..bd88cae307 100644 Binary files a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po index a63c3a1748..c924bed737 100644 --- a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "Keiner" msgid "Current state" msgstr "Aktueller Status" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Benutzer" @@ -58,15 +58,15 @@ msgstr "Letzter Übergang" msgid "Date and time" msgstr "Datum und Zeit" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Fertigstellung" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Übergang" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Kommentar" @@ -82,7 +82,7 @@ msgstr "Aktionstyp" msgid "Triggers" msgstr "Trigger" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Statusaktionen von Workflows" @@ -102,11 +102,11 @@ msgstr "Aktion" msgid "Namespace" msgstr "Namensraum" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Bezeichnung" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Aktiviert" @@ -118,6 +118,10 @@ msgstr "Nein" msgid "Yes" msgstr "Ja" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -205,7 +209,7 @@ msgstr "Dieser Wert wird von anderen Programmteilen verwendet, um sich auf diese msgid "Internal name" msgstr "Interner Name" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Workflow" @@ -213,127 +217,127 @@ msgstr "Workflow" msgid "Initial state" msgstr "Initialstatus" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein Status kann initial sein." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Initial" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der Fertigstellung in Bezug auf den Workflow angibt." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Workflow Status" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Workflow Status" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Ein einfacher Identifikator für diese Aktion." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "Zu welchem Zeitpunkt des Status diese Aktion ausgeführt wird" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Wann" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "Der punktierte Pythonpfad zu der Workflowaktionsklasse, die ausgeführt werden soll." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Pfad der Eingangsaktion" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Daten der Eingangsaktion" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Workflowstatusaktion" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Herkunftsstatus" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Zielstatus" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Workflow Übergang" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Workflow Übergänge" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Ereignistyp" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Workflowübergangstriggerereignis" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Workflowübergangstriggerereignisse" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Workflow" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Workflows" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Zeit" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Workflow Logeintrag" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Workflow Logeinträge" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Kein gültiger Übergang." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Workflow-Laufzeitproxy" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Workflow-Laufzeit-Proxies" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Laufzeitproxy für Workflowstatus" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Runtime-Proxies für Workflowstatus" diff --git a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.mo index 63c1c356fa..8a8fab62c2 100644 Binary files a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po index 838fdac654..db305e3232 100644 --- a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Κανένα" msgid "Current state" msgstr "Τρέχουσα κατσταση" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Χρήστης" @@ -55,15 +55,15 @@ msgstr "Τελευταία μετάβαση" msgid "Date and time" msgstr "Ημερομηνία και ώρα" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Ολοκλήρωση" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Μετάβαση" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Σχόλιο" @@ -79,7 +79,7 @@ msgstr "Τύπος ενέργειας" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Ενέργειες κατάστασης ροής εργασίας" @@ -99,11 +99,11 @@ msgstr "Ενέργεια" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Ετικέτα" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Ενεργοποιημένο" @@ -115,6 +115,10 @@ msgstr "Όχι" msgid "Yes" msgstr "Ναι" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "Αυτή η τιμή θα χρησιμοποιείτε από τις ά msgid "Internal name" msgstr "Εσωτερικό όνομα" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Ροή εργασίας" @@ -210,127 +214,127 @@ msgstr "Ροή εργασίας" msgid "Initial state" msgstr "Αρχική κατάσταση" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Επιλέξτε αν αυτή θα είναι η αρχική κατάσταση της ροής εργασίας. Μόνο μια κατάσταση μπορεί να είναι η αρχική κατάσταση." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Αρχική" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "Εισάγετε το ποσοστό ολοκλήρωσης που εκπροσωπεί αυτή η κατάσταση σε σχέση με την ροή εργασίας. Χρησιμοποιήστε αριθμούς χωρίς το σύμβολο του ποσοστού (%)." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Κατάσταση ροής εργασίας" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Καταστάσεις ροής εργασίας" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "Σε ποιό σημείο αυτής της κατάστασης θα εκτελεστεί αυτή η ενέργεια " -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Πότε" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Ενέργεια κατάστασης ροής εργασίας" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Κατάσταση προέλευσης" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Κατάσταση προορισμού" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Μετάβαση ροής εργασίας" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Μεταβάσεις ροής εργασίας" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Τύπος συμβάντος" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Συμβάν ενεργοποίησης μετάβασης ροής εργασίας" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Συμβάντα ενεργοποίησης μεταβάσεων ροής εργασίας" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Έγγραφο" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Περιστατικό ροής εργασίας" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Περιστατικά ροής εργασίας" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Ημερομηνία και ώρα" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Εγγραφή ημερολογίου περιστατικού ροής εργασίας" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Εγγραφές ημερολογίου περιστατικών ροής εργασίας" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Άκυρη επιλογή μετάβασης." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po index 4bc702a7e8..e6346cf3e1 100644 --- a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -43,7 +43,7 @@ msgstr "" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "" @@ -55,15 +55,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "" @@ -79,7 +79,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +99,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +115,10 @@ msgstr "" msgid "Yes" msgstr "" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +214,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo index c33a14b000..e86b16e9dd 100644 Binary files a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po index ced630bcd8..9c769d1fa9 100644 --- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:50+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgstr "Ninguno" msgid "Current state" msgstr "Estado actual" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Usuario" @@ -57,15 +57,15 @@ msgstr "Última transición" msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Cantidad de completación" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transición" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Comentario" @@ -81,7 +81,7 @@ msgstr "Tipo de acción" msgid "Triggers" msgstr "Disparadores" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Acciones del estado del flujo de trabajo" @@ -101,11 +101,11 @@ msgstr "Acción" msgid "Namespace" msgstr "Categoría" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etiqueta" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Habilitado" @@ -117,6 +117,10 @@ msgstr "No" msgid "Yes" msgstr "Si" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -204,7 +208,7 @@ msgstr "Este valor será utilizado por otras aplicaciones para hacer referencia msgid "Internal name" msgstr "Nombre interno" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Flujo de trabajo" @@ -212,127 +216,127 @@ msgstr "Flujo de trabajo" msgid "Initial state" msgstr "Estado inicial" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Seleccione si este va a ser el estado con el que desea que el flujo de trabajo comience. Sólo un estado puede ser el estado inicial." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Inicial" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "Introduzca el porcentaje de finalización que este estado representa en relación con el flujo de trabajo. Utilice números sin el signo de porcentaje." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Estado de flujo de trabajo" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Estados de flujo de trabajo" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Un identificador simple para esta acción." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "En qué momento del estado se ejecutará esta acción" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Cuando" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "La ruta de Python separada por puntos a la clase de acción de flujo de trabajo que se va a ejecutar." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Ruta de acceso a la acción" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Datos de la acción" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Acción del estado del flujo de trabajo" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Estado origen" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Estado destino" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transición de flujo de trabajo" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transiciones de flujo de trabajo" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tipo de evento" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Disparador de transiciones de flujo de trabajo" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Disparadores de transiciones de flujo de trabajo" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Documento" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Instancia de flujo de trabajo" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Instancias de flujo de trabajo" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Fecha y hora" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Entrada de registro de la instancia de flujo de trabajo" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Entradas de registro de las instancias de flujos de trabajo" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "No hay opción valida de transición." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Proxy de tiempo de ejecución de flujo de trabajo" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Proxies de tiempo de ejecución de flujo de trabajo" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Proxy de tiempo de ejecución de estado de flujo de trabajo" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Proxies de tiempo de ejecución de estado de flujo de trabajo" diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo index 437c6c3f26..a148ade270 100644 Binary files a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po index 4e2bcd97b3..8812c8a24c 100644 --- a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" @@ -45,7 +45,7 @@ msgstr "هیچ یک" msgid "Current state" msgstr "وضعیت فعلی" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "کاربر" @@ -57,15 +57,15 @@ msgstr "آخرین گذار" msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "تکمیل" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "گذار" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "اظهار نظر" @@ -81,7 +81,7 @@ msgstr "نوع اقدام" msgid "Triggers" msgstr "راه اندازی" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "اقدامات دولت کار جریان" @@ -101,11 +101,11 @@ msgstr "عمل" msgid "Namespace" msgstr "فضای نام" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "برچسب" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "فعال شده است" @@ -117,6 +117,10 @@ msgstr "نه" msgid "Yes" msgstr "بله" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -204,7 +208,7 @@ msgstr "این مقدار توسط برنامه های دیگر برای ارج msgid "Internal name" msgstr "نام داخلی" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "گردش کار" @@ -212,127 +216,127 @@ msgstr "گردش کار" msgid "Initial state" msgstr "حالت اولیه" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "انتخاب کنید اگر این حالت شما خواهد بود که می خواهید جریان کار شروع شود. تنها یک حالت می تواند وضعیت اولیه باشد." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "اولیه" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "درصد تکمیل را که این وضعیت در رابطه با جریان کاری نشان می دهد وارد کنید. استفاده از اعداد بدون نشانه درصد." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "حالت گردش کار" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "وضعیت کار" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "در این لحظه دولت این عمل را اجرا خواهد کرد" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "چه زمانی" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "مسیر پایتون نقطه به کلاس عملیات گردش کار برای اجرای." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Entry action path" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Entry action data" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Workflow state action" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "کشور مبدا" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "حالت مقصد" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "گذار گردش کار" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "گذارهای کاری" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "نوع رویداد" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "رویداد رویداد انتقال جریان کاری" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "انتقال گردش کار باعث وقایع می شود" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "سند" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "نمونه گردش کار" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "نمونه کارها" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "زمان قرار" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "ورودی به لاگ یک مورد از گردش کار" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "ورودیهای لگ یک مورد از گردش کار" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "یک انتخاب منتخب معتبر نیست" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "پروکسی زمانبندی گردش کار" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "پروکسی کارآمد در زمان اجرا" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "پروکسی زمان اجرا وضعیت " -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "پروکسی زمان اجرا وضعیت " diff --git a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo index 1c845ee340..86a6dbf691 100644 Binary files a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po index 0dbbfedf35..349b0f3020 100644 --- a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" @@ -47,7 +47,7 @@ msgstr "Aucun" msgid "Current state" msgstr "État actuel" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Utilisateur" @@ -59,15 +59,15 @@ msgstr "Dernière transition" msgid "Date and time" msgstr "Date et heure" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Finalisation" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transition" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Commentaire" @@ -83,7 +83,7 @@ msgstr "Type d'action" msgid "Triggers" msgstr "Déclencheurs" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Actions d'état du flux de travail" @@ -103,11 +103,11 @@ msgstr "Action" msgid "Namespace" msgstr "Espace de nommage" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Libellé" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Activé" @@ -119,6 +119,10 @@ msgstr "Non" msgid "Yes" msgstr "Oui" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -206,7 +210,7 @@ msgstr "Cette valeur sera utilisée par d'autres applications pour faire référ msgid "Internal name" msgstr "Nom interne" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Flux de travail" @@ -214,127 +218,127 @@ msgstr "Flux de travail" msgid "Initial state" msgstr "État initial" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Sélectionnez si vous voulez que cet état soit celui par lequel le flux de travail débute. Un seul état peut être à l'état initial." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Initial" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "Spécifiez le pourcentage de finalisation que cet état représente au sein du flux de travail. Saisissez un nombre sans le signe de pourcentage." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "État du flux de travail" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "États du flux de travail" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Un identifiant simple pour cette action." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "A quel stade de l'état cette action sera exécutée" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Quand" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "Le chemin Python séparé par des points vers la classe d'action de flux de travail à exécuter." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Chemin d'action d'entrée" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Données d'action d'entrée" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Action d'état du flux de travail" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "État d'origine" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "État de destination" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transition du flux de travail" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transitions du flux de travail" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Type d'évènement" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Événement déclencheur de transition du flux de travail" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Événements déclencheurs de transitions du flux de travail" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Document" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Instance du flux de travail" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Instances du flux de travail" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Date et heure" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Entrée de la journalisation de l'instance du flux de travail" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Entrées de la journalisation du flux de travail" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Choix de transition invalide." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Proxy d'exécution du flux de travail" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Proxies d'exécution du flux de travail" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Protocole d'exécution de l'état du flux de travail" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Proxies d'exécution de l'état du flux de travail" @@ -427,11 +431,11 @@ msgstr "Flux de travail du document : %s" msgid "" "This view will show the state changes as a workflow instance is " "transitioned." -msgstr "" +msgstr "Cette page affiche les changements d'état lors de la transition d'une instance de flux de travail." #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" -msgstr "" +msgstr "Il n'y a pas de détails pour cette instance de workflow" #: views/workflow_instance_views.py:90 #, python-format @@ -456,7 +460,7 @@ msgstr "Réaliser une transition pour le flux de travail : %s" msgid "" "Associate a workflow with some document types and documents of those types " "will be listed in this view." -msgstr "" +msgstr "Associer un flux de travail à certains types de documents et les documents de ces types seront répertoriés dans cette vue." #: views/workflow_proxy_views.py:50 msgid "There are no documents executing this workflow" @@ -479,7 +483,7 @@ msgstr "Il n'y a pas de flux de travail" #: views/workflow_proxy_views.py:94 msgid "There are no documents in this workflow state" -msgstr "" +msgstr "Aucun document dans cet état de flux de travail" #: views/workflow_proxy_views.py:97 #, python-format @@ -531,12 +535,12 @@ msgstr "Aucun flux de travail n'a été défini" #: views/workflow_views.py:166 #, python-format msgid "Delete workflow: %s?" -msgstr "" +msgstr "Supprimer le flux de travail: %s?" #: views/workflow_views.py:182 #, python-format msgid "Edit workflow: %s" -msgstr "" +msgstr "Modifier le flux de travail: %s" #: views/workflow_views.py:196 msgid "Available document types" @@ -599,12 +603,12 @@ msgstr "Créer des états pour le flux de travail : %s" #: views/workflow_views.py:460 #, python-format msgid "Delete workflow state: %s?" -msgstr "" +msgstr "Supprimer l'état du flux de travail: %s?" #: views/workflow_views.py:483 #, python-format msgid "Edit workflow state: %s" -msgstr "" +msgstr "Modifier l'état du flux de travail: %s" #: views/workflow_views.py:514 msgid "This workflow doesn't have any states" @@ -618,12 +622,12 @@ msgstr "Créer des transitions du flux de travail : %s" #: views/workflow_views.py:577 #, python-format msgid "Delete workflow transition: %s?" -msgstr "" +msgstr "Supprimer la transition du flux de travail: %s?" #: views/workflow_views.py:600 #, python-format msgid "Edit workflow transition: %s" -msgstr "" +msgstr "Modification de la transition du flux de travail: %s" #: views/workflow_views.py:635 msgid "" @@ -680,7 +684,7 @@ msgstr "Prévisualisation de : %s" #: workflow_actions.py:22 msgid "Document label" -msgstr "" +msgstr "Étiquette du document" #: workflow_actions.py:25 msgid "" @@ -689,7 +693,7 @@ msgstr "La nouvelle étiquette à attribuer au document. Peut être une chaîne #: workflow_actions.py:30 msgid "Document description" -msgstr "" +msgstr "Description du document" #: workflow_actions.py:33 msgid "" diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo index 99200746bb..3e9a65d2c4 100644 Binary files a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po index 9f5c2f1bb7..36160ab46d 100644 --- a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Semmi" msgid "Current state" msgstr "Jelen állapot" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Felhasználó" @@ -56,15 +56,15 @@ msgstr "" msgid "Date and time" msgstr "Dátum és idő" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Megjegyzés" @@ -80,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "Névtér" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Cimke" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Bekapcsolt" @@ -116,6 +116,10 @@ msgstr "Nem" msgid "Yes" msgstr "Igen" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -211,127 +215,127 @@ msgstr "" msgid "Initial state" msgstr "Kezdeti állapot" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Esemény típus" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokumentum" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo index 0a11984d2a..c25b9696de 100644 Binary files a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po index f4b8f3437a..56ac5ff389 100644 --- a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Nihil" msgid "Current state" msgstr "Kondisi saat ini" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Pengguna" @@ -56,15 +56,15 @@ msgstr "Transisi terakhir" msgid "Date and time" msgstr "Tanggal dan waktu" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transisi" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentar" @@ -80,7 +80,7 @@ msgstr "Tipe tindakan" msgid "Triggers" msgstr "Pemicu" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Kondisi aksi alur kerja" @@ -100,11 +100,11 @@ msgstr "Tindakan" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Label" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -116,6 +116,10 @@ msgstr "Tidak" msgid "Yes" msgstr "Ya" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "Nama internal" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Alur kerja" @@ -211,127 +215,127 @@ msgstr "Alur kerja" msgid "Initial state" msgstr "Kondisi inisiasi" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Inisiasi" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Kondisi alur kerja" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Kondisi alur kerja" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Kapan" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Kondisi asli" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Tujuan kondisi" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transisi alur kerja" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transisi alur kerja" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokumen" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Waktu tanggal" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Pilihan transisi tidak valid" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo index 2b788745f8..c14c1eedf4 100644 Binary files a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po index d1bc78da6f..e89c8d857b 100644 --- a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Nessuna " msgid "Current state" msgstr "Stato corrente" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Utente" @@ -56,15 +56,15 @@ msgstr "Ultima transizione" msgid "Date and time" msgstr "Data e ora" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Completamento" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transizione" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Commento" @@ -80,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "Namespace" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etichetta" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Abilitato" @@ -116,6 +116,10 @@ msgstr "No" msgid "Yes" msgstr "Si" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "Nome interno" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Workflow" @@ -211,127 +215,127 @@ msgstr "Workflow" msgid "Initial state" msgstr "Stato iniziale" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Seleziona se questo è lo stato da utilizzare quando il workflow inizia. Solo uno stato può essere quello iniziale." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Iniziale" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "Inserisci la percentuale di completamento che questo stato rappresenta in relazione al workflow. Usa i numeri senza segno di percentuale." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Stato workflow" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Stati workflow" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Stato originale" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Stato di destinazione" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transizione workflow" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transizioni workflow" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tipo evento" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Documento" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Istanza workflow" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Istanze workflow" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Data e ora" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Voce log istanza workflow" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Voci log istanza workflow" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.mo index 4aabbc43fe..c6652e8886 100644 Binary files a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po index b7b7ec0ecf..8e2fa16c0c 100644 --- a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Nav neviens" msgid "Current state" msgstr "Pašreizējais stāvoklis" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Lietotājs" @@ -56,15 +56,15 @@ msgstr "Pēdējā pāreja" msgid "Date and time" msgstr "Datums un laiks" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Pabeigšana" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Pāreja" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentārs" @@ -80,7 +80,7 @@ msgstr "Darbības veids" msgid "Triggers" msgstr "Palaišanas" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Darbplūsmas stāvokļa darbības" @@ -100,11 +100,11 @@ msgstr "Rīcība" msgid "Namespace" msgstr "Vārda vieta" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etiķete" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Iespējots" @@ -116,6 +116,10 @@ msgstr "Nē" msgid "Yes" msgstr "Jā" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "Šo vērtību izmantos citas lietotnes, lai atsauktos uz šo darbplūsmu msgid "Internal name" msgstr "Iekšējais nosaukums" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Darbplūsma" @@ -211,127 +215,127 @@ msgstr "Darbplūsma" msgid "Initial state" msgstr "Sākotnējais stāvoklis" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Atlasiet, vai tas būs stāvoklis, ar kuru vēlaties darbplūsmu sākt. Tikai viens stāvoklis var būt sākotnējais stāvoklis." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Sākotnējais" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "Ievadiet procentus no pabeigšanas, ko šī valsts pārstāv attiecībā uz darbplūsmu. Izmantot numurus bez procentuālās zīmes." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Darbplūsmas stāvoklis" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Darbplūsmas stāvokļi" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Vienkāršs šīs darbības identifikators." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "Kādā brīdī šī darbība tiks izpildīta" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Kad" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "Punkta Python ceļš uz darbplūsmas darbības klasi, lai izpildītu." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Ieejas ceļš" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Ievades darbības dati" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Darbplūsmas stāvokļa darbība" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Izcelsmes valsts" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Galamērķa valsts" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Darbplūsmas pāreja" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Darbplūsmas pārejas" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Notikuma veids" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Darbplūsmas pārejas sprūda notikums" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Darbplūsmas pārejas izraisa notikumus" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokuments" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Darbplūsmas piemērs" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Darbplūsmas gadījumi" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Datums Laiks" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Darbplūsmas gadījumu žurnāla ieraksts" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Darbplūsmas gadījumu žurnāla ieraksti" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Nav derīga pārejas izvēle." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Darbplūsmas izpildes laiks" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Darbplūsmas izpildes laiks" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Darbplūsmas stāvokļa izpildlaika starpniekserveris" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Darbplūsmas stāvokļa izpildes laiks" @@ -424,11 +428,11 @@ msgstr "Dokumenta darbplūsmas: %s" msgid "" "This view will show the state changes as a workflow instance is " "transitioned." -msgstr "" +msgstr "Šis skats parādīs stāvokļa izmaiņas, kad notiks darbplūsmas instances pāreja." #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" -msgstr "" +msgstr "Šajā darbplūsmas instancē nav sīkākas informācijas" #: views/workflow_instance_views.py:90 #, python-format @@ -438,7 +442,7 @@ msgstr "Darba plūsmas apraksts: %(workflow)s" #: views/workflow_instance_views.py:114 #, python-format msgid "Document \"%s\" transitioned successfully" -msgstr "Dokuments "%s" veiksmīgi mainīts" +msgstr "Dokuments \"%s\" veiksmīgi mainīts" #: views/workflow_instance_views.py:123 msgid "Submit" @@ -476,12 +480,12 @@ msgstr "Nav darbplūsmu" #: views/workflow_proxy_views.py:94 msgid "There are no documents in this workflow state" -msgstr "" +msgstr "Šajā darbplūsmas stāvoklī nav dokumentu" #: views/workflow_proxy_views.py:97 #, python-format msgid "Documents in the workflow \"%s\", state \"%s\"" -msgstr "Dokumenti darbplūsmā "%s", norādiet "%s"" +msgstr "Dokumenti darbplūsmā \"%s\", norādiet \"%s\"" #: views/workflow_proxy_views.py:142 views/workflow_views.py:511 msgid "Create states and link them using transitions." @@ -528,12 +532,12 @@ msgstr "Nav noteiktas darbplūsmas" #: views/workflow_views.py:166 #, python-format msgid "Delete workflow: %s?" -msgstr "" +msgstr "Dzēst darbplūsmu: %s?" #: views/workflow_views.py:182 #, python-format msgid "Edit workflow: %s" -msgstr "" +msgstr "Rediģēt darbplūsmu: %s" #: views/workflow_views.py:196 msgid "Available document types" @@ -557,7 +561,7 @@ msgstr "Dokumentu veidiem, kuriem piešķirta darbplūsma: %s" #: views/workflow_views.py:265 #, python-format msgid "Create a \"%s\" workflow action" -msgstr "Izveidojiet darbplūsmas darbību "%s"" +msgstr "Izveidojiet darbplūsmas darbību \"%s\"" #: views/workflow_views.py:305 #, python-format @@ -596,12 +600,12 @@ msgstr "Izveidojiet darbplūsmas stāvokļus: %s" #: views/workflow_views.py:460 #, python-format msgid "Delete workflow state: %s?" -msgstr "" +msgstr "Dzēst darbplūsmas stāvokli: %s?" #: views/workflow_views.py:483 #, python-format msgid "Edit workflow state: %s" -msgstr "" +msgstr "Rediģēt darbplūsmas stāvokli: %s" #: views/workflow_views.py:514 msgid "This workflow doesn't have any states" @@ -615,12 +619,12 @@ msgstr "Izveidojiet pārejas darbplūsmai: %s" #: views/workflow_views.py:577 #, python-format msgid "Delete workflow transition: %s?" -msgstr "" +msgstr "Dzēst darbplūsmas pāreju: %s?" #: views/workflow_views.py:600 #, python-format msgid "Edit workflow transition: %s" -msgstr "" +msgstr "Rediģēt darbplūsmas pāreju: %s" #: views/workflow_views.py:635 msgid "" @@ -677,7 +681,7 @@ msgstr "Priekšskatījums: %s" #: workflow_actions.py:22 msgid "Document label" -msgstr "" +msgstr "Dokumenta etiķete" #: workflow_actions.py:25 msgid "" @@ -686,7 +690,7 @@ msgstr "Jaunā etiķete, kas jāpiešķir dokumentam. Var būt virkne vai veidne #: workflow_actions.py:30 msgid "Document description" -msgstr "" +msgstr "Dokumenta apraksts" #: workflow_actions.py:33 msgid "" @@ -718,7 +722,7 @@ msgid "" " log entry instance as part of their context via the variable \"entry_log\"." " The \"entry_log\" in turn provides the \"workflow_instance\", \"datetime\"," " \"transition\", \"user\", and \"comment\" attributes." -msgstr "Var būt IP adrese, domēns vai veidne. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo "entry_log". Savukārt "entry_log" nodrošina atribūtus "workflow_instance", "datetime", "pāreja", "lietotājs" un "komentārs"." +msgstr "Var būt IP adrese, domēns vai veidne. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo \"entry_log\". Savukārt \"entry_log\" nodrošina atribūtus \"workflow_instance\", \"datetime\", \"pāreja\", \"lietotājs\" un \"komentārs\"." #: workflow_actions.py:103 msgid "Timeout" @@ -739,7 +743,7 @@ msgid "" " part of their context via the variable \"entry_log\". The \"entry_log\" in " "turn provides the \"workflow_instance\", \"datetime\", \"transition\", " "\"user\", and \"comment\" attributes." -msgstr "JSON dokuments, kas jāiekļauj pieprasījumā. Var būt arī veidne, kas atgriež JSON dokumentu. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo "entry_log". Savukārt "entry_log" nodrošina atribūtus "workflow_instance", "datetime", "pāreja", "lietotājs" un "komentārs"." +msgstr "JSON dokuments, kas jāiekļauj pieprasījumā. Var būt arī veidne, kas atgriež JSON dokumentu. Veidnes saņem darbplūsmas žurnāla ieraksta gadījumu kā daļu no konteksta, izmantojot mainīgo \"entry_log\". Savukārt \"entry_log\" nodrošina atribūtus \"workflow_instance\", \"datetime\", \"pāreja\", \"lietotājs\" un \"komentārs\"." #: workflow_actions.py:125 msgid "Perform a POST request" diff --git a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.mo index 02dcc1e4ce..d3a965e52a 100644 Binary files a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po index bbf0f4f069..6c86278bd7 100644 --- a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Geen" msgid "Current state" msgstr "Huidige staat" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Gebruiker" @@ -56,15 +56,15 @@ msgstr "Laatste transitie" msgid "Date and time" msgstr "Datum en tijd" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Voltooiing" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transitie" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Commentaar" @@ -80,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "Namespace" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Label" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Ingeschakeld" @@ -116,6 +116,10 @@ msgstr "Nee" msgid "Yes" msgstr "Ja" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Workflow" @@ -211,127 +215,127 @@ msgstr "Workflow" msgid "Initial state" msgstr "Initiële staat" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Initieel" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Workflowstaat" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Workflowstaten" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Originele staat" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Bestemmingsstaat" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Workflowtransitie" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Workflowtransities" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Evenementsoort" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Document" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Workflowinstantie" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Workflowinstanties" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Datumtijd" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo index 11793be447..d8727241c4 100644 Binary files a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po index a04e031bae..27e4df4bd3 100644 --- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Brak" msgid "Current state" msgstr "Aktualny stan" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Użytkownik" @@ -56,15 +56,15 @@ msgstr "" msgid "Date and time" msgstr "Data i godzina" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentarz" @@ -80,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "Przestrzeń nazw" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etykieta" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Włączone" @@ -116,6 +116,10 @@ msgstr "Nie" msgid "Yes" msgstr "Tak" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "Nazwa wewnętrzna" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Obieg dokumentów" @@ -211,127 +215,127 @@ msgstr "Obieg dokumentów" msgid "Initial state" msgstr "Stan początkowy" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Początkowy" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Stan obiegu" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Stany obiegu" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Typ zdarzenia" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo index 09a5fe6ea1..0e75c83cd5 100644 Binary files a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po index d7ed9c747f..ac7deff99f 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Nenhum" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Utilizador" @@ -55,15 +55,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Comentário" @@ -79,7 +79,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +99,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Nome" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +115,10 @@ msgstr "Não" msgid "Yes" msgstr "Sim" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +214,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tipo de evento" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo index b96d00fabf..0adec4b71c 100644 Binary files a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po index c7e3c85033..548b436e0b 100644 --- a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -47,7 +47,7 @@ msgstr "Nenhum" msgid "Current state" msgstr "Estado atual" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Usuário" @@ -59,15 +59,15 @@ msgstr "Última transação" msgid "Date and time" msgstr "Data e hora" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Finalização" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Transações" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Comentário" @@ -83,7 +83,7 @@ msgstr "Tipo de ação" msgid "Triggers" msgstr "Acionadores" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Ações do estado do fluxo de trabalho" @@ -103,11 +103,11 @@ msgstr "Ação" msgid "Namespace" msgstr "namespace" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Rótulo" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Habilitado" @@ -119,6 +119,10 @@ msgstr "Não" msgid "Yes" msgstr "Sim" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -206,7 +210,7 @@ msgstr "Este valor será usado por outros aplicativos para referenciar este flux msgid "Internal name" msgstr "Nome interno" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Fluxo de trabalho" @@ -214,127 +218,127 @@ msgstr "Fluxo de trabalho" msgid "Initial state" msgstr "Estado Inicial" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Selecione se este será o estado no qual você deseja que o fluxo de trabalho comece. Apenas um estado pode ser o estado inicial." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Inicial" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "Insira a porcentagem de finalização que este estado representa em relação ao fluxo de trabalho. Utilize números sem o sinal de porcentagem." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Estado do fluxo de trabalho" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Estados do fluxo de trabalho" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Um identificador simples para esta ação" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "Em que momento do estado esta ação será executada" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Quando" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "A caminho em Python para a classe de ação do fluxo de trabalho que será executado." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Caminho da ação de entrada" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Dados da ação de entrada" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Ação do estado do fluxo de trabalho" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Estado original" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Estado de destino" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Transição do fluxo de trabalho" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Transições do fluxo de trabalho" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tipo de Evento" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Evento acionador de transição do fluxo de trabalho" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Eventos acionadores de transições de fluxos de trabalho" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Documento" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Instância do fluxo de trabalho" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "instâncias do fluxo de trabalho" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Hora e data" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Entrada do registro de instâncias do fluxo de trabalho" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Entradas do registro de instâncias do fluxo de trabalho" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Não é uma opção de transição válida." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Proxy de tempo de execução do fluxo de trabalho" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Proxies de tempo de execução do fluxo de trabalho" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Proxy de tempo de execução do fluxo de trabalho" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Proxies de tempo de execução do fluxo de trabalho" diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo index 69bc8df011..ac5f5bb759 100644 Binary files a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po index 39284d08ed..f0b4bc5bf0 100644 --- a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Nici unul" msgid "Current state" msgstr "Starea curentă" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Utilizator" @@ -56,15 +56,15 @@ msgstr "Ultima tranziție" msgid "Date and time" msgstr "Data și ora" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Finalizare" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Tranziție" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Comentariu" @@ -80,7 +80,7 @@ msgstr "Tipul de acțiune" msgid "Triggers" msgstr "Declanșatoare" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "Acțiuni de stare de lucru" @@ -100,11 +100,11 @@ msgstr "Acțiune" msgid "Namespace" msgstr "Spațiu de nume" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etichetă" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Activat" @@ -116,6 +116,10 @@ msgstr "Nu" msgid "Yes" msgstr "Da" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "Această valoare va fi utilizată de alte aplicații pentru a face refer msgid "Internal name" msgstr "Nume intern" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "Flux de lucru" @@ -211,127 +215,127 @@ msgstr "Flux de lucru" msgid "Initial state" msgstr "Stare inițială" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Selectați dacă aceasta va fi starea cu care doriți să înceapă fluxul de lucru. Numai o stare poate fi starea inițială." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "Iniţială" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "Introduceți procentul de finalizare pe care această stare îl reprezinta în raport cu fluxul de lucru. Utilizați numere fără semnul procentual." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "Starea fluxului de lucru" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "Stările fluxului de lucru" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "Un identificator simplu pentru această acțiune." -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "În ce moment al stării se va executa această acțiune" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "Cănd" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "Calea Python punctată la clasa de acțiune a fluxului de lucru care trebuie executată." -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "Căi de acțiune pentru intrare" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "Datele privind acțiunile de intrare" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "Acțiune de stare de flux de lucru" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Stare originală" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Stare destinație" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Tranziția fluxului de lucru" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "Tranziții ale fluxului de lucru" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Tip eveniment" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "Evenimentul de declanșare a tranziției fluxului de lucru" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "Evenimente de declanșare a tranzițiilor fluxului de lucru" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Document" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "Instanță de flux de lucru" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "Instanțe de flux de lucru" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Marcă temporală" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "Înregistrare din jurnalul instanțelor fluxului de lucru" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "Înregistrări din jurnalul instanțelor fluxului de lucru" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Nu este o alegere de tranziție valabilă." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "Proxy runtime pentru fluxul de lucru" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "Proxy-uri de runtime pentru fluxul de lucru" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "Proxy de runtime pentru starea fluxului de lucru" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "Proxy-uri runtime de stare de flux de lucru" @@ -476,7 +480,7 @@ msgstr "Nu există fluxuri de lucru" #: views/workflow_proxy_views.py:94 msgid "There are no documents in this workflow state" -msgstr "" +msgstr "Nu există documente în această stare de lucru" #: views/workflow_proxy_views.py:97 #, python-format diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo index c1c3450194..4d90b33ac8 100644 Binary files a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po index 8373c2d3fb..ef216aadc8 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Ничего" msgid "Current state" msgstr "Текущее состояние" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Пользователь" @@ -56,15 +56,15 @@ msgstr "" msgid "Date and time" msgstr "Дата и время" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Завершение" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Переход" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Комментарий" @@ -80,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "Пространство имен" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Надпись" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Доступно" @@ -116,6 +116,10 @@ msgstr "Нет" msgid "Yes" msgstr "Да" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "Внутреннее имя" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -211,127 +215,127 @@ msgstr "" msgid "Initial state" msgstr "Исходное состояние" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Тип события" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Документ" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo index 4054a24d99..e0abda3251 100644 Binary files a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po index abcb6f5cd3..4bc81e22b0 100644 --- a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Brez" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "" @@ -55,15 +55,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Komentar" @@ -79,7 +79,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +99,11 @@ msgstr "" msgid "Namespace" msgstr "Imenski prostor" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Oznaka" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +115,10 @@ msgstr "Ne" msgid "Yes" msgstr "Da" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +214,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "Dokument" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.mo index abceebace9..9eadf8e50e 100644 Binary files a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po index a986386a43..60a8765970 100644 --- a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "Yok" msgid "Current state" msgstr "Mevcut durum" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Kullanıcı" @@ -56,15 +56,15 @@ msgstr "Son geçiş" msgid "Date and time" msgstr "Tarih ve saat" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "Tamamlama" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "Geçiş" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Yorum Yap" @@ -80,7 +80,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -100,11 +100,11 @@ msgstr "" msgid "Namespace" msgstr "Alanadı" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "Etiket" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "Etkin" @@ -116,6 +116,10 @@ msgstr "Hayır" msgid "Yes" msgstr "Evet" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "Bu değer, bu iş akışını referans olarak diğer uygulamalar tarafı msgid "Internal name" msgstr "Dahili adı" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "İş Akışı" @@ -211,127 +215,127 @@ msgstr "İş Akışı" msgid "Initial state" msgstr "İlk durum" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "Bunun, iş akışının başlatılmasını istediğiniz durum olup olmayacağını seçin. Başlangıç ​​durumu yalnızca bir durum olabilir." -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "ilk" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "İş akışıyla ilişkili olarak bu durumun temsil ettiği tamamlama yüzdesini girin. Yüzde işareti olmadan rakamları kullanın." -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "İş akışı durumu" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "İş akışı durumları" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "Kaynak Durum" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "Hedef durum" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "Iş akışı geçiş" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "İş akışı geçişleri" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Etkinlik türü" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "belge" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "İş akışı örneği" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "İş akışı örnekleri" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "Tarih saat" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "İş akışı örneği günlük girişi" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "İş akışı örneği günlük girdileri" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "Geçerli bir geçiş seçeneği değil." -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "İş akışı çalışma zamanı vekili" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "İş akışı çalışma zamanı vekilleri" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "İş akışı durum çalışma zamanı vekili" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "İş akışı durum çalışma zamanı vekilleri" diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo index 13dd98a3be..d8df0018f8 100644 Binary files a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po index 2e02547320..fd6d19484e 100644 --- a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "None" msgid "Current state" msgstr "" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "Người dùng" @@ -55,15 +55,15 @@ msgstr "" msgid "Date and time" msgstr "" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "Chú thích" @@ -79,7 +79,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "" @@ -99,11 +99,11 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "" @@ -115,6 +115,10 @@ msgstr "" msgid "Yes" msgstr "" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -202,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "" @@ -210,127 +214,127 @@ msgstr "" msgid "Initial state" msgstr "" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "Loại sự kiện" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.mo index 538c9fd15d..05c476aa33 100644 Binary files a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.mo and b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po index 43c3b151ca..c88fbf9fa9 100644 --- a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:37-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -44,7 +44,7 @@ msgstr "没有" msgid "Current state" msgstr "当前状态" -#: apps.py:176 apps.py:203 models.py:484 +#: apps.py:176 apps.py:203 models.py:514 msgid "User" msgstr "用户" @@ -56,15 +56,15 @@ msgstr "最后的流转" msgid "Date and time" msgstr "日期和时间" -#: apps.py:192 models.py:181 +#: apps.py:192 models.py:211 msgid "Completion" msgstr "完成" -#: apps.py:206 forms.py:178 links.py:161 models.py:339 models.py:480 +#: apps.py:206 forms.py:178 links.py:161 models.py:369 models.py:510 msgid "Transition" msgstr "流转" -#: apps.py:210 forms.py:181 models.py:486 +#: apps.py:210 forms.py:182 models.py:516 msgid "Comment" msgstr "评论" @@ -80,7 +80,7 @@ msgstr "操作类型" msgid "Triggers" msgstr "触发器" -#: error_logs.py:8 models.py:272 +#: error_logs.py:8 models.py:302 msgid "Workflow state actions" msgstr "工作流状态操作" @@ -100,11 +100,11 @@ msgstr "操作" msgid "Namespace" msgstr "命名空间" -#: forms.py:121 models.py:48 models.py:169 models.py:250 models.py:313 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 msgid "Label" msgstr "标签" -#: forms.py:125 models.py:252 +#: forms.py:125 models.py:282 msgid "Enabled" msgstr "启用" @@ -116,6 +116,10 @@ msgstr "否" msgid "Yes" msgstr "是" +#: forms.py:181 +msgid "Optional comment to attach to the transition." +msgstr "" + #: handlers.py:62 #, python-format msgid "Event trigger: %s" @@ -203,7 +207,7 @@ msgstr "其他应用程序将使用此值来引用此工作流程。只能包含 msgid "Internal name" msgstr "内部名称" -#: models.py:60 models.py:167 models.py:311 models.py:358 +#: models.py:60 models.py:197 models.py:341 models.py:388 msgid "Workflow" msgstr "工作流" @@ -211,127 +215,127 @@ msgstr "工作流" msgid "Initial state" msgstr "初始状态" -#: models.py:173 +#: models.py:203 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." msgstr "选择是否这是您希望工作流启动的状态。只有一个状态可以是初始状态。" -#: models.py:175 +#: models.py:205 msgid "Initial" msgstr "初始" -#: models.py:179 +#: models.py:209 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." msgstr "输入此状态相对于工作流所代表的完成百分比。使用没有百分号的数字。" -#: models.py:187 models.py:246 +#: models.py:217 models.py:276 msgid "Workflow state" msgstr "工作流状态" -#: models.py:188 +#: models.py:218 msgid "Workflow states" msgstr "工作流状态" -#: models.py:249 +#: models.py:279 msgid "A simple identifier for this action." msgstr "此操作的简单标识符。" -#: models.py:256 +#: models.py:286 msgid "At which moment of the state this action will execute" msgstr "在该状态下此操作将执行" -#: models.py:257 +#: models.py:287 msgid "When" msgstr "何时" -#: models.py:261 +#: models.py:291 msgid "The dotted Python path to the workflow action class to execute." msgstr "要执行的工作流操作类的虚线Python路径。" -#: models.py:262 +#: models.py:292 msgid "Entry action path" msgstr "进入操作路径" -#: models.py:265 +#: models.py:295 msgid "Entry action data" msgstr "进入操作数据" -#: models.py:271 +#: models.py:301 msgid "Workflow state action" msgstr "工作流状态操作" -#: models.py:316 +#: models.py:346 msgid "Origin state" msgstr "原始状态" -#: models.py:320 +#: models.py:350 msgid "Destination state" msgstr "目标状态" -#: models.py:328 +#: models.py:358 msgid "Workflow transition" msgstr "工作流流转" -#: models.py:329 +#: models.py:359 msgid "Workflow transitions" msgstr "工作流流转" -#: models.py:343 +#: models.py:373 msgid "Event type" msgstr "事件类型" -#: models.py:347 +#: models.py:377 msgid "Workflow transition trigger event" msgstr "工作流流转触发事件" -#: models.py:348 +#: models.py:378 msgid "Workflow transitions trigger events" msgstr "工作流流转触发事件" -#: models.py:362 +#: models.py:392 msgid "Document" msgstr "文档" -#: models.py:368 models.py:473 +#: models.py:398 models.py:503 msgid "Workflow instance" msgstr "工作流实例" -#: models.py:369 +#: models.py:399 msgid "Workflow instances" msgstr "工作流实例" -#: models.py:476 +#: models.py:506 msgid "Datetime" msgstr "日期时间" -#: models.py:490 +#: models.py:520 msgid "Workflow instance log entry" msgstr "工作流实例日志条目" -#: models.py:491 +#: models.py:521 msgid "Workflow instance log entries" msgstr "工作流实例日志条目" -#: models.py:498 +#: models.py:528 msgid "Not a valid transition choice." msgstr "不是有效的流转选择。" -#: models.py:531 +#: models.py:561 msgid "Workflow runtime proxy" msgstr "工作流运行时的代理" -#: models.py:532 +#: models.py:562 msgid "Workflow runtime proxies" msgstr "工作流运行时的代理" -#: models.py:538 +#: models.py:568 msgid "Workflow state runtime proxy" msgstr "工作流状态运行时的代理" -#: models.py:539 +#: models.py:569 msgid "Workflow state runtime proxies" msgstr "工作流状态运行时的代理" diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index 2b82619b54..6eca4ef700 100644 --- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -74,7 +74,7 @@ msgstr "عدد الصفحات الكلي" msgid "Total documents" msgstr "عدد الوثائق الكلي" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -1348,17 +1348,17 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1368,25 +1368,25 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1396,28 +1396,28 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index 5412ff265d..c3ba45b80d 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -1327,68 +1327,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po index 731c11a61a..24d6febd7c 100644 --- a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Total documents" msgstr "Ukupni dokumenti" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumenti u smeću" @@ -1334,70 +1334,70 @@ msgstr "Skeniraj za duplirana dokumenta?" msgid "Duplicated document scan queued successfully." msgstr "Duplirano skeniranje dokumenata je u redu." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Prazno smeće?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Smeće ispraznjen uspješno" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po index b679315157..c89f046557 100644 --- a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -1337,17 +1337,17 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1355,25 +1355,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1381,28 +1381,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po index 7b1ac88da9..c0e5ed98c1 100644 --- a/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "Total documents" msgstr "Antal dokumenter" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumenter i skraldespand" @@ -1328,68 +1328,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Tøm skraldespand?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Skraldespand tømt." -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po index 2cfbb74095..fbb9d645ff 100644 --- a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -80,7 +80,7 @@ msgstr "Seiten gesamt" msgid "Total documents" msgstr "Alle Dokumente" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumente im Papierkorb" @@ -1334,68 +1334,68 @@ msgstr "Nach Duplikaten suchen?" msgid "Duplicated document scan queued successfully." msgstr "Duplikatsuche erfolgreich in die Warteschlange eingestellt." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "%(count)d Dokument in den Papierkorb verschoben." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d Dokumente in den Papierkorb verschoben." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "Ausgewähltes Dokument in den Papierkorb verschieben?" msgstr[1] "Ausgewählte Dokumente in den Papierkorb verschieben?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Papierkorb leeren" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Papierkorb erfolgreich gelöscht" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d Dokument aus dem Papierkorb gelöscht." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d Dokumente aus dem Papierkorb gelöscht." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "Ausgewähltes Dokument aus dem Papierkorb löschen?" msgstr[1] "Ausgewählte Dokumente aus dem Papierkorb löschen?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "Um Datenverlust zu verhindern werden Dokumente nicht sofort gelöscht, sondern in den Papierkorb verschoben. Von hier aus können sie dann endgültig gelöscht oder wiederhergestellt werden." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "Es sind keine Dokumente im Papierkorb" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d Dokument aus dem Papierkorb wiederhergestellt." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "%(count)d Dokumente aus dem Papierkorb wiederhergestellt." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "Ausgewähltes Dokument aus dem Papierkorb wiederherstellen?" diff --git a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po index d183f4bd2c..580c43abea 100644 --- a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "Total documents" msgstr "Σύνολο εγγράφων" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Έγγραφα στα απορρίμματα" @@ -1328,68 +1328,68 @@ msgstr "Αναζήτηση για διπλότυπα έγγραφα;" msgid "Duplicated document scan queued successfully." msgstr "Αίτημα αναζήτησης για διπλότυπα έγγραφα καταχωρήθηκε στην λίστα με επιτυχία." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Άδειασμα απορρημάτων;" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Ο κάδος απορριμάτων άδειασε με επιτυχία." -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po index 34539fce27..37b252ff0c 100644 --- a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2017-08-15 01:59-0400\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -1326,68 +1326,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index ddba911627..00b2f38f7b 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:55+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -74,7 +74,7 @@ msgstr "Paginas totales" msgid "Total documents" msgstr "Total de documentos" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documentos en la papelera" @@ -1328,68 +1328,68 @@ msgstr "¿Buscar documentos duplicados?" msgid "Duplicated document scan queued successfully." msgstr "La exploración de documentos duplicados sometido con éxito." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "Documento %(count)d movido a la papelera." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d documentos movidos a la papelera." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "¿Mover el documento seleccionado a la papelera?" msgstr[1] "¿Mover los documentos seleccionados a la papelera?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "¿Vaciar papelera?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Papelera vaciada con éxito" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d documento eliminado del trash." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d documentos eliminados." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "¿Borrar el documento seleccionado?" msgstr[1] "¿Eliminar los documentos desechados seleccionados?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "Para evitar la pérdida de datos, los documentos no se eliminan al instante. Primero, se colocan en el bote de basura. Desde aquí, pueden ser finalmente eliminados o restaurados." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "No hay documentos en la papelera" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d documento restaurado." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "%(count)d documentos restaurados." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "¿Restaurar el documento desechado seleccionado?" diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index 2ccdf3d114..3b7f845b03 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "Total documents" msgstr "کل اسناد" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "اسناد در سطل زباله" @@ -1328,68 +1328,68 @@ msgstr "برای اسناد تکراری اسکن کنید؟" msgid "Duplicated document scan queued successfully." msgstr "اسکن کپی اسکن شده با موفقیت انجام شد." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "سطل زباله خالی" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "سطل زباله با موفقیت حذف شد" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo index 50372a32b9..5a35b5db47 100644 Binary files a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po index 18f2f21713..39ea25a16b 100644 --- a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-17 20:38+0000\n" +"Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -78,7 +78,7 @@ msgstr "Nombre de pages" msgid "Total documents" msgstr "Nombre total de documents" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documents dans la corbeille" @@ -392,7 +392,7 @@ msgstr "Créer un type de document" #: links.py:371 msgid "Deletion policies" -msgstr "" +msgstr "Règle de suppression" #: links.py:375 links.py:396 msgid "Edit" @@ -960,7 +960,7 @@ msgstr "" #: views/document_page_views.py:59 msgid "No document pages available" -msgstr "" +msgstr "Aucune page de document disponible" #: views/document_page_views.py:61 #, python-format @@ -1009,7 +1009,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer le type de document : %s ?" #: views/document_type_views.py:125 #, python-format msgid "Deletion policies for document type: %s" -msgstr "" +msgstr "Règles de suppression pour le type de document: %s" #: views/document_type_views.py:144 #, python-format @@ -1332,68 +1332,68 @@ msgstr "Recherche de documents dupliqués ?" msgid "Duplicated document scan queued successfully." msgstr "Recherche de documents dupliqués effectuée avec succès." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "%(count)d document déplacé dans la corbeille." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d documents déplacés dans la corbeille." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "Déplacez le document sélectionné dans la corbeille?" msgstr[1] "Déplacez les documents sélectionnés vers la corbeille?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Vider la corbeille ?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Corbeille vidée avec succès" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d document supprimé de la corbeille." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d documents supprimés de la corbeille." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "Supprimer le document sélectionné dans la corbeille?" msgstr[1] "Supprimer les documents de la corbeille sélectionnés?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "Pour éviter toute perte de données, les documents ne sont pas supprimés instantanément. Tout d'abord, ils sont placés à la corbeille. De là, ils peuvent être supprimés ou restaurés." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "Il n'y a pas de documents dans la corbeille" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d document restauré de la corbeille." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "%(count)d documents restaurés de la corbeille." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "Restaurer le document sélectionné dans la corbeille?" diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index c9c0ff976e..cc91228661 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "Total documents" msgstr "Dokumentumok száma" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumentumok a kukában" @@ -1328,68 +1328,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po index b8e20bf54a..8cffbf5960 100644 --- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -74,7 +74,7 @@ msgstr "Total halaman" msgid "Total documents" msgstr "Total dokumen" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumen dalam tong sampah" @@ -1323,66 +1323,66 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po index 05c638e20f..a25539ede2 100644 --- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Total documents" msgstr "Totale documenti" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documenti nel cestino" @@ -1329,68 +1329,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Cancellare il cestino?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Svuotamento cestino completato" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.mo index 84e107609c..8c7711330d 100644 Binary files a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po index a013fcef7d..0cf2466f07 100644 --- a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-28 06:41+0000\n" +"Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,7 +74,7 @@ msgstr "Kopā lapas" msgid "Total documents" msgstr "Kopā dokumenti" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumenti miskastē" @@ -211,7 +211,7 @@ msgstr "Lapu diapazons" msgid "" "Page number from which all the transformations will be cloned. Existing " "transformations will be lost." -msgstr "" +msgstr "Lapas numurs, no kura tiks klonēti visi pārveidojumi. Esošās transformācijas tiks zaudētas." #: forms/document_type_forms.py:42 models/document_models.py:45 #: models/document_type_models.py:60 models/document_type_models.py:146 @@ -423,7 +423,7 @@ msgstr "Visas lapas" msgid "" "UUID of a document, universally Unique ID. An unique identifier generated " "for each document." -msgstr "" +msgstr "Dokumenta UUID, universāli unikāls ID. Katram dokumentam izveidots unikāls identifikators." #: models/document_models.py:49 msgid "The name of the document." @@ -597,7 +597,7 @@ msgid "" "The document version's file mimetype. MIME types are a standard way to " "describe the format of a file, in this case the file format of the document." " Some examples: \"text/plain\" or \"image/jpeg\". " -msgstr "Dokumenta versijas fails ir mimetype. MIME veidi ir standarta veids, kā aprakstīt faila formātu, šajā gadījumā dokumenta faila formātu. Daži piemēri: "text / plain" vai "image / jpeg"." +msgstr "Dokumenta versijas fails ir mimetype. MIME veidi ir standarta veids, kā aprakstīt faila formātu, šajā gadījumā dokumenta faila formātu. Daži piemēri: \"text/plain\" vai \"image/jpeg\"." #: models/document_version_models.py:98 search.py:38 search.py:63 msgid "MIME type" @@ -935,7 +935,7 @@ msgid "" "\n" " Page %(page_number)s of %(total_pages)s\n" " " -msgstr "" +msgstr "\nLapa %(page_number)s no %(total_pages)s" #: templates/documents/forms/widgets/document_page_carousel.html:22 msgid "No pages to display" @@ -944,7 +944,7 @@ msgstr "Parādāmās lapas nav" #: utils.py:18 #, python-format msgid "Unknown language \"%s\"" -msgstr "Nezināma valoda "%s"" +msgstr "Nezināma valoda \"%s\"" #: views/document_page_views.py:54 msgid "" @@ -1021,12 +1021,12 @@ msgstr "Izveidojiet ātru uzlīmi dokumenta tipam: %s" #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "Izdzēsiet ātrās iezīmes: %(label)s, no dokumenta tipa "%(document_type)s"?" +msgstr "Izdzēsiet ātrās iezīmes: %(label)s, no dokumenta tipa \"%(document_type)s\"?" #: views/document_type_views.py:215 #, python-format msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "Ātra uzlīmes "%(filename)s" rediģēšana no dokumenta tipa "%(document_type)s"" +msgstr "Ātra uzlīmes \"%(filename)s\" rediģēšana no dokumenta tipa \"%(document_type)s\"" #: views/document_type_views.py:253 msgid "" @@ -1120,7 +1120,7 @@ msgstr "Mainiet dokumenta veidu: %s" #: views/document_views.py:151 #, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "Dokumenta tips "%s" veiksmīgi mainīts." +msgstr "Dokumenta tips \"%s\" veiksmīgi mainīts." #: views/document_views.py:220 msgid "Download" @@ -1181,7 +1181,7 @@ msgstr "Pārrēķināt dokumenta lapu skaitu: %s?" msgid "" "Document \"%(document)s\" is empty. Upload at least one document version " "before attempting to detect the page count." -msgstr "Dokuments "%(document)s" ir tukšs. Pirms mēģināt atklāt lapas skaitu, augšupielādējiet vismaz vienu dokumentu versiju." +msgstr "Dokuments \"%(document)s\" ir tukšs. Pirms mēģināt atklāt lapas skaitu, augšupielādējiet vismaz vienu dokumentu versiju." #: views/document_views.py:492 #, python-format @@ -1294,7 +1294,7 @@ msgstr[2] "Pievienojiet atlasītos dokumentus favorītiem" #: views/favorite_document_views.py:73 #, python-format msgid "Document \"%(instance)s\" is not in favorites." -msgstr "Dokuments "%(instance)s" nav izlasē." +msgstr "Dokuments \"%(instance)s\" nav izlasē." #: views/favorite_document_views.py:77 #, python-format @@ -1333,70 +1333,70 @@ msgstr "Meklējiet dublētus dokumentus?" msgid "Duplicated document scan queued successfully." msgstr "Dublētais dokumenta skenēšana veiksmīgi tika rindā." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "%(count)d dokuments pārvietots uz miskasti." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d dokumenti pārvietoti uz miskasti." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "Pārvietojiet atlasītos dokumentus uz miskasti?" msgstr[1] "Vai pārvietot atlasīto dokumentu uz miskasti?" msgstr[2] "Pārvietojiet atlasītos dokumentus uz miskasti?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Vai iztukšot miskasti?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Miskaste iztukšota veiksmīgi" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d izdzēsts dokuments." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d izdzēstie dokumenti izdzēsti." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "Vai izdzēst atlasītos atkritumus?" msgstr[1] "Vai izdzēst izvēlēto izgāztos dokumentus?" msgstr[2] "Vai izdzēst atlasītos atkritumus?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "Lai izvairītos no datu zuduma, dokumenti netiek nekavējoties dzēsti. Pirmkārt, tie tiek ievietoti miskastē. No šejienes tos pēc tam var beidzot dzēst vai atjaunot." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "Atkritumu kastē nav dokumentu" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d atjaunotais atkritnes dokuments." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "atjaunoti %(count)d izgāztie dokumenti." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "Vai atjaunot atlasītos atkritumus?" diff --git a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po index 07ef126149..fa6703aced 100644 --- a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -1329,68 +1329,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Prullenbak legen?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Prullenbak succesvol geleegd" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index f3a0bdb979..179c302fcc 100644 --- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Total documents" msgstr "Razem dokumenty" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Dokumenty w koszu" @@ -1339,17 +1339,17 @@ msgstr "Wyszukać zdublowane dokumenty?" msgid "Duplicated document scan queued successfully." msgstr "Skanowanie zduplikowanych dokumentów dodano pomyślnie do kolejki wykonania." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1357,25 +1357,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Pusty kosz?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Opróżnienie kosza wykonano pomyślnie" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1383,28 +1383,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po index c45c6b854d..8195f7a11e 100644 --- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -1327,68 +1327,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po index 3242391bb7..6313fe9ea2 100644 --- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -76,7 +76,7 @@ msgstr "Total de páginas" msgid "Total documents" msgstr "Total de documentos" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documentos na lixeira" @@ -1330,68 +1330,68 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Esvaziar a lixeira?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Lixeira esvaziada com sucesso" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo index fa3bc2f89b..0f3f22f4a3 100644 Binary files a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po index 6526fb0d25..fc05a3d176 100644 --- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-18 15:40+0000\n" +"Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -75,7 +75,7 @@ msgstr "Total pagini" msgid "Total documents" msgstr "Total documente" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Documentele din coșul de gunoi" @@ -424,7 +424,7 @@ msgstr "Toate paginile" msgid "" "UUID of a document, universally Unique ID. An unique identifier generated " "for each document." -msgstr "" +msgstr "UUID al unui document, identificator unic universal. Un identificator unic generat pentru fiecare document." #: models/document_models.py:49 msgid "The name of the document." @@ -1334,70 +1334,70 @@ msgstr "Căutați documente duplicate?" msgid "Duplicated document scan queued successfully." msgstr "Căutarea documentelor duplicat a fost trimisă în coada de așteptare." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "%(count)d document transferat în coșul de gunoi." -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "%(count)d documente transferate în coșul de gunoi." -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "Mutați documentul selectat în coșul de gunoi?" msgstr[1] "Mutați documentele selectate în coșul de gunoi?" msgstr[2] "Mutați documentele selectate în coșul de gunoi?" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Goliți Coșul de gunoi?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Coșul de gunoi a fost golit cu succes" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "%(count)d document din coșul de gunoi șters." -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "%(count)d documentele din coșul de gunoi au fost șterse." -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "Ștergeți documentul de traseu selectat?" msgstr[1] "Ștergeți documentele trasate selectate?" msgstr[2] "Ștergeți documentele din gunoi selectate?" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "Pentru a evita pierderea datelor, documentele nu sunt șterse instantaneu. Mai întâi, ele sunt plasate în coșul de gunoi. De aici, ele pot fi ulterior șterse sau restaurate." -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "Nu există documente în coșul de gunoi" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "%(count)d document din coșul de gunoi restabilit." -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "%(count)d documente din coșul de gunoi restaurate." -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "Restaurați documentul trashed selectat?" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po index fafd4e2e94..02fe14e4ee 100644 --- a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Документы в корзине" @@ -1338,17 +1338,17 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1356,25 +1356,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Очистить корзину?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Корзина успешно очищена" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1382,28 +1382,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po index 22fbbc5eae..01129e3bd4 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -1337,17 +1337,17 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" @@ -1355,25 +1355,25 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" @@ -1381,28 +1381,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po index cd916d6e4c..9e51641e71 100644 --- a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -75,7 +75,7 @@ msgstr "" msgid "Total documents" msgstr "Toplam belge" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "Çöp kutusu içindeki belgeler" @@ -1329,68 +1329,68 @@ msgstr "Yinelenen belgeleri tara?" msgid "Duplicated document scan queued successfully." msgstr "Çoğaltılan doküman taraması başarıyla sıraya girdi." -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "Çöp kutusunu boşalt?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "Çöp kutusu başarıyla boşaldı" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" msgstr[1] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po index 2f4af6a0c9..3128db68f7 100644 --- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "Total documents" msgstr "" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "" @@ -1322,66 +1322,66 @@ msgstr "" msgid "Duplicated document scan queued successfully." msgstr "" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po index 70932099c0..690d7400b9 100644 --- a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -74,7 +74,7 @@ msgstr "总页数" msgid "Total documents" msgstr "文档总数" -#: dashboard_widgets.py:66 views/trashed_document_views.py:134 +#: dashboard_widgets.py:66 views/trashed_document_views.py:136 msgid "Documents in trash" msgstr "垃圾箱中的文档" @@ -1323,66 +1323,66 @@ msgstr "扫描重复的文件?" msgid "Duplicated document scan queued successfully." msgstr "重复文档扫描成功排队。" -#: views/trashed_document_views.py:37 +#: views/trashed_document_views.py:39 #, python-format msgid "%(count)d document moved to the trash." msgstr "" -#: views/trashed_document_views.py:40 +#: views/trashed_document_views.py:42 #, python-format msgid "%(count)d documents moved to the trash." msgstr "" -#: views/trashed_document_views.py:48 +#: views/trashed_document_views.py:50 msgid "Move the selected document to the trash?" msgid_plural "Move the selected documents to the trash?" msgstr[0] "" -#: views/trashed_document_views.py:62 +#: views/trashed_document_views.py:64 msgid "Empty trash?" msgstr "清空垃圾箱?" -#: views/trashed_document_views.py:76 +#: views/trashed_document_views.py:78 msgid "Trash emptied successfully" msgstr "垃圾箱成功清空" -#: views/trashed_document_views.py:85 +#: views/trashed_document_views.py:87 #, python-format msgid "%(count)d trashed document deleted." msgstr "" -#: views/trashed_document_views.py:88 +#: views/trashed_document_views.py:90 #, python-format msgid "%(count)d trashed documents deleted." msgstr "" -#: views/trashed_document_views.py:96 +#: views/trashed_document_views.py:98 msgid "Delete the selected trashed document?" msgid_plural "Delete the selected trashed documents?" msgstr[0] "" -#: views/trashed_document_views.py:127 +#: views/trashed_document_views.py:129 msgid "" "To avoid loss of data, documents are not deleted instantly. First, they are " "placed in the trash can. From here they can be then finally deleted or " "restored." msgstr "为避免数据丢失,不会立即删除文档。首先,它们放在垃圾桶里。从这里可以最终删除或恢复它们。" -#: views/trashed_document_views.py:132 +#: views/trashed_document_views.py:134 msgid "There are no documents in the trash can" msgstr "垃圾桶里没有文件" -#: views/trashed_document_views.py:145 +#: views/trashed_document_views.py:147 #, python-format msgid "%(count)d trashed document restored." msgstr "" -#: views/trashed_document_views.py:148 +#: views/trashed_document_views.py:150 #, python-format msgid "%(count)d trashed documents restored." msgstr "" -#: views/trashed_document_views.py:156 +#: views/trashed_document_views.py:158 msgid "Restore the selected trashed document?" msgid_plural "Restore the selected trashed documents?" msgstr[0] "" diff --git a/mayan/apps/documents/views/trashed_document_views.py b/mayan/apps/documents/views/trashed_document_views.py index c12783b014..bf783303ed 100644 --- a/mayan/apps/documents/views/trashed_document_views.py +++ b/mayan/apps/documents/views/trashed_document_views.py @@ -10,6 +10,7 @@ from mayan.apps.acls.models import AccessControlList from mayan.apps.common.generics import ( ConfirmView, MultipleObjectConfirmActionView ) +from mayan.apps.common.settings import setting_home_view from ..icons import icon_document_list_deleted from ..models import DeletedDocument, Document @@ -33,6 +34,7 @@ class DocumentTrashView(MultipleObjectConfirmActionView): model = Document object_permission = permission_document_trash pk_url_kwarg = 'pk' + post_action_redirect = reverse_lazy(viewname=setting_home_view.value) success_message_singular = _( '%(count)d document moved to the trash.' ) diff --git a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po index be22d13551..779ed4d1c5 100644 --- a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po index e5cded9a3e..50020addf9 100644 --- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po index e8fcc4a504..53dd2e0f17 100644 --- a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po index ab8d820230..fe7d766399 100644 --- a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po index 1ebb078481..6be65a7b3e 100644 --- a/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po index def88f8cf6..7aca2efd6e 100644 --- a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Berny \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po index 3993b0908d..3629c8e405 100644 --- a/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po index 12f282140a..2fea2d1d6b 100644 --- a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po index 1045f3e90d..9dd31f9340 100644 --- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po index 3213f2a616..78bd2232fe 100644 --- a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Mehdi Amani \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po index 990d955794..c02ae8f8b6 100644 --- a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Thierry Schott \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po index 02a83bec3f..5f604e9524 100644 --- a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po index f5b4a90ba0..3b61e8a7a0 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po index 18efe4ade2..3d65847c80 100644 --- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Marco Camplese \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po index a7a9e9811e..cae8227af1 100644 --- a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po index 0d493819ac..a156d1216d 100644 --- a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Justin Albstbstmeijer \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po index 7fe37396d2..cca3d38c0d 100644 --- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Wojciech Warczakowski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po index 51d2eaa6c1..2420812c00 100644 --- a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po index 4557613319..98b15dfe36 100644 --- a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po index f8e77f3cac..44685d559e 100644 --- a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po index e96730799d..099e5dc374 100644 --- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: lilo.panic\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po index 85e52f3ad8..10a5072907 100644 --- a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po index 5ac18a86e9..6403903284 100644 --- a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po index 0296c7c01d..b97a511bb0 100644 --- a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po index 69db078a96..6dc56d9aaa 100644 --- a/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index 2c4eba53c9..d9b17a5d0a 100644 --- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index 40ce186931..bdf8655c69 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po index 48dc8027e7..5f559531a2 100644 --- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po b/mayan/apps/events/locale/cs/LC_MESSAGES/django.po index 1d87dee805..fae2d9f8cc 100644 --- a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po index edea865611..1dc335ae13 100644 --- a/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po index 7f8098da82..7a114d37ac 100644 --- a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-28 21:18+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/events/locale/el/LC_MESSAGES/django.po b/mayan/apps/events/locale/el/LC_MESSAGES/django.po index a0cd3c8c18..2486e75905 100644 --- a/mayan/apps/events/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.po b/mayan/apps/events/locale/en/LC_MESSAGES/django.po index 5b1e815afe..baa3176469 100644 --- a/mayan/apps/events/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po index 3b92d4e050..24c36ebc7e 100644 --- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/es/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-30 16:39+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po index 75b0fa9665..3822460e29 100644 --- a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po index 8bd61af183..5260060032 100644 --- a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-17 13:22+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po index c918ff0f40..62a70fc6b6 100644 --- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: molnars \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po index 9423613d1b..eaabfc7e46 100644 --- a/mayan/apps/events/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-14 11:12+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po index 29c61608c7..8982243378 100644 --- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-06-13 17:25+0000\n" "Last-Translator: Daniele Bortoluzzi \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/events/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/events/locale/lv/LC_MESSAGES/django.mo index c75c039b91..75fcfce25f 100644 Binary files a/mayan/apps/events/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/events/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po index 77dae44aae..cec70652bb 100644 --- a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" -"PO-Revision-Date: 2019-05-31 12:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" +"PO-Revision-Date: 2019-06-28 12:35+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -85,11 +85,11 @@ msgstr "Notikumu abonēšana" #: links.py:67 msgid "Mark as seen" -msgstr "Atzīmējiet kā redzams" +msgstr "Atzīmējiet kā redzēts" #: links.py:71 msgid "Mark all as seen" -msgstr "Atzīmējiet visu, kā redzams" +msgstr "Atzīmējiet visu, kā redzēts" #: links.py:76 msgid "Subscriptions" diff --git a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po index 5880951a68..ec974b1498 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Evelijn Saaltink \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po index bf0825dc98..f46ab76167 100644 --- a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index d129c00af4..31789a8410 100644 --- a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po index fd52e3c4c2..6da808a559 100644 --- a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po index e46fa37673..3a59ead06c 100644 --- a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-05-02 05:19+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index 8de6be7efb..49d58f1012 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: lilo.panic\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po index f5c2b52228..188c458fad 100644 --- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po index 4f7d93fd1b..f5ffffcd67 100644 --- a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po index ddf262c12d..9db1d6ff53 100644 --- a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh/LC_MESSAGES/django.po index 23095f7353..59c314ce3d 100644 --- a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po index 63474ee062..db0b6a158d 100644 --- a/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" diff --git a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po index 46581fcfe2..31cb3367af 100644 --- a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Iliya Georgiev , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po index 8bbc3c5e44..853d050cce 100644 --- a/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Ilvana Dollaroviq , 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po index c3e1e2dba4..fb0dfbde9e 100644 --- a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Jiri Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" diff --git a/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po index 6264f1c080..004a196c70 100644 --- a/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" diff --git a/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po index 54cfc6e08a..240a3aedfa 100644 --- a/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po index 39e60d9d7a..981bfbb747 100644 --- a/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" diff --git a/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po index 97e417916a..b49fb54e5d 100644 --- a/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po index 36895c17e4..4eef409729 100644 --- a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po index fde35f13d1..0fd2c94361 100644 --- a/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Nima Towhidi , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po index deab652820..db2645c736 100644 --- a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po index 499664f47d..e4978cc72f 100644 --- a/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: molnars , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" diff --git a/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po index 7ec7901624..3d1363e89a 100644 --- a/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" diff --git a/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po index 4330276fd0..e36a8aa66f 100644 --- a/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Giovanni Tricarico , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po index 34b3adb4fe..da5e572394 100644 --- a/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" diff --git a/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po index 1b1ccbffbd..5d9758b8d7 100644 --- a/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Evelijn Saaltink , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po index e062e5c3a6..b23049c014 100644 --- a/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po index 869a8d7091..008a1e04c1 100644 --- a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Manuela Silva , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" diff --git a/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po index 5743636105..fcceaa3238 100644 --- a/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: José Samuel Facundo da Silva , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po index 0ba1c1934a..62716f1ce2 100644 --- a/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" diff --git a/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po index 38dbe65196..22608ad045 100644 --- a/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: D Muzzle , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po index ef605e1b40..0cfd4df8fa 100644 --- a/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: kontrabant , 2019\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" diff --git a/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po index 263fe86fea..19841b0c9c 100644 --- a/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: serhatcan77 , 2019\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" diff --git a/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po index 35013d44ee..b0ef6a6dbc 100644 --- a/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Trung Phan Minh , 2019\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" diff --git a/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po index 927989e0d9..2b45d320c3 100644 --- a/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:17-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po index 84b0e19f84..62ff6abc67 100644 --- a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po index 007a7419f5..570a8e9fc0 100644 --- a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po index 4409bc78f1..f03fedea19 100644 --- a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po b/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po index 0d460b57b8..2191d51ab4 100644 --- a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po index 52cd2f9b13..e166fa63de 100644 --- a/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po index 3f0fcee373..d0ba23a0e0 100644 --- a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 22:31+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po b/mayan/apps/linking/locale/el/LC_MESSAGES/django.po index 9c8abb0e00..2a71f44544 100644 --- a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po index ff28e7d0fe..94ceb043a3 100644 --- a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index bdd43e94a7..f5bbc73fe5 100644 --- a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index 2c2eb20ab2..6377d50224 100644 --- a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo index 1eef525f3d..2c8bcb876e 100644 Binary files a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po index 67ed657049..e0033858a2 100644 --- a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" -"PO-Revision-Date: 2019-05-09 17:25+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-17 20:40+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" @@ -148,7 +148,7 @@ msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " "document }} context variable is available." -msgstr "" +msgstr "Entrez un modèle à rendre. Utilisez le langage par défaut de Django pour les modèles (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). La variable de contexte {{document}} est disponible." #: models.py:35 msgid "Dynamic label" @@ -249,7 +249,7 @@ msgstr "Liens intelligents activés" #: views.py:79 #, python-format msgid "Smart links to enable for document type: %s" -msgstr "" +msgstr "Liens intelligents à activer pour le type de document: %s" #: views.py:123 #, python-format @@ -284,7 +284,7 @@ msgid "" "Indexes group documents into units, usually with similar properties and of " "equal or similar types. Smart links allow defining relationships between " "documents even if they are in different indexes and are of different types." -msgstr "" +msgstr "Les index regroupent les documents en unités, généralement avec des propriétés similaires et de types identiques ou similaires. Les liens intelligents permettent de définir des relations entre des documents même s'ils se trouvent dans différents index et sont de types différents." #: views.py:195 msgid "There are no smart links" @@ -294,7 +294,7 @@ msgstr "Il n'y a pas de liens intelligents" msgid "" "Smart links allow defining relationships between documents even if they are " "in different indexes and are of different types." -msgstr "" +msgstr "Les liens intelligents permettent de définir des relations entre des documents même s'ils se trouvent dans différents index et sont de types différents." #: views.py:232 msgid "There are no smart links for this document" @@ -319,7 +319,7 @@ msgstr "Modifier le lien intelligent :%s" msgid "" "Conditions are small logic units that when combined define how the smart " "link will behave." -msgstr "" +msgstr "Les conditions sont de petites unités logiques qui, lorsqu'elles sont combinées, définissent le comportement du lien intelligent." #: views.py:306 msgid "There are no conditions for this smart link" diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po index 50dfa96c77..534079db22 100644 --- a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po index 7609a68871..69bf7e1711 100644 --- a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-14 11:30+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po index 7a59456966..f9a9cfe5bc 100644 --- a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.mo index 67e61e2e81..ea01cf1364 100644 Binary files a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po index ad2816c67d..13262c1f78 100644 --- a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" -"PO-Revision-Date: 2019-05-31 12:28+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-28 11:18+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -144,7 +144,7 @@ msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). The {{ " "document }} context variable is available." -msgstr "Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). Ir pieejams {{document}} konteksta mainīgais." +msgstr "Ievadiet veidni, kas jāpiešķir. Izmantojiet Django noklusējuma veidnes valodu (https://docs.djangoproject.com/en/1.11/ref/templates/builtins/). Ir pieejams {{ document }} konteksta mainīgais." #: models.py:35 msgid "Dynamic label" @@ -260,7 +260,7 @@ msgstr "Dokumenti viedā saitē: %s" #: views.py:135 #, python-format msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "Dokumenti viedā saite "%(smart_link)s", kas saistīti ar "%(document)s"" +msgstr "Dokumenti viedā saite \"%(smart_link)s\", kas saistīti ar \"%(document)s\"" #: views.py:160 msgid "Available document types" @@ -329,7 +329,7 @@ msgstr "Nosacījumi viedai saitei: %s" #: views.py:338 #, python-format msgid "Add new conditions to smart link: \"%s\"" -msgstr "Pievienot jaunus nosacījumus viedajai saitei: "%s"" +msgstr "Pievienot jaunus nosacījumus viedajai saitei: \"%s\"" #: views.py:379 msgid "Edit smart link condition" @@ -338,4 +338,4 @@ msgstr "Rediģējiet viedās saites stāvokli" #: views.py:409 #, python-format msgid "Delete smart link condition: \"%s\"?" -msgstr "Dzēst smart saite nosacījums: "%s"?" +msgstr "Dzēst smart saite nosacījums: \"%s\"?" diff --git a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po index 87c081b891..49ed2c403c 100644 --- a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po index 03b6af9068..eb61b65cd5 100644 --- a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po index 27dc791416..fdbb3587b2 100644 --- a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po index 37c5eef61d..bb986fb26f 100644 --- a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po index 4f899578ef..0478e190d6 100644 --- a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-08 07:58+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po index d022e87e86..a8c3772ba4 100644 --- a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po index 4908959b79..8e77e167a6 100644 --- a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po index 6c7b1b9c38..49af46703f 100644 --- a/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po index 270bfb00ff..ca01083299 100644 --- a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po b/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po index 0cb089796c..1a6e8021ea 100644 --- a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po index ca66e9e760..6ceb074935 100644 --- a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po index c27ff4d654..801d6b558c 100644 --- a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po index 53df0dc1f0..866e7ee90c 100644 --- a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po index 8849bc10c1..49cb29b9a3 100644 --- a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po index a213129fb4..de7801913a 100644 --- a/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po index 5b56ef08ee..938e074dbf 100644 --- a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-11-23 10:12+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po index 5efd079800..c78d0763a5 100644 --- a/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po index 36d9e1a220..93b351678f 100644 --- a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po index 63063b58c0..274ae2914e 100644 --- a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-28 20:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po index 45391ff6a1..f28410d0e6 100644 --- a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po index 3699d8a7c1..dc329067c2 100644 --- a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-05 03:51+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po index 091d58a92a..e7bd77c924 100644 --- a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po index 22dc7f3a03..f00378ca7a 100644 --- a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po index c776a1b307..5ae64d8c81 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po index b84800c90b..a5d789435e 100644 --- a/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:36+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po index 85ef17e40e..23c2ccc4f6 100644 --- a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po index 547edebb6c..4a77171b08 100644 --- a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po index ee3e333b26..4edc7769b9 100644 --- a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po index 8636858791..88cdf89f9c 100644 --- a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po index 1bc720c2bd..765be73add 100644 --- a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-03-15 11:16+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po index c4a40ebee0..7984c6ddb5 100644 --- a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po index 1cf2d8bc0b..605f6357db 100644 --- a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po index ee6486829a..468bef64b2 100644 --- a/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po index 451fbc65a6..8992ef1f06 100644 --- a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po index 6e691691b5..cfc5fac688 100644 --- a/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-01-24 02:59+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo index 2b43bf386f..ff88d7fcab 100644 Binary files a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po index 48204d9ec6..eae1156293 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo index 80e06a6c27..2f251f771e 100644 Binary files a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po index 03de43a847..3750c58924 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -393,7 +393,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo index 5862b5b750..0907857462 100644 Binary files a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po index 32edd83d28..0d964cabd8 100644 --- a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "Mailer" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Datum i vreme" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Poruke" @@ -393,8 +393,8 @@ msgstr "Uredi mailing adresu: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s error tragovi" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" diff --git a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.mo index 49e3069306..9196cdec33 100644 Binary files a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po index 1ba47fd5d1..6bb927eb2a 100644 --- a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.mo index b4172c9495..4cd8dce5dd 100644 Binary files a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po index 0839a266fa..d4c87ea2f8 100644 --- a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Besked" @@ -392,7 +392,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo index fb76eb03dc..e9cfef454d 100644 Binary files a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po index 973d436495..c18290801b 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-27 21:31+0000\n" -"Last-Translator: Mathias Behrle \n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,11 +23,11 @@ msgstr "" msgid "Mailer" msgstr "Mailer" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Zeit" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Nachricht" @@ -394,8 +394,8 @@ msgstr "Mailprofil %s bearbeiten" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s Fehlerprotokoll" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" diff --git a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.mo index a8483cc3a6..819781918a 100644 Binary files a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po index ffdaa09c29..8cdcaf8be7 100644 --- a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "Ηλεκτρονική ταχυδρόμηση" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Ημερομηνία και ώρα" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Μήνυμα" @@ -392,8 +392,8 @@ msgstr "Τροποποίηση προφίλ ηλεκτρονικού ταχυδ #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s ημερολόγιο καταγραφής" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po index 210f753a7b..fb2ffa3136 100644 --- a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo index e77d23f504..2d329abec2 100644 Binary files a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po index 396fd11f40..c42f1c632c 100644 --- a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-28 20:24+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -24,11 +24,11 @@ msgstr "" msgid "Mailer" msgstr "Sistema de correo" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Mensaje" @@ -395,8 +395,8 @@ msgstr "Editar perfil de publicación: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "Registro de errores para %s" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo index 32b275d7a1..161d434d90 100644 Binary files a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po index 31a83c1646..0f6a37ca16 100644 --- a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "پیام" @@ -393,7 +393,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo index e75e3cd1f2..14c60e2e68 100644 Binary files a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po index 1a0ece5d26..860d55693b 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" @@ -25,11 +25,11 @@ msgstr "" msgid "Mailer" msgstr "Gestionnaire d'envoi" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Date et heure" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Message" @@ -396,8 +396,8 @@ msgstr "Modifier un profile de liste de diffusion %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s journal d'erreur" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo index 71e7946e0a..3b8effdf1f 100644 Binary files a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po index 88212aaf65..8b69ce8ad8 100644 --- a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "Levelező" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Dátum és idő" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Üzenet" @@ -393,7 +393,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo index a3797ed680..22c60f2d6b 100644 Binary files a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po index a8ff72d519..e0e053f077 100644 --- a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Tanggal dan waktu" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.mo index c056d66225..6618779b7f 100644 Binary files a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po index c65b7216f7..d33aee9bec 100644 --- a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "Posta" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Data e ora" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Messaggio" @@ -393,7 +393,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.mo index f2f042ceda..868ce75e73 100644 Binary files a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po index 2215b18fd4..af36585bbe 100644 --- a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-31 12:38+0000\n" -"Last-Translator: Māris Teivāns \n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "Mailer" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Datums un laiks" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Ziņojums" @@ -178,7 +178,7 @@ msgid "" "problems, see the explicit TLS setting \"Use TLS\". Note that \"Use TLS\" " "and \"Use SSL\" are mutually exclusive, so only set one of those settings to" " True." -msgstr "Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS iestatījumu "Lietot TLS". Ņemiet vērā, ka "Lietot TLS" un "Lietot SSL" ir savstarpēji izslēdzoši, tāpēc tikai vienu no šiem iestatījumiem iestatiet uz True." +msgstr "Vai, runājot ar SMTP serveri, izmantojiet netiešu TLS (drošu) savienojumu. Vairumā e-pasta dokumentāciju šāda veida TLS savienojums tiek saukts par SSL. To parasti izmanto 465. portā. Ja rodas problēmas, skatiet skaidru TLS iestatījumu \"Lietot TLS\". Ņemiet vērā, ka \"Lietot TLS\" un \"Lietot SSL\" ir savstarpēji izslēdzoši, tāpēc tikai vienu no šiem iestatījumiem iestatiet uz True." #: mailers.py:64 msgid "Username" @@ -379,7 +379,7 @@ msgstr "Jauna pasta profila backend izvēle" #: views.py:151 #, python-format msgid "Create a \"%s\" mailing profile" -msgstr "Izveidojiet adreses profilu "%s"" +msgstr "Izveidojiet adreses profilu \"%s\"" #: views.py:177 #, python-format @@ -393,8 +393,8 @@ msgstr "Rediģēt pasta profilu: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s kļūdu žurnāls" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" diff --git a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo index 260abb2e29..4b22e89124 100644 Binary files a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po index f9dc859f91..7eb6e8f472 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "Mailer" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Datum en tijd" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Bericht" @@ -393,7 +393,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo index 00897fab02..998213c903 100644 Binary files a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po index fe57c3b332..e8b6319157 100644 --- a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" @@ -24,11 +24,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Data i godzina" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Wiadomość" @@ -395,7 +395,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo index 166d988f3c..b25870d8aa 100644 Binary files a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index 51b3f99e2f..8951966828 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo index 891659526f..bd7f784c7d 100644 Binary files a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po index 31db39a1a9..78176f246e 100644 --- a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -24,11 +24,11 @@ msgstr "" msgid "Mailer" msgstr "Envio de emails" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Data e hora" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Mensagem" @@ -395,7 +395,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo index 525f8008d4..3056d39822 100644 Binary files a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po index 47aaefa70c..c0afdbdda6 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-29 11:26+0000\n" -"Last-Translator: Harald Ersch\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "Poștă electronică" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Data și ora" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Mesaj" @@ -393,8 +393,8 @@ msgstr "Editați profilul de poștă electronică: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s jurnal de erori" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo index 7eaa465dbb..6ceb1a3587 100644 Binary files a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po index 5b349ee498..6070cfe868 100644 --- a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "Электронный почтальон" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Дата и время" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Сообщение" @@ -393,7 +393,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo index 72106f6bc6..85cf352a2d 100644 Binary files a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po index 23e5aa0e45..1e47cb8623 100644 --- a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.mo index 8ac6378daa..8eaa82f035 100644 Binary files a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po index 27a8ea85b3..fc6300d141 100644 --- a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -23,11 +23,11 @@ msgstr "" msgid "Mailer" msgstr "Posta gönderici" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "Tarih ve saat" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "Mesaj" @@ -394,8 +394,8 @@ msgstr "Posta profilini düzenleme: %s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s hata günlüğü" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" diff --git a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo index 638c114666..dcba06a8c2 100644 Binary files a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po index 184e8ed07e..3426a0ea6c 100644 --- a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -21,11 +21,11 @@ msgstr "" msgid "Mailer" msgstr "" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: views.py:211 #, python-format -msgid "%s error log" +msgid "Error log for: %s" msgstr "" #: views.py:233 diff --git a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.mo index f0566358f2..1070dbaa9d 100644 Binary files a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.mo and b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po index 5809e8515f..cc0ba96db4 100644 --- a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-21 05:03+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-29 06:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -22,11 +22,11 @@ msgstr "" msgid "Mailer" msgstr "邮件程序" -#: apps.py:62 +#: apps.py:63 apps.py:84 msgid "Date and time" msgstr "日期和时间" -#: apps.py:65 models.py:30 models.py:228 +#: apps.py:66 apps.py:88 models.py:30 models.py:228 msgid "Message" msgstr "信息" @@ -393,8 +393,8 @@ msgstr "编辑邮件配置文件:%s" #: views.py:211 #, python-format -msgid "%s error log" -msgstr "%s错误日志" +msgid "Error log for: %s" +msgstr "" #: views.py:233 msgid "" diff --git a/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po index db6d59269f..04766b97d4 100644 --- a/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po index 73e6d31500..3b14f7e24e 100644 --- a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po index 02637f2761..30a2d9e096 100644 --- a/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po index 81aab45722..a68f3357f3 100644 --- a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po index dbe07ff0c5..aeac579d49 100644 --- a/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po index 43b2fa0c69..1d8ce2bef5 100644 --- a/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po index f63bee5ee7..fa7e9ff066 100644 --- a/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po index 28ede3127f..701df887e3 100644 --- a/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po index 81a4ec3b70..c6eb964520 100644 --- a/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 06:32+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po index 340237a22e..a2b262cce9 100644 --- a/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po index b9a37d7a8a..2bbcef2af3 100644 --- a/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 13:30+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po index 0d55b7bdec..e41a334756 100644 --- a/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po index 56c23e7d17..56f187e460 100644 --- a/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po index 6927855fb8..e2b1c49726 100644 --- a/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po index bba21660f2..0ac60b840d 100644 --- a/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:50+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po index 9def4adefa..cd69e4e40f 100644 --- a/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po index 1f9b5ef5a8..800a3e2339 100644 --- a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po index ea7190f938..8bc3d5cfcd 100644 --- a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po index 72700547aa..a683eb26d0 100644 --- a/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po index 5f2b413b40..2b54cefe47 100644 --- a/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po index 70de1aef73..362d66ff26 100644 --- a/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po index 2a33ec8f09..517624aa87 100644 --- a/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po index f2ac13527b..e8b01130b3 100644 --- a/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po index ce9ecb3004..b448772642 100644 --- a/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po index 4f10965544..900fa87220 100644 --- a/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:38-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/metadata/api.py b/mayan/apps/metadata/api.py index 9becfc1913..c70c6acad8 100644 --- a/mayan/apps/metadata/api.py +++ b/mayan/apps/metadata/api.py @@ -105,15 +105,14 @@ def metadata_repr_as_list(metadata_list): def set_bulk_metadata(document, metadata_dictionary): - document_type = document.document_type - document_type_metadata_types = [ - document_type_metadata_type.metadata_type for document_type_metadata_type in document_type.metadata.all() - ] + document_type_metadata_types = document.document_type.metadata.values_list( + 'metadata_type', flat=True + ) for metadata_type_name, value in metadata_dictionary.items(): metadata_type = MetadataType.objects.get(name=metadata_type_name) - if metadata_type in document_type_metadata_types: + if document_type_metadata_types.filter(metadata_type=metadata_type).exists(): DocumentMetadata.objects.get_or_create( document=document, metadata_type=metadata_type, value=value ) diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po index 594fa688d4..7346f5b667 100644 --- a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index 5d43bb7eaf..ae214302d8 100644 --- a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po index f53dca99ac..e31cfa8d4b 100644 --- a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po index d7770ab843..1f6611af80 100644 --- a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po index 0884fde29d..1151484aca 100644 --- a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po index 46332ad7b6..6ad0af9ac2 100644 --- a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po index da895fbb06..bce91f11ef 100644 --- a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po index 3759b4bba8..e7ccec1d95 100644 --- a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index 94a71fb1de..dbeff68294 100644 --- a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-28 20:27+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po index 786a170479..88bee600dd 100644 --- a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po index da12be471a..560a06208d 100644 --- a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-17 13:19+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po index 00a62d3e40..44ad09d6ad 100644 --- a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po index 40ef7bfed0..cd36918184 100644 --- a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-14 11:19+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po index 64e1101cc9..4f5283e42e 100644 --- a/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.mo index b8e56ccf24..29c724c8c9 100644 Binary files a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po index ab0c7a53f3..ce243217d9 100644 --- a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-31 12:40+0000\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" +"PO-Revision-Date: 2019-06-28 07:05+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -100,7 +100,7 @@ msgstr "Noklusējuma vērtības kļūda: %s" #: forms.py:104 models.py:172 #, python-format msgid "\"%s\" is required for this document type." -msgstr ""%s" ir nepieciešams šim dokumenta tipam." +msgstr "\"%s\" ir nepieciešams šim dokumenta tipam." #: forms.py:122 msgid "Metadata types to be added to the selected documents." @@ -336,7 +336,7 @@ msgstr "Pievienot metadatu veidus dokumentam: %s" msgid "" "Error adding metadata type \"%(metadata_type)s\" to document: %(document)s; " "%(exception)s" -msgstr "Kļūda, pievienojot dokumentam "%(metadata_type)s" metadatu tipu: %(document)s; %(exception)s" +msgstr "Kļūda, pievienojot dokumentam \"%(metadata_type)s\" metadatu tipu: %(document)s; %(exception)s" #: views.py:194 #, python-format @@ -436,14 +436,14 @@ msgstr "Noņemt metadatu veidus no dokumenta: %s" msgid "" "Successfully remove metadata type \"%(metadata_type)s\" from document: " "%(document)s." -msgstr "Veiksmīgi noņemt metadatu tipu "%(metadata_type)s" no dokumenta: %(document)s." +msgstr "Veiksmīgi noņemt metadatu tipu \"%(metadata_type)s\" no dokumenta: %(document)s." #: views.py:576 #, python-format msgid "" "Error removing metadata type \"%(metadata_type)s\" from document: " "%(document)s; %(exception)s" -msgstr "Atceļot metadatu tipu "%(metadata_type)s" no dokumenta, radās kļūda: %(document)s; %(exception)s" +msgstr "Atceļot metadatu tipu \"%(metadata_type)s\" no dokumenta, radās kļūda: %(document)s; %(exception)s" #: views.py:587 msgid "Create metadata type" diff --git a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po index 85a000d040..a4d8284da0 100644 --- a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index 615cb0eea8..cf5f80868b 100644 --- a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index b8980954cd..86f606ab29 100644 --- a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po index 957be8c5fa..e927b6de57 100644 --- a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po index 61a957332f..793ee075ff 100644 --- a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po index 76083890d4..f00e41bb3c 100644 --- a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po index ad3fa1dade..638e7949f5 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po index ca75f24a78..66aafacb51 100644 --- a/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po index 7e17d27686..452eb13fb1 100644 --- a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po index 2d9983c019..8fefe97a49 100644 --- a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po index 1cc60cf140..c46672ba0b 100644 --- a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po index f8b5269097..01e053cdae 100644 --- a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po index 6381002d6d..752e3a6169 100644 --- a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-08-09 10:54+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po index e6d2d03d26..adac8bd3e7 100644 --- a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po index b7415446e4..cad610128a 100644 --- a/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po index 3b5852665c..d6399bf45b 100644 --- a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-23 21:41+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po index 2c0acf59fd..ae2b896014 100644 --- a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-01-07 14:00+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po index a43cdf3ef6..63682ac0a6 100644 --- a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po index 197926a7b6..b1f6e9a84f 100644 --- a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-04-30 16:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po index e32e5bcd4c..dd8dcc9cc2 100644 --- a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-03-12 14:24+0000\n" "Last-Translator: Mehdi Amani \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po index 68afc9d49d..325cbebf07 100644 --- a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2018-04-11 12:04+0000\n" "Last-Translator: Yves Dubois \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po index 9ff3b97f17..01ef4af066 100644 --- a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: molnars \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po index 7dab037b68..d6fde6e3bf 100644 --- a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po index 8c70dce5e2..bd3348bf89 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-23 21:41+0000\n" "Last-Translator: Marco Camplese \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po index d9508e997f..82d96cf800 100644 --- a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-05-31 12:41+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po index 3678df243b..05499296f0 100644 --- a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: Evelijn Saaltink \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po index 17b5888702..3a7d58ad54 100644 --- a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po index 068f6cd501..387ec5b6c8 100644 --- a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po index ec63839d08..a3a2315280 100644 --- a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po index dc54d9b76e..cfe0b5ad12 100644 --- a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-03-15 11:18+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po index cdb9e40631..e16eb2a376 100644 --- a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: lilo.panic\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po index 7f2478674d..622d073131 100644 --- a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po index ffa4c36371..e0e6b533a3 100644 --- a/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2017-09-22 21:28+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po index a4a9de9731..14270e36c8 100644 --- a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po index 0617ff0ab9..2aa319ebc5 100644 --- a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:18-0400\n" "PO-Revision-Date: 2019-01-24 02:58+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po index 1fccd09019..e70f1aa017 100644 --- a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-03-16 22:54+0000\n" "Last-Translator: Yaman Sanobar \n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po index 5c14d6afbf..d77e20dbdd 100644 --- a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po index 17c30a1955..b223eeda37 100644 --- a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po b/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po index ab855e3a26..ab46b4737f 100644 --- a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-01-17 19:32+0000\n" "Last-Translator: Jiri Fait \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po index 24601ebee0..f81127bceb 100644 --- a/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-12 14:13+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po index 3b23fe7752..ae8af90d17 100644 --- a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-16 15:26+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po b/mayan/apps/motd/locale/el/LC_MESSAGES/django.po index cd4603f0cd..8a5d6a28d2 100644 --- a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po index 95b77a1b75..0e7ff0fe7a 100644 --- a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po index 3ea998136d..0425d9510c 100644 --- a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-14 03:39+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po index 56eae551ca..74486cd1dd 100644 --- a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po index 1a0fa326c1..aa483437ac 100644 --- a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-05 03:48+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po index 11635956e8..3ee2e3c582 100644 --- a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po index ce8f4a09c4..82cbf56157 100644 --- a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-12 17:43+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po index d574bd00f6..4c6566d0b7 100644 --- a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po b/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po index 7dd1f8b246..8fb35e6868 100644 --- a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:38+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po index 543e56db52..11f0d9a82e 100644 --- a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po index 79d2da9793..292ffcb3bc 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po index 1aa2842070..836103b7df 100644 --- a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po index 154fb0d1f0..63b5ff0575 100644 --- a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-12-28 00:06+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po index d83e618eb7..1b87e7885d 100644 --- a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-03-15 11:59+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po index 63df4ef9fe..11dc850503 100644 --- a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po index 67172490e4..dfed5002c3 100644 --- a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po index 63d44755a6..f78211a96d 100644 --- a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po index dac31bd1fd..87d13968ec 100644 --- a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po b/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po index 5a9db91316..449ff48072 100644 --- a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-01-24 07:16+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po index 8c2cfee3ce..d550ad6407 100644 --- a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po index ae3657a356..7dceb04f1b 100644 --- a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po index d0dc91d018..dd5c624d3d 100644 --- a/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" diff --git a/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po index a72d669ddc..f7c3dc9397 100644 --- a/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po index ef80e011fe..326be135cb 100644 --- a/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po index 9319529ccc..535c35975d 100644 --- a/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po index e48cccb060..4031ac15a9 100644 --- a/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po index ef80e011fe..326be135cb 100644 --- a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po index 5f1ddb617e..d217de3036 100644 --- a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po index ebc3e390e6..7e2e68ea52 100644 --- a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po index eb9012ddee..b493ba88cb 100644 --- a/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po index e4ce732f17..d1af351cc5 100644 --- a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po index d784d41393..52d2db130c 100644 --- a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po index 80a4e710cc..809033b21d 100644 --- a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po index 65e64bf82d..5e7de03668 100644 --- a/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po index 5123bed375..788aaf72a6 100644 --- a/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po index 3b1156ea0c..c50f228931 100644 --- a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po index 8697e10ac7..437fd6365c 100644 --- a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po index 364650b177..88fdb3df0f 100644 --- a/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po index 148996d788..337a9dc00f 100644 --- a/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po index e8433f0581..5d39ded804 100644 --- a/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po index 9360c63370..ba5e5e6ac0 100644 --- a/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po index ef80e011fe..326be135cb 100644 --- a/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po index 542b58974e..d7a56dd5e1 100644 --- a/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" diff --git a/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po index ef80e011fe..326be135cb 100644 --- a/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po index 528f0e89fc..f262555d6f 100644 --- a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po index d934c8f8e1..96ba7c0af1 100644 --- a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po index 41a885477f..e1bc945b17 100644 --- a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po index 2cfb91b53b..45eae0c2f6 100644 --- a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po index 77511bf634..ca2876af50 100644 --- a/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po index bbda6ec5c9..84dd31ec6b 100644 --- a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po index b2670a80c9..06972b6777 100644 --- a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po index 5d3d8901f2..510e989624 100644 --- a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po index efe1322bb5..34c92e2f19 100644 --- a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 06:35+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po index 82dfbe0725..6b745d8f5c 100644 --- a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po index 74ea44e2cd..541719ec87 100644 --- a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 13:20+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po index 29d3e0f586..f6946578cc 100644 --- a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po index 24e1b3fe61..f0a0f38911 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index 8e35038644..258262fd85 100644 --- a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po index b787cd6f52..261b87cb0e 100644 --- a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:42+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po index 20759d9909..bf91a3fb11 100644 --- a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po index bf03922eaf..fe34e9e896 100644 --- a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po index ce6e1b1dbe..a62e7a708b 100644 --- a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po index eb20cdae17..42fc7c7ea9 100644 --- a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po index 661f57765a..a6cb46734d 100644 --- a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po index ebeae4afcd..1bbc8597f2 100644 --- a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po index 812b916650..5304df831e 100644 --- a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po index 5bcab96fc5..4e565e02ff 100644 --- a/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po index 64dbc69ea8..ae13cb7b31 100644 --- a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po index 9f0c7b8691..c0d735de42 100644 --- a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo index 96c0ae3008..7366258788 100644 Binary files a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index 035ba77575..b4c4083869 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "الصلاحيات" @@ -26,6 +26,10 @@ msgstr "الصلاحيات" msgid "Insufficient permissions." msgstr "صلاحيات غير كافية." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo index 53b7fdb716..65487be5e0 100644 Binary files a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po index 89b3eb5322..c88a67e90b 100644 --- a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Разрешения" @@ -26,6 +26,10 @@ msgstr "Разрешения" msgid "Insufficient permissions." msgstr "Недостатъчни разрешения." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo index c7ee9d5207..ef511038ae 100644 Binary files a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po index 27207ea7bd..0b1220b65d 100644 --- a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Dozvole" @@ -27,6 +27,10 @@ msgstr "Dozvole" msgid "Insufficient permissions." msgstr "Nedovoljne dozvole." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.mo index 9070e76cd3..3ffb66c43f 100644 Binary files a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po index 1ad02dc05c..400cfc00bb 100644 --- a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-17 14:41+0000\n" -"Last-Translator: Jiri Fait \n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +17,7 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Práva" @@ -25,6 +25,10 @@ msgstr "Práva" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.mo index ef3e855ee4..aa4ff56117 100644 Binary files a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po index 6722cb35cb..77a73fc1f6 100644 --- a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Tilladelser" @@ -25,6 +25,10 @@ msgstr "Tilladelser" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo index c0d97c639f..7d758c02db 100644 Binary files a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po index 1761665606..a2daf567fe 100644 --- a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-17 22:32+0000\n" -"Last-Translator: Mathias Behrle \n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Berechtigungen" @@ -30,6 +30,10 @@ msgstr "Berechtigungen" msgid "Insufficient permissions." msgstr "Unzureichende Berechtigungen." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "Rolle erstellt" diff --git a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.mo index 86598f71d5..e62b3d3e1e 100644 Binary files a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po index a76057d4a5..aacdeddb42 100644 --- a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Δικαιώματα χρήσης" @@ -25,6 +25,10 @@ msgstr "Δικαιώματα χρήσης" msgid "Insufficient permissions." msgstr "Ανεπαρκή δικαιώματα." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po index 129abdf141..8f55697785 100644 --- a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "" @@ -25,6 +25,10 @@ msgstr "" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo index 05107ecb2b..b285bb7f80 100644 Binary files a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index 0386080568..07be462d37 100644 --- a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-30 16:39+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permisos" @@ -28,6 +28,10 @@ msgstr "Permisos" msgid "Insufficient permissions." msgstr "Permisos insuficientes." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "Rol creado" diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo index 88dca91937..d5fb6d6a81 100644 Binary files a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po index ebbc044e60..33ec468602 100644 --- a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "مجوزها" @@ -27,6 +27,10 @@ msgstr "مجوزها" msgid "Insufficient permissions." msgstr "اجازه ناکافی" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo index e6de6d9cca..c586cb54d1 100644 Binary files a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index e5a7112860..f0f80f6503 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-09 13:40+0000\n" -"Last-Translator: Frédéric Sheedy \n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +23,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Droits" @@ -31,6 +31,10 @@ msgstr "Droits" msgid "Insufficient permissions." msgstr "Droits insuffisants" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "Rôle créé" diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo index 51bef5e13d..dbb71e20c2 100644 Binary files a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po index 9c5257f17e..c7298bea6c 100644 --- a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Engedélyek" @@ -26,6 +26,10 @@ msgstr "Engedélyek" msgid "Insufficient permissions." msgstr "Elégtelen jogosúltság" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo index 77fcf1b732..1d735b0178 100644 Binary files a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po index 655d6e292a..b6af723aa2 100644 --- a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-12 17:43+0000\n" -"Last-Translator: Adek Lanin\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,7 +17,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "" @@ -25,6 +25,10 @@ msgstr "" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo index ccded5b65c..f4629435b8 100644 Binary files a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index 3d78224981..b5e07fc097 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permessi" @@ -28,6 +28,10 @@ msgstr "Permessi" msgid "Insufficient permissions." msgstr "Permessi insufficienti" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.mo index f297a6a3df..df51ca8a79 100644 Binary files a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po index 0b6fe4313a..d3b7a6a66f 100644 --- a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-31 12:44+0000\n" -"Last-Translator: Māris Teivāns \n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,7 +18,7 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Atļaujas" @@ -26,6 +26,10 @@ msgstr "Atļaujas" msgid "Insufficient permissions." msgstr "Nepietiekamas atļaujas." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "Izveidota loma" diff --git a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo index 361b1208e5..56d4af8fbb 100644 Binary files a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po index 0aa23e659f..d6f7bc5c11 100644 --- a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permissies" @@ -27,6 +27,10 @@ msgstr "Permissies" msgid "Insufficient permissions." msgstr "Permissies zijn ontoereikend" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo index 071c83d0fd..05ff5cc623 100644 Binary files a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index d8f7acb803..137764f7a0 100644 --- a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Uprawnienia" @@ -27,6 +27,10 @@ msgstr "Uprawnienia" msgid "Insufficient permissions." msgstr "Niewystarczające uprawnienia." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo index d193117e00..3d03a32073 100644 Binary files a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po index 7e4c6e0074..ddddb35b74 100644 --- a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permissões" @@ -28,6 +28,10 @@ msgstr "Permissões" msgid "Insufficient permissions." msgstr "Permissões insuficientes." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo index 682de790a8..ac8de142a3 100644 Binary files a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po index 6af37132ca..53e5abaaa8 100644 --- a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permissões" @@ -30,6 +30,10 @@ msgstr "Permissões" msgid "Insufficient permissions." msgstr "Permissões insuficientes." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo index 335a51b4a3..6812afaadf 100644 Binary files a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po index 11af099dd0..3a1b59a096 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-05-02 05:58+0000\n" -"Last-Translator: Harald Ersch\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Permisiuni" @@ -27,6 +27,10 @@ msgstr "Permisiuni" msgid "Insufficient permissions." msgstr "Permisiuni insuficiente." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "Rolul a fost creat" diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo index 8e31800ec3..8b5089833c 100644 Binary files a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po index 2744c7854e..b3628dfea6 100644 --- a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Разрешения" @@ -26,6 +26,10 @@ msgstr "Разрешения" msgid "Insufficient permissions." msgstr "Недостаточно разрешений." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo index ae59d3b481..0719c0fb9f 100644 Binary files a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po index 668b9a3554..dd282d5727 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "Pravice" @@ -25,6 +25,10 @@ msgstr "Pravice" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.mo index 424126a350..060c68f195 100644 Binary files a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po index 790f3acecb..d3082ddb80 100644 --- a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "İzinler" @@ -26,6 +26,10 @@ msgstr "İzinler" msgid "Insufficient permissions." msgstr "Yetersiz yetkiler." +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo index 392fffc7e2..c6f4a51d38 100644 Binary files a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po index 419a0b1426..7e674c30aa 100644 --- a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "" @@ -26,6 +26,10 @@ msgstr "" msgid "Insufficient permissions." msgstr "" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.mo index 5d45eed9d6..6f08023b0f 100644 Binary files a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.mo and b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po index c48c6dc128..c0021b8190 100644 --- a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:41 events.py:8 models.py:36 models.py:102 permissions.py:7 +#: apps.py:43 events.py:8 models.py:36 models.py:102 permissions.py:7 msgid "Permissions" msgstr "权限" @@ -26,6 +26,10 @@ msgstr "权限" msgid "Insufficient permissions." msgstr "权限不足。" +#: dashboard_widgets.py:15 +msgid "Total roles" +msgstr "" + #: events.py:12 msgid "Role created" msgstr "" diff --git a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po index df4000b735..c2363d9b2c 100644 --- a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mohammed ALDOUB , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" @@ -29,6 +29,6 @@ msgstr "Platform" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po index ab31f35277..54c1d9eb63 100644 --- a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Iliya Georgiev , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" @@ -29,6 +29,6 @@ msgstr "Платформа" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po index 37e10efd05..247764892f 100644 --- a/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: www.ping.ba , 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" @@ -29,6 +29,6 @@ msgstr "Platforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po index 0f94625de0..8b04538de8 100644 --- a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po index 4301a5da2a..7da981e3e0 100644 --- a/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po index 0176a53525..77b0374fcc 100644 --- a/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" @@ -30,6 +30,6 @@ msgstr "Plattform" msgid "Template for Supervisord." msgstr "Konfigurationsvorlage für Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Konfigurationsvorlage innerhalb des Dockerimages für Supervisord." diff --git a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po index 966f80b88c..656d3e096e 100644 --- a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/en/LC_MESSAGES/django.po b/mayan/apps/platform/locale/en/LC_MESSAGES/django.po index d0d20dd844..0f377c7699 100644 --- a/mayan/apps/platform/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/es/LC_MESSAGES/django.po b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po index 51c97bc277..30b2184c52 100644 --- a/mayan/apps/platform/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" @@ -29,6 +29,6 @@ msgstr "Plataforma" msgid "Template for Supervisord." msgstr "Plantilla para Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Plantilla para Supervisord dentro de una imagen Docker." diff --git a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po index 4496909fdb..06538db685 100644 --- a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" @@ -29,6 +29,6 @@ msgstr "ایستگاه" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po index 36e94d422d..b05d65fc28 100644 --- a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" @@ -30,6 +30,6 @@ msgstr "Plateforme" msgid "Template for Supervisord." msgstr "Modèle pour Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Modèle pour Supervisord dans une image Docker." diff --git a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po index 31453fdd07..a92418b67e 100644 --- a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po index 9ee3a126c8..9731dd8a9f 100644 --- a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po index eeef809443..626a308067 100644 --- a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Marco Camplese , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" @@ -29,6 +29,6 @@ msgstr "Piattaforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po index fcd90f9c6a..3921e2b4af 100644 --- a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" @@ -29,6 +29,6 @@ msgstr "Platforma" msgid "Template for Supervisord." msgstr "Veidne priekš Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Supervisord veidne Docker attēla iekšpusē." diff --git a/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po index 6992693116..5a356068c7 100644 --- a/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Evelijn Saaltink , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" @@ -29,6 +29,6 @@ msgstr "Platform" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po index 4c73c79724..7417fb53ba 100644 --- a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: mic , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" @@ -29,6 +29,6 @@ msgstr "Platforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po index 63d86f2306..1fa4213b22 100644 --- a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Manuela Silva , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" @@ -29,6 +29,6 @@ msgstr "Platforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po index b3ef74ab2e..88bc9419ba 100644 --- a/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Rogerio Falcone , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" @@ -29,6 +29,6 @@ msgstr "Plataforma" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po index e6b3435a24..5bf757ad42 100644 --- a/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" @@ -30,6 +30,6 @@ msgstr "Platformă" msgid "Template for Supervisord." msgstr "Șablon pentru Supervisord." -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "Șablon pentru Supervisord în interiorul unei imagini Docker." diff --git a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po index b07a3f70e5..71db2d813f 100644 --- a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Sergey Glita , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" @@ -29,6 +29,6 @@ msgstr "Platform" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po index cc8a640cf1..3e6c8c614c 100644 --- a/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po index 640e6849d8..2c771404d4 100644 --- a/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po index 26c14c7651..61eb3bc160 100644 --- a/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po index 512b5ded37..6bd26d827e 100644 --- a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:39-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,6 @@ msgstr "" msgid "Template for Supervisord." msgstr "" -#: classes.py:164 +#: classes.py:168 msgid "Template for Supervisord inside a Docker image." msgstr "" diff --git a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po index 7e4cfcd38e..d149578c09 100644 --- a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po index 6d9aec7017..3b53a30189 100644 --- a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po index 3dca901133..b2a104d84b 100644 --- a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-08-09 10:42+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po index 5f3f379ea3..714724350a 100644 --- a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po index 1bcbe70d87..2af23b8212 100644 --- a/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-05 13:49+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po index 2722dd6e94..522434d502 100644 --- a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-11-16 18:16+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po index 2de9489cb0..12bcc231a0 100644 --- a/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po index 0e294246e5..8786892566 100644 --- a/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po index 81d2bbb8cf..207dd700f0 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-04-14 03:29+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po index 71fa8b450c..c2797887ff 100644 --- a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po index cdfb9c17e1..062a953ec1 100644 --- a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-11 11:52+0000\n" "Last-Translator: Yves Dubois \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po index 4929f62eb1..3e56b7ce66 100644 --- a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po index 6003783de4..34f6faadc7 100644 --- a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po index 60823c50f5..30a99c7dd9 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po index 83eb709648..5cb2dbbddd 100644 --- a/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-05-31 12:45+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po index 1e9fbbd0e2..19ebf00839 100644 --- a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po index 7d730b5a0e..3c2575eaeb 100644 --- a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po index dc28a424d0..a91324d8da 100644 --- a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po index 99f317111d..f5c59e8361 100644 --- a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po index b7ceae7d68..fa9d49561e 100644 --- a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-03-15 11:57+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po index 1a50f312f7..5737e72f55 100644 --- a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po index e1894fabf0..2a89913aef 100644 --- a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po index fca8713651..8d1d30d22d 100644 --- a/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po index 2fcccf2981..b7e9707d9a 100644 --- a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po index 3c1e2e0871..255581b37e 100644 --- a/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:19-0400\n" "PO-Revision-Date: 2019-01-24 03:04+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po index dd05fba1d6..2e09f74be9 100644 --- a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Mohammed ALDOUB \n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po index 5ed4bbc32c..0f4b3d61f0 100644 --- a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Pavlin Koldamov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po index ed7b232505..d46b8c0ee8 100644 --- a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: www.ping.ba \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po index 14141bd23c..8ae782695c 100644 --- a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-01-17 19:28+0000\n" "Last-Translator: Jiri Fait \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po index 7474a01391..4c4efa2eea 100644 --- a/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po index bc96628b27..e8353ae310 100644 --- a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-09 09:39+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po index e504bc731d..a94bb3f5b4 100644 --- a/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po index 025eded96e..9ad7b1d3c2 100644 --- a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po index ed9c773fb5..648089bd83 100644 --- a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-14 03:38+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po index 60fd3a3e02..e242853d19 100644 --- a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Mehdi Amani \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po index 50f3f8a5fc..a20fd3b50c 100644 --- a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-09 13:46+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po index 25bb8585f5..3e7ae8d829 100644 --- a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: molnars \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po index c38ae38dac..5e81d50bef 100644 --- a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-14 11:12+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po index 5a45d63771..59a56f9d81 100644 --- a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Pierpaolo Baldan \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.mo index ed1cb22d24..d83df7258b 100644 Binary files a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po index 65af61b532..19b839356e 100644 --- a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-31 12:46+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-28 10:47+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -57,7 +57,7 @@ msgstr "Vērtībai jābūt pareizi citētai." #: forms.py:45 #, python-format msgid "\"%s\" not a valid entry." -msgstr ""%s" nav derīgs ieraksts." +msgstr "\"%s\" nav derīgs ieraksts." #: links.py:12 links.py:16 msgid "Settings" diff --git a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po index b76a59360c..0522f0c027 100644 --- a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Justin Albstbstmeijer \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po index 9e186cee49..f3fb70608c 100644 --- a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Wojciech Warczakowski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po index 4ffe011d78..4b6e23186f 100644 --- a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Manuela Silva \n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po index c5b5341587..bd5b0cebe1 100644 --- a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-12-22 01:04+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po index 8fa43faf52..8fb2633302 100644 --- a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-03-15 12:00+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po index dbc427ce45..9cf0f3057e 100644 --- a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Sergey Glita \n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po index 6160ca41c1..23c603c57a 100644 --- a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: kontrabant \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po index 6ab6ec687f..ec32da20ef 100644 --- a/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Caner Başaran \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po index 1ba47c690f..bac90613b6 100644 --- a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po index 318775c110..b1fb26053c 100644 --- a/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-01-24 04:41+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo index 5c19446bd8..f50dbd07f2 100644 Binary files a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index 74d897615e..7cf4a2789b 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" @@ -196,7 +196,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -265,37 +265,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +337,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo index 71df270f9f..801ff3ee9f 100644 Binary files a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index 165084d57c..14265f14b8 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" @@ -196,7 +196,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -265,37 +265,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +337,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo index a6728f6dec..946b2860bf 100644 Binary files a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po index bcaa46dd42..5bb446b7f7 100644 --- a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" @@ -197,7 +197,7 @@ msgstr "Gledajte folder" msgid "POP3 email" msgstr "POP3 e-pošta" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP e-pošta" @@ -266,38 +266,37 @@ msgstr "Ulazni tragovi" msgid "Log entries" msgstr "Stavke tragova" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Domaćin" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Tipični izbori su 110 za POP3, 995 za POP3 preko SSL-a, 143 za IMAP, 993 za IMAP preko SSL-a." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Korisničko ime" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Lozinka" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Ime priloga koji će sadržavati imena metapodataka i par vrijednosti koje će biti dodijeljene ostalim preuzjenim prilozima. Napomena: Ovaj prilog mora biti prvi prilog." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -339,33 +338,33 @@ msgstr "E-mail izvor" msgid "Email sources" msgstr "E-mail izvori" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tip metapodataka predmeta \"%(metadata_type)s\" ne važi za tip dokumenta: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "\"Od\" metapodataka tipa \"%(metadata_type)s\" ne važi za tip dokumenta: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP poštansko sanduče sa kojeg možete proveravati poruke." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Poštansko sanduče" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP e-pošta" diff --git a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.mo index 1931668c58..7fe65bab46 100644 Binary files a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po index 6f895c580e..236e8057dc 100644 --- a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" @@ -195,7 +195,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -264,37 +264,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -337,33 +336,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.mo index f1d31d5bf2..4e0e1c23b4 100644 Binary files a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po index 8af8907c01..c2a6fafbb8 100644 --- a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -196,7 +196,7 @@ msgstr "" msgid "POP3 email" msgstr "POP3 email" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP email" @@ -265,37 +265,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Typiske muligheder er 110 for POP3, 995 for POP3 via SSL, 143 for IMAP, 993 for IMAP via SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Brugernavn" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Password" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +337,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Indbakke" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo index 932fd94e08..6692a69f2a 100644 Binary files a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po index c64a2e5acc..ca9677e7b7 100644 --- a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-26 21:45+0000\n" -"Last-Translator: Mathias Behrle \n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -204,7 +204,7 @@ msgstr "Beobachtungs-Ordner" msgid "POP3 email" msgstr "POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP" @@ -273,38 +273,37 @@ msgstr "Protokolleintrag" msgid "Log entries" msgstr "Logeinträge" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 für IMAP über SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Benutzer" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Passwort" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste Anhang sein)." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -346,33 +345,33 @@ msgstr "E-Mail Quelle" msgid "Email sources" msgstr "E-Mail Quellen" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Metadatentyp \"%(metadata_type)s\" des Betreffs ist für den Dokumententyp \"%(document_type)s\" nicht zulässig" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Metadatentyp \"%(metadata_type)s\" des Absenders ist für den Dokumententyp \"%(document_type)s\" nicht zulässig" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP-Mailbox, die auf Nachrichten überprüft werden soll." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Mailbox" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP email" diff --git a/mayan/apps/sources/locale/el/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/el/LC_MESSAGES/django.mo index b5f1851896..a364218a8a 100644 Binary files a/mayan/apps/sources/locale/el/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/el/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po index f66ca2e715..36791375df 100644 --- a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: Hmayag Antonian \n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -195,7 +195,7 @@ msgstr "Φάκελος παρακολούθησης" msgid "POP3 email" msgstr "Λογαριασμός POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "Λογαριασμός IMAP" @@ -264,37 +264,36 @@ msgstr "Εγγραφή ημερολογίου" msgid "Log entries" msgstr "Εγγραφές ημερολογίου" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Διεύθυνση διακομιστή" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Τυπικές τιμές είναι 110 για POP3, 995 για POP3 με χρήση SSL, 143 για IMAP, 993 για IMAP με χρήση SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Θύρα" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Όνομα χρήστη" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Κωδικός πρόσβασης" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -337,33 +336,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Θυρίδα IMAP που θα ελέγχεται για μηνύματα." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Θυρίδα" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Λήξη χρόνου" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po index d72ed3e216..4b70ed955e 100644 --- a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -195,7 +195,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -264,37 +264,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -337,33 +336,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo index 3279d63f7b..65cf165f6c 100644 Binary files a/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po index 68870d9030..52a286ae8a 100644 --- a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-28 20:24+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -199,7 +199,7 @@ msgstr "Carpeta observada" msgid "POP3 email" msgstr "Correo electrónico POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "Correo electrónico IMAP" @@ -268,38 +268,37 @@ msgstr "Entrada de bitácora" msgid "Log entries" msgstr "Entradas de bitácora" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Puerto" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Usuario" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Contraseña" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Nombre del archivo adjunto que contiene los nombres de los tipos de metadatos y los pares de valores que se asignará al resto de los archivos adjuntos descargados. Nota: Este anejo tiene que ser el primer archivo adjunto." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -341,33 +340,33 @@ msgstr "Fuente de correo electrónico" msgid "Email sources" msgstr "Fuentes de correo electrónico" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "El tipo de metadatos de tema \"%(metadata_type)s\" no es válido para el tipo de documento: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "\"De\" tipo de metadatos \"%(metadata_type)s\" no es válido para el tipo de documento: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Buzón IMAP en el cual revisar mensajes." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Buzón" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Tiempo de espera" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "Correo electrónico POP" diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo index a9fff613e6..4a94996a29 100644 Binary files a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po index a69a89527b..60052859f8 100644 --- a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: Mehdi Amani \n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -197,7 +197,7 @@ msgstr "پوشه تماشا کنید" msgid "POP3 email" msgstr "ایمیل POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "ایمیل IMAP" @@ -266,38 +266,37 @@ msgstr "ورودی لاگ" msgid "Log entries" msgstr "ورودیهای لاگ" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "هاست" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 for IMAP over SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "نام کاربری" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "کلمه عبور" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "نام پیوست که شامل نام های نوع فراداده و جفت های ارزش است که باید به سایر فایل های دانلود شده اختصاص داده شود. توجه: این پیوست باید اولین ضمیمه باشد." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -339,33 +338,33 @@ msgstr "ایمیل کردن سورس" msgid "Email sources" msgstr "ایمیل کردن سورسها" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "نوع Metadata موضوع \"%(metadata_type)s\" برای نوع سند معتبر نیست: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "\"از\" نوع ابرداده \"%(metadata_type)s\" برای نوع سند معتبر نیست: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "صندوق پستی IMAP که از آن برای بررسی پیام ها است." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "صندوق پستی" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "اتمام وقت" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP ایمیل" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo index 56a041cbed..6b029d868d 100644 Binary files a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index 1f07bc71ab..87c3683f79 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-09 15:18+0000\n" -"Last-Translator: Frédéric Sheedy \n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -201,7 +201,7 @@ msgstr "Surveiller le répertoire" msgid "POP3 email" msgstr "email POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "email IMAP" @@ -270,38 +270,37 @@ msgstr "Entrée du journal" msgid "Log entries" msgstr "Entrées du journal" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Hote" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 pour l'IMAP, 993 pour l'IMAP over SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Identifiant" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Mot de passe" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Le nom de la pièce jointe qui contiendra les couples nom/valeur des types de métadonnées qui seront assignés au reste des documents importés. Note : cette pièce jointe devra obligatoirement être la première." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -343,33 +342,33 @@ msgstr "Source de courriel" msgid "Email sources" msgstr "Sources de courriel" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Le type de métadonnée du sujet \"%(metadata_type)s\" n'est pas valide pour le document de type : %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Le type de métadonnée de l'expéditeur \"%(metadata_type)s\" n'est pas valide pour le document de type : %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Boîte IMAP où chercher les messages." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Boîte de courriel" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Délai d'attente dépassé" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "Compte POP" diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo index 0eba7026ee..558a54ea94 100644 Binary files a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po index a026e506a7..2297a98609 100644 --- a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" @@ -197,7 +197,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -266,37 +266,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Kiszolgáló" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Jelszó" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -339,33 +338,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "időtúllépés" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo index 5be790af59..f78fa3a24d 100644 Binary files a/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po index c86268d611..e5805f67d3 100644 --- a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-12 17:43+0000\n" -"Last-Translator: Adek Lanin\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -196,7 +196,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -265,37 +265,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Password" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +337,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo index 223d40f611..6aa929bbad 100644 Binary files a/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po index b8d8a63776..1dd5ec7e80 100644 --- a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: Marco Camplese \n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -198,7 +198,7 @@ msgstr "Cartella monitorata" msgid "POP3 email" msgstr "Email POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "Email IMAP" @@ -267,38 +267,37 @@ msgstr "Elementi log" msgid "Log entries" msgstr "Elementi log" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Le scelte tipiche sono 110 per POP3, 995 per POP3 su SSL, 143 per IMAP, 993 per IMAP su SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Porta" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Nome utente" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Password" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Nome degli allegati che possono contenere i nomi dei tipi metadati e le coppie di valori che saranno assegnate al resto degli allegati caricati. Nota: Questo allegato sarà il primo degli allegati." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -340,33 +339,33 @@ msgstr "Email sorgente" msgid "Email sources" msgstr "Email sorgenti" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Il tipo metadato \"oggetto\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Il tipo metadato \"mittente\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Casella di posta IMAP dove controllare i messaggi." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Casella" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "Email POP" diff --git a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.mo index 4d324cd655..8151037e5f 100644 Binary files a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po index afc016237c..0f55e879cb 100644 --- a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-31 12:49+0000\n" -"Last-Translator: Māris Teivāns \n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -186,17 +186,17 @@ msgstr "Tīmekļa veidlapa" #: literals.py:63 models/staging_folder_sources.py:69 msgid "Staging folder" -msgstr "Pakāpju mape" +msgstr "Pieturvietu mape" #: literals.py:64 models/watch_folder_sources.py:48 msgid "Watch folder" -msgstr "Skatīties mapi" +msgstr "Novērot mapi" #: literals.py:65 msgid "POP3 email" msgstr "POP3 e-pasts" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP e-pasts" @@ -265,38 +265,37 @@ msgstr "Žurnāla ieraksts" msgid "Log entries" msgstr "Žurnāla ieraksti" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Saimnieks" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Tipiskas izvēles ir 110 POP3, 995 POP3 pār SSL, 143 IMAP, 993 IMAP pār SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" -msgstr "Osta" +msgstr "Ports" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Lietotājvārds" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Parole" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Pielikuma nosaukums, kurā būs metadatu tipa nosaukumi un vērtību pāri, kas tiks piešķirti pārējiem lejupielādētajiem pielikumiem. Piezīme: šim pielikumam jābūt pirmajam pielikumam." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -316,7 +315,7 @@ msgstr "Tēmas metadatu veids" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta "no" vērtības." +msgstr "Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta \"no\" vērtības." #: models/email_sources.py:73 msgid "From metadata type" @@ -338,33 +337,33 @@ msgstr "E-pasta avots" msgid "Email sources" msgstr "E-pasta avoti" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "Objekta metadatu tips "%(metadata_type)s" nav derīgs dokumenta tipam: %(document_type)s" +msgstr "Objekta metadatu tips \"%(metadata_type)s\" nav derīgs dokumenta tipam: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr ""No" metadatu tips "%(metadata_type)s" nav derīgs dokumenta tipam: %(document_type)s" +msgstr "\"No\" metadatu tips \"%(metadata_type)s\" nav derīgs dokumenta tipam: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP pastkaste, no kuras var pārbaudīt ziņas." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Pastkaste" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Pārtraukums" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP e-pasts" @@ -468,7 +467,7 @@ msgstr "Dzēst pēc augšupielādes" #: models/staging_folder_sources.py:70 msgid "Staging folders" -msgstr "Pakāpju mapes" +msgstr "Pieturvietu mapes" #: models/staging_folder_sources.py:82 #, python-format @@ -496,7 +495,7 @@ msgstr "Iekļaut apakšdirektorijas?" #: models/watch_folder_sources.py:49 msgid "Watch folders" -msgstr "Skatiet mapes" +msgstr "Novērotās mapes" #: models/webform_sources.py:43 msgid "Web forms" @@ -643,12 +642,12 @@ msgstr "Jauns dokuments tiek rindā augšupielādēts un drīz būs pieejams." #: views.py:344 #, python-format msgid "Upload a document of type \"%(document_type)s\" from source: %(source)s" -msgstr "Augšupielādējiet "%(document_type)s" tipa dokumentu no avota: %(source)s" +msgstr "Augšupielādējiet \"%(document_type)s\" tipa dokumentu no avota: %(source)s" #: views.py:378 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." -msgstr "Dokuments "%s" ir bloķēts jaunu versiju augšupielādei." +msgstr "Dokuments \"%s\" ir bloķēts jaunu versiju augšupielādei." #: views.py:431 msgid "New document version queued for upload and will be available shortly." @@ -662,7 +661,7 @@ msgstr "Augšupielādējiet jaunu versiju no avota: %s" #: views.py:486 #, python-format msgid "Delete staging file \"%s\"?" -msgstr "Vai izdzēst failu "%s"?" +msgstr "Vai izdzēst failu \"%s\"?" #: views.py:507 msgid "" @@ -675,7 +674,7 @@ msgstr "Tas veiks avota pārbaudes kodu pat tad, ja avots nav iespējots. Avoti, #: views.py:513 #, python-format msgid "Trigger check for source \"%s\"?" -msgstr "Izmantot avota "%s" pārbaudi?" +msgstr "Izmantot avota \"%s\" pārbaudi?" #: views.py:530 msgid "Source check queued." diff --git a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo index 53955fc379..f8a970c0a0 100644 Binary files a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po index 49a71e9228..5ef31aed03 100644 --- a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -197,7 +197,7 @@ msgstr "" msgid "POP3 email" msgstr "POP3 e-mail" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP e-mail" @@ -266,37 +266,36 @@ msgstr "Loginvoer" msgid "Log entries" msgstr "Loginvoer" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Wachtwoord" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -339,33 +338,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP e-mail" diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo index cc4359a198..01846a6dbf 100644 Binary files a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po index d7a5d87b7b..71e423e808 100644 --- a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" @@ -198,7 +198,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -267,37 +267,36 @@ msgstr "Wpis do dziennika" msgid "Log entries" msgstr "Wpisy rejestru logów" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Nazwa użytkownika" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Hasło" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -340,33 +339,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo index e2b0ed6a5f..69519be409 100644 Binary files a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po index 8d847cca18..b82665764f 100644 --- a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -198,7 +198,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -267,37 +267,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Senha" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -340,33 +339,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo index 179040029c..246c209490 100644 Binary files a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po index 82b9525d39..aae0b81a54 100644 --- a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: Aline Freitas \n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -199,7 +199,7 @@ msgstr "Pasta Temporária" msgid "POP3 email" msgstr "E-mail POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "E-mail IMAP" @@ -268,38 +268,37 @@ msgstr "Entrada de registro" msgid "Log entries" msgstr "As entradas de log" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Host" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Porta" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Usuário" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Senha" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Nome do anexo que contém os nomes de tipo de metadados e os pares de valores a serem atribuídos ao restante dos anexos transferidos. Nota: Este anexo tem de ser o primeiro anexo." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -341,33 +340,33 @@ msgstr "E-mail Fonte" msgid "Email sources" msgstr "E-mail Fontes" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tipo de metadado do assunto \"%(metadata_type)s\" não é válido para o documento do tipo: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tipo de metadados do campo \"de\" \"%(metadata_type)s\" não é válido para o tipo de documento: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Pasta de email IMAP de onde checar por mensagens." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Caixa de correio" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "E-mail POP3" diff --git a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo index 376e5b8772..480d74e7c2 100644 Binary files a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po index d652131390..e343ed438f 100644 --- a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-08 07:32+0000\n" -"Last-Translator: Harald Ersch\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -198,7 +198,7 @@ msgstr "Dosarul de urmărire" msgid "POP3 email" msgstr "E-mail POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "E-mail IMAP" @@ -267,38 +267,37 @@ msgstr "Intrare în jurnal" msgid "Log entries" msgstr "Intrările de jurnal" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Gazdă" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Opțiunile tipice sunt 110 pentru POP3, 995 pentru POP3 peste SSL, 143 pentru IMAP, 993 pentru IMAP peste SSL." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Nume de utilizator" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Parola" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "Numele atașamentului care va conține nume de perechi de metadate și perechi de valori care vor fi atribuite restului atașamentelor descărcate. Notă: acest atașament trebuie să fie primul atașament." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -340,33 +339,33 @@ msgstr "Sursa de e-mail" msgid "Email sources" msgstr "Surse de e-mail" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tipul de metadate Subiect \"%(metadata_type)s\" nu este valid pentru tipul de document: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tipul de metadate \"De la\" \"%(metadata_type)s\" nu este valabil pentru tipul de document: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Căsuța poștală IMAP din care să se verifice mesajele." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Căsuță poștală" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Pauză" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "Emailul POP" diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo index 17631bc2d4..44a11d161e 100644 Binary files a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po index ce5eec22b8..2ae9e7a178 100644 --- a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" -"Last-Translator: lilo.panic\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -197,7 +197,7 @@ msgstr "Наблюдаемая папка" msgid "POP3 email" msgstr "почтовый ящик POP3" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "почтовый ящик IMAP" @@ -266,37 +266,36 @@ msgstr "Запись журнала" msgid "Log entries" msgstr "Записи журнала" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Хост" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Обычно выбирают 110 для POP3, 995 для POP3 с SSL, 143 для IMAP, 993 для IMAP с SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Порт" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Имя пользователя" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Пароль" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -339,33 +338,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP ящик в котором проверять сообщения." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Таймаут" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP email" diff --git a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo index 09531c1f00..07a573b351 100644 Binary files a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po index c57c9bba24..72a353ff27 100644 --- a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -195,7 +195,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -264,37 +264,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -337,33 +336,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.mo index 0699c05fd9..1985efc63b 100644 Binary files a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po index 335c35570a..69fa7a2bc3 100644 --- a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -197,7 +197,7 @@ msgstr "İzleme Klasörü" msgid "POP3 email" msgstr "POP3 e-postası" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP e-postası" @@ -266,38 +266,37 @@ msgstr "Kayıt girişi" msgid "Log entries" msgstr "Kayıt girdileri" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "Sunucu" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Tipik seçimler POP3 için 110, SSL üzerinden POP3 için 995, IMAP için 143, SSL üzerinden IMAP için 993'tür." -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "Port" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "Kullanıcı adı" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "Parola" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "İndirilen eklerin geri kalanına atanacak meta veri türü adlarını ve değer çiftlerini içeren ekin adını. Not: Bu ek ilk eki olmalı." +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -339,33 +338,33 @@ msgstr "E-posta kaynağı" msgid "Email sources" msgstr "E-posta kaynakları" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Konu meta verileri türü \"%(metadata_type)s\" belge türü için geçerli değil: %(document_type)s" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "\"Kimden\" meta veri türü \"%(metadata_type)s\" belge türü için geçerli değil: %(document_type)s" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "Mesajların kontrol edileceği IMAP Posta Kutusu." -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "Posta kutusu" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "Zaman aşımı" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP e-postası" diff --git a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.mo index 3367b78a20..72c8fea570 100644 Binary files a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po index 1e2b8000dd..100fd80249 100644 --- a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -196,7 +196,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "" @@ -265,37 +265,36 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." +"pairs to be assigned to the rest of the downloaded attachments." msgstr "" #: models/email_sources.py:59 @@ -338,33 +337,33 @@ msgstr "" msgid "Email sources" msgstr "" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.mo index 70211116c6..14342618cf 100644 Binary files a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.mo and b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po index a7515ca0a4..e9b5b67b57 100644 --- a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-05 06:26+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -196,7 +196,7 @@ msgstr "监视文件夹" msgid "POP3 email" msgstr "POP3电子邮件" -#: literals.py:66 models/email_sources.py:220 models/email_sources.py:221 +#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 msgid "IMAP email" msgstr "IMAP电子邮件" @@ -265,38 +265,37 @@ msgstr "日志条目" msgid "Log entries" msgstr "日志条目" -#: models/email_sources.py:44 +#: models/email_sources.py:45 msgid "Host" msgstr "主机" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:47 +#: models/email_sources.py:48 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "对于POP3,典型的选择是110,对于基于SSL的POP3为995,对于IMAP为143,对于基于SSL的IMAP为993。" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "Port" msgstr "端口" -#: models/email_sources.py:50 +#: models/email_sources.py:51 msgid "Username" msgstr "用户名" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Password" msgstr "密码" -#: models/email_sources.py:55 +#: models/email_sources.py:56 msgid "" "Name of the attachment that will contains the metadata type names and value " -"pairs to be assigned to the rest of the downloaded attachments. Note: This " -"attachment has to be the first attachment." -msgstr "附件的名称,其中包含要分配给其余下载附件的元数据类型名称和值对。注意:此附件必须是第一个附件。" +"pairs to be assigned to the rest of the downloaded attachments." +msgstr "" #: models/email_sources.py:59 msgid "Metadata attachment name" @@ -338,33 +337,33 @@ msgstr "电邮来源" msgid "Email sources" msgstr "电邮来源" -#: models/email_sources.py:184 +#: models/email_sources.py:190 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "主题元数据类型“%(metadata_type)s”对于文档类型%(document_type)s无效" -#: models/email_sources.py:198 +#: models/email_sources.py:204 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "“发件人”元数据类型“%(metadata_type)s”对于文档类型%(document_type)s无效" -#: models/email_sources.py:213 +#: models/email_sources.py:219 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP邮箱,用于检查邮件。" -#: models/email_sources.py:214 +#: models/email_sources.py:220 msgid "Mailbox" msgstr "邮箱" -#: models/email_sources.py:265 +#: models/email_sources.py:272 msgid "Timeout" msgstr "超时" -#: models/email_sources.py:271 models/email_sources.py:272 +#: models/email_sources.py:278 models/email_sources.py:279 msgid "POP email" msgstr "POP电子邮件" diff --git a/mayan/apps/sources/migrations/0021_auto_20190629_0648.py b/mayan/apps/sources/migrations/0021_auto_20190629_0648.py new file mode 100644 index 0000000000..e804cce4e0 --- /dev/null +++ b/mayan/apps/sources/migrations/0021_auto_20190629_0648.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-06-29 06:48 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('sources', '0020_auto_20181128_0752'), + ] + + operations = [ + migrations.AlterField( + model_name='emailbasemodel', + name='metadata_attachment_name', + field=models.CharField(default='metadata.yaml', help_text='Name of the attachment that will contains the metadata type names and value pairs to be assigned to the rest of the downloaded attachments.', max_length=128, verbose_name='Metadata attachment name'), + ), + ] diff --git a/mayan/apps/sources/models/email_sources.py b/mayan/apps/sources/models/email_sources.py index 57435e201e..4c07219088 100644 --- a/mayan/apps/sources/models/email_sources.py +++ b/mayan/apps/sources/models/email_sources.py @@ -16,6 +16,7 @@ from django.db import models from django.utils.encoding import force_bytes from django.utils.translation import ugettext_lazy as _ +from mayan.apps.documents.models import Document from mayan.apps.metadata.api import set_bulk_metadata from mayan.apps.metadata.models import MetadataType @@ -54,8 +55,7 @@ class EmailBaseModel(IntervalBaseModel): help_text=_( 'Name of the attachment that will contains the metadata type ' 'names and value pairs to be assigned to the rest of the ' - 'downloaded attachments. Note: This attachment has to be the ' - 'first attachment.' + 'downloaded attachments.' ), max_length=128, verbose_name=_('Metadata attachment name') ) subject_metadata_type = models.ForeignKey( @@ -85,52 +85,61 @@ class EmailBaseModel(IntervalBaseModel): verbose_name_plural = _('Email sources') @staticmethod - def process_message(source, message_text, message_properties=None): + def process_message(source, message_text): from flanker import mime - counter = 1 - message = mime.from_string(force_bytes(message_text)) metadata_dictionary = {} - if not message_properties: - message_properties = {} - - message_properties['Subject'] = message_properties.get( - 'Subject', message.headers.get('Subject') - ) - - message_properties['From'] = message_properties.get( - 'From', message.headers.get('From') - ) - - if source.subject_metadata_type: - metadata_dictionary[ - source.subject_metadata_type.name - ] = message_properties.get('Subject') + message = mime.from_string(force_bytes(message_text)) if source.from_metadata_type: metadata_dictionary[ source.from_metadata_type.name - ] = message_properties.get('From') + ] = message.headers.get('From') + + if source.subject_metadata_type: + metadata_dictionary[ + source.subject_metadata_type.name + ] = message.headers.get('Subject') + + document_ids, parts_metadata_dictionary = EmailBaseModel._process_message(source=source, message=message) + + metadata_dictionary.update(parts_metadata_dictionary) + + if metadata_dictionary: + for document in Document.objects.filter(id__in=document_ids): + set_bulk_metadata( + document=document, + metadata_dictionary=metadata_dictionary + ) + + @staticmethod + def _process_message(source, message): + counter = 1 + document_ids = [] + metadata_dictionary = {} # Messages are tree based, do nested processing of message parts until # a message with no children is found, then work out way up. if message.parts: for part in message.parts: - EmailBaseModel.process_message( - source=source, message_text=part.to_string(), - message_properties=message_properties + part_document_ids, part_metadata_dictionary = EmailBaseModel._process_message( + source=source, message=part, ) + + document_ids.extend(part_document_ids) + metadata_dictionary.update(part_metadata_dictionary) else: # Treat inlines as attachments, both are extracted and saved as # documents if message.is_attachment() or message.is_inline(): - # Reject zero length attachments if len(message.body) == 0: - return + return document_ids, metadata_dictionary label = message.detected_file_name or 'attachment-{}'.format(counter) + counter = counter + 1 + with ContentFile(content=message.body, name=label) as file_object: if label == source.metadata_attachment_name: metadata_dictionary = yaml.load( @@ -147,12 +156,10 @@ class EmailBaseModel(IntervalBaseModel): source.uncompress == SOURCE_UNCOMPRESS_CHOICE_Y ) ) - if metadata_dictionary: - for document in documents: - set_bulk_metadata( - document=document, - metadata_dictionary=metadata_dictionary - ) + + for document in documents: + document_ids.append(document.pk) + else: # If it is not an attachment then it should be a body message part. # Another option is to use message.is_body() @@ -168,12 +175,11 @@ class EmailBaseModel(IntervalBaseModel): expand=SOURCE_UNCOMPRESS_CHOICE_N, file_object=file_object ) - if metadata_dictionary: - for document in documents: - set_bulk_metadata( - document=document, - metadata_dictionary=metadata_dictionary - ) + + for document in documents: + document_ids.append(document.pk) + + return document_ids, metadata_dictionary def clean(self): if self.subject_metadata_type: @@ -247,10 +253,11 @@ class IMAPEmail(EmailBaseModel): EmailBaseModel.process_message( source=self, message_text=data[0][1] ) + if not test: mailbox.store( message_set=message_number, command='+FLAGS', - flag_list='\\Deleted' + flags=r'\Deleted' ) mailbox.expunge() diff --git a/mayan/apps/sources/tests/test_models.py b/mayan/apps/sources/tests/test_models.py index ab5faa913c..9288ff57be 100644 --- a/mayan/apps/sources/tests/test_models.py +++ b/mayan/apps/sources/tests/test_models.py @@ -6,7 +6,13 @@ import shutil import mock from pathlib2 import Path +import yaml +try: + from yaml import CSafeDumper as SafeDumper +except ImportError: + from yaml import SafeDumper +from django.core import mail from django.utils.encoding import force_text from mayan.apps.documents.models import Document @@ -20,8 +26,9 @@ from mayan.apps.metadata.models import MetadataType from mayan.apps.storage.utils import mkdtemp from ..literals import SOURCE_UNCOMPRESS_CHOICE_Y -from ..models import POP3Email, WatchFolderSource, WebFormSource -from ..models.email_sources import EmailBaseModel +from ..models.email_sources import EmailBaseModel, IMAPEmail, POP3Email +from ..models.watch_folder_sources import WatchFolderSource +from ..models.webform_sources import WebFormSource from .literals import ( TEST_EMAIL_ATTACHMENT_AND_INLINE, TEST_EMAIL_BASE64_FILENAME, @@ -60,7 +67,7 @@ class CompressedUploadsTestCase(GenericDocumentTestCase): ) -class EmailFilenameDecodingTestCase(GenericDocumentTestCase): +class EmailBaseTestCase(GenericDocumentTestCase): auto_upload_document = False def _create_email_source(self): @@ -189,6 +196,121 @@ class EmailFilenameDecodingTestCase(GenericDocumentTestCase): # Only two attachments and a body document self.assertEqual(2, Document.objects.count()) + def test_metadata_yaml_attachment(self): + TEST_METADATA_VALUE_1 = 'test value 1' + TEST_METADATA_VALUE_2 = 'test value 2' + + test_metadata_type_1 = MetadataType.objects.create( + name='test_metadata_type_1' + ) + test_metadata_type_2 = MetadataType.objects.create( + name='test_metadata_type_2' + ) + self.test_document_type.metadata.create( + metadata_type=test_metadata_type_1 + ) + self.test_document_type.metadata.create( + metadata_type=test_metadata_type_2 + ) + + test_metadata_yaml = yaml.dump( + Dumper=SafeDumper, data={ + test_metadata_type_1.name: TEST_METADATA_VALUE_1, + test_metadata_type_2.name: TEST_METADATA_VALUE_2, + } + ) + + # Create email with a test attachment first, then the metadata.yaml + # attachment + with mail.get_connection( + backend='django.core.mail.backends.locmem.EmailBackend' + ) as connection: + email_message = mail.EmailMultiAlternatives( + body='test email body', connection=connection, + subject='test email subject', to=['test@example.com'], + ) + + email_message.attach( + filename='test_attachment', + content='test_content', + ) + + email_message.attach( + filename='metadata.yaml', + content=test_metadata_yaml, + ) + + email_message.send() + + self._create_email_source() + self.source.store_body = True + self.source.save() + + EmailBaseModel.process_message( + source=self.source, message_text=mail.outbox[0].message() + ) + + self.assertEqual(Document.objects.count(), 2) + + for document in Document.objects.all(): + self.assertEqual( + document.metadata.get(metadata_type=test_metadata_type_1).value, + TEST_METADATA_VALUE_1 + ) + self.assertEqual( + document.metadata.get(metadata_type=test_metadata_type_2).value, + TEST_METADATA_VALUE_2 + ) + + +class IMAPSourceTestCase(GenericDocumentTestCase): + auto_upload_document = False + + class MockIMAPServer(object): + def login(self, user, password): + return ('OK', ['{} authenticated (Success)'.format(user)]) + + def select(self, mailbox='INBOX', readonly=False): + return ('OK', ['1']) + + def search(self, charset, *criteria): + return ('OK', ['1']) + + def fetch(self, message_set, message_parts): + return ( + 'OK', [ + ( + '1 (RFC822 {4800}', + TEST_EMAIL_BASE64_FILENAME + ), ' FLAGS (\\Seen))' + ] + ) + + def store(self, message_set, command, flags): + return ('OK', ['1 (FLAGS (\\Seen \\Deleted))']) + + def expunge(self): + return ('OK', ['1']) + + def close(self): + return ('OK', ['Returned to authenticated state. (Success)']) + + def logout(self): + return ('BYE', ['LOGOUT Requested']) + + @mock.patch('imaplib.IMAP4_SSL', autospec=True) + def test_download_document(self, mock_imaplib): + mock_imaplib.return_value = IMAPSourceTestCase.MockIMAPServer() + self.source = IMAPEmail.objects.create( + document_type=self.test_document_type, label='', host='', + password='', username='' + ) + + self.source.check_source() + self.assertEqual( + Document.objects.first().label, 'Ampelm\xe4nnchen.txt' + ) + class POP3SourceTestCase(GenericDocumentTestCase): auto_upload_document = False diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po index 53f0e95f06..6eb2218900 100644 --- a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po index 21ee4f817e..e35ff1c6f5 100644 --- a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po index 585dab7b42..052bd855bd 100644 --- a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po index 6837b4b60e..66c1d1a45f 100644 --- a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po index cb32bb85d7..4481415826 100644 --- a/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po index 01b8e2f0d6..37533157b5 100644 --- a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-28 21:14+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po index 3ee3d01468..8b271b1d8a 100644 --- a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po index 9dd424b1ac..da0362632d 100644 --- a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po index cf23fc6afd..bbec3ca92e 100644 --- a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-28 01:42+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po index ce38360138..171637f06b 100644 --- a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Mehdi Amani \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po index 51fc7cb28f..901fef4bad 100644 --- a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Yves Dubois \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po index ec405b3812..72b48b7657 100644 --- a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po index 2176190bad..d18f2cbe14 100644 --- a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-14 11:35+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index 97b52c91bd..a123e5ba31 100644 --- a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Marco Camplese \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po index 2cde3a22a6..e61cc754b5 100644 --- a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-31 12:51+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po index c96a7b427d..d36bf452b2 100644 --- a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Johan Braeken\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po index 23edd75f9c..feb774f436 100644 --- a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Wojciech Warczakowski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index 69762344c9..a288ed220a 100644 --- a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po index e20cc7eccb..10d6f9fb33 100644 --- a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po index 180889a74b..238c83439e 100644 --- a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po index 77e1821c09..ee81d6b63d 100644 --- a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po index 063df93bb1..69645b451f 100644 --- a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po index c8bbed4b69..0be8df6015 100644 --- a/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po index 7eca307ac7..ab32dfb236 100644 --- a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po index 151f84d963..04bd0d0da0 100644 --- a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/tags/apps.py b/mayan/apps/tags/apps.py index 978dcc1308..c64811558a 100644 --- a/mayan/apps/tags/apps.py +++ b/mayan/apps/tags/apps.py @@ -23,7 +23,7 @@ from mayan.apps.navigation.classes import SourceColumn from .dependencies import * # NOQA from .events import ( - event_tag_attach, event_tag_created, event_tag_edited, event_tag_remove + event_tag_attach, event_tag_edited, event_tag_remove ) from .handlers import handler_index_document, handler_tag_pre_delete from .html_widgets import widget_document_tags diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po index 38fb823c36..4faf9f0105 100644 --- a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "الكلمات الاستدلالية" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "الوثائق" @@ -44,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -316,14 +316,14 @@ msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح م msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po index 3b09210778..aa6d05d178 100644 --- a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Етикети" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Документи" @@ -44,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -304,14 +304,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po index e4e47b13d9..7102e93430 100644 --- a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -19,13 +19,13 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tagovi" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenti" @@ -45,7 +45,7 @@ msgstr "" msgid "Tag removed from document" msgstr "Oznaka je uklonjena iz dokumenta" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Uklonite oznaku" @@ -308,14 +308,14 @@ msgstr "Tag \"%(tag)s\" uspješno uklonjen iz dokumenta \"%(document)s\"." msgid "Select tags" msgstr "Izaberite oznake" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Oznake koje treba priložiti dokumentu" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Priloži oznaku" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Oznake koje treba ukloniti iz dokumenta" diff --git a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po index 572c6993dc..32243253de 100644 --- a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -17,13 +17,13 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenty" @@ -43,7 +43,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -309,14 +309,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po index 992534def4..80aa00e8e5 100644 --- a/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -17,13 +17,13 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenter" @@ -43,7 +43,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -303,14 +303,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po index b2b94f63d5..cb211ab66d 100644 --- a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -20,13 +20,13 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tags" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumente" @@ -46,7 +46,7 @@ msgstr "Tag bearbeitet" msgid "Tag removed from document" msgstr "Tag von Dokument entfernt" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Tag entfernen" @@ -306,14 +306,14 @@ msgstr "Tag \"%(tag)s\" erfolgreich von Dokument \"%(document)s\" entfernt." msgid "Select tags" msgstr "Tags auswählen" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Tags die an das Dokument angehängt werden sollen" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Tag zuweisen" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Tags die vom Dokument entfernt werden sollen" diff --git a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po index bccc5e9a2a..6db8d8a42e 100644 --- a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,13 +17,13 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Ετικέτες" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Έγγραφα" @@ -43,7 +43,7 @@ msgstr "" msgid "Tag removed from document" msgstr "Ετικέτα αφαιρέθηκε από το έγγραφο" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Αφαίρεση ετικέτας" @@ -303,14 +303,14 @@ msgstr "Η ετικέτα \"%(tag)s\" αφαιρέθηκε επιτυχώς απ msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "ετικέτες που θα προστεθούν στο έγγραφο" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Προσθήκη ετικέτας" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Ετικέτες που θα αφαιρεθούν από το έγγραφο" diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po index 04e7a0c709..6eb85acfe2 100644 --- a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,13 +18,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "" @@ -44,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -304,14 +304,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index 1410a0934e..d5df51bd66 100644 --- a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-28 19:35+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -20,13 +20,13 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiquetas" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documentos" @@ -46,7 +46,7 @@ msgstr "Etiqueta editada" msgid "Tag removed from document" msgstr "Etiqueta retirada del documento" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Retirar etiqueta" @@ -306,14 +306,14 @@ msgstr "Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\" msgid "Select tags" msgstr "Seleccione etiquetas" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Etiquetas para adjuntar al documento" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Adjuntar etiqueta" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Etiquetas a retirar del documento" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po index 3cccf36bca..f125e225bd 100644 --- a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -19,13 +19,13 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "برچسب ها" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "اسناد" @@ -45,7 +45,7 @@ msgstr "" msgid "Tag removed from document" msgstr "برچسب از سند حذف شد" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "برچسب را حذف کنید" @@ -305,14 +305,14 @@ msgstr "برچسب \"%(tag)s\" با موفقیت از سند \"%(document)s\" ح msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "برچسب ها برای پیوستن به سند" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "ضمیمه برچسب" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "برچسب ها را از سند حذف کنید" diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index 276d1cb66d..4eefe3df93 100644 --- a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 13:19+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -23,13 +23,13 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Étiquettes" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documents" @@ -49,7 +49,7 @@ msgstr "Étiquette modifiée" msgid "Tag removed from document" msgstr "Étiquette retirée du document" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Retirer une étiquette" @@ -309,14 +309,14 @@ msgstr "L'étiquette \"%(tag)s\" à été retirée avec succès du document \"%( msgid "Select tags" msgstr "Sélectionner les étiquettes" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Étiquettes à attacher au document" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Attacher une étiquette" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Étiquettes à retirer du document" diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index 40918de5b0..fd1f374bd2 100644 --- a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Címkék" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumentumok" @@ -44,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Címke levétele" @@ -304,14 +304,14 @@ msgstr "A \"%(tag)s\" címke sikeresen leszedésre került a \"%(document)s\" do msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po index 41bd554be4..b52fcc29b6 100644 --- a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -17,13 +17,13 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumen" @@ -43,7 +43,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -300,14 +300,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po index fe80a43de7..5f89a7bbb3 100644 --- a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -21,13 +21,13 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etichette" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documenti" @@ -47,7 +47,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Rimuovi etichetta" @@ -307,14 +307,14 @@ msgstr "Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\ msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Allega etichetta" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.mo index ce0ac10c13..1a556e80dc 100644 Binary files a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po index 79b4e0e964..390f6062ae 100644 --- a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-05-31 12:52+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-28 11:50+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,13 +18,13 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tags" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenti" @@ -34,17 +34,17 @@ msgstr "Tagam pievienots dokuments" #: events.py:13 msgid "Tag created" -msgstr "Tag izveidots" +msgstr "Tags izveidots" #: events.py:16 msgid "Tag edited" -msgstr "Tag rediģēts" +msgstr "Tags rediģēts" #: events.py:19 msgid "Tag removed from document" -msgstr "Tag ir noņemta no dokumenta" +msgstr "Tags ir noņemts no dokumenta" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Noņemt tagu" @@ -74,7 +74,7 @@ msgstr "Visi" #: methods.py:20 msgid "Return a the tags attached to the document." -msgstr "Atgrieziet dokumentam pievienotās atzīmes." +msgstr "Atgrieziet dokumentam pievienotos tagus." #: methods.py:22 msgid "get_tags()" @@ -82,7 +82,7 @@ msgstr "get_tags ()" #: models.py:28 msgid "A short text used as the tag name." -msgstr "Īss teksts, ko izmanto kā atzīmes nosaukumu." +msgstr "Īss teksts, ko izmanto kā taga nosaukumu." #: models.py:29 search.py:16 msgid "Label" @@ -98,7 +98,7 @@ msgstr "Krāsa" #: models.py:41 msgid "Tag" -msgstr "Tag" +msgstr "Tags" #: models.py:84 msgid "Preview" @@ -106,7 +106,7 @@ msgstr "Priekšskatījums" #: models.py:113 msgid "Document tag" -msgstr "Dokumenta atzīme" +msgstr "Dokumenta tags" #: models.py:114 msgid "Document tags" @@ -114,7 +114,7 @@ msgstr "Dokumentu tagi" #: permissions.py:10 msgid "Create new tags" -msgstr "Izveidojiet jaunas atzīmes" +msgstr "Izveidojiet jaunus tagus" #: permissions.py:13 msgid "Delete tags" @@ -130,7 +130,7 @@ msgstr "Rediģēt tagus" #: permissions.py:22 msgid "Attach tags to documents" -msgstr "Pievienojiet dokumentus dokumentiem" +msgstr "Pievienojiet tagus dokumentiem" #: permissions.py:25 msgid "Remove tags from documents" @@ -140,7 +140,7 @@ msgstr "Noņemiet tagus no dokumentiem" msgid "" "Comma separated list of document primary keys to which this tag will be " "attached." -msgstr "Komatu atdalītu dokumentu primāro atslēgu saraksts, kurām šī atzīme tiks pievienota." +msgstr "Komatu atdalītu dokumentu primāro atslēgu saraksts, kurām šis tags tiks pievienots." #: serializers.py:86 msgid "" @@ -150,7 +150,7 @@ msgstr "API URL, kas norāda uz tagu saistībā ar tam pievienoto dokumentu. Ši #: serializers.py:106 msgid "Primary key of the tag to be added." -msgstr "Pievienojamās taga primārā atslēga." +msgstr "Pievienojamā taga primārā atslēga." #: views.py:38 #, python-format @@ -170,9 +170,9 @@ msgstr "Pievienojiet" #, python-format msgid "Attach tags to %(count)d document" msgid_plural "Attach tags to %(count)d documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Pievienojiet tagus dokumentiem %(count)d" +msgstr[1] "Pievienojiet tagus dokumentam %(count)d" +msgstr[2] "Pievienojiet tagus dokumentiem %(count)d" #: views.py:61 #, python-format @@ -186,12 +186,12 @@ msgstr "Pievienotie tagi." #: views.py:112 #, python-format msgid "Document \"%(document)s\" is already tagged as \"%(tag)s\"" -msgstr "Dokuments "%(document)s" jau ir atzīmēts kā "%(tag)s"" +msgstr "Dokuments \"%(document)s\" jau ir atzīmēts kā \"%(tag)s\"" #: views.py:122 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "Tag "%(tag)s", kas veiksmīgi pievienots dokumentam "%(document)s"." +msgstr "Tag \"%(tag)s\", kas veiksmīgi pievienots dokumentam \"%(document)s\"." #: views.py:131 msgid "Create tag" @@ -226,12 +226,12 @@ msgstr "Dzēst tagu: %s" #: views.py:179 #, python-format msgid "Tag \"%s\" deleted successfully." -msgstr "Tag "%s" veiksmīgi izdzēsta." +msgstr "Tag \"%s\" veiksmīgi izdzēsta." #: views.py:184 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" -msgstr "Dzēšot tagu "%(tag)s", radās kļūda: %(error)s" +msgstr "Dzēšot tagu \"%(tag)s\", radās kļūda: %(error)s" #: views.py:199 #, python-format @@ -280,9 +280,9 @@ msgstr "Noņemt" #, python-format msgid "Remove tags to %(count)d document" msgid_plural "Remove tags to %(count)d documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Noņemiet tagus dokumentiem %(count)d" +msgstr[1] "Noņemiet tagus dokumentam %(count)d" +msgstr[2] "Noņemiet tagus dokumentiem %(count)d" #: views.py:312 #, python-format @@ -296,25 +296,25 @@ msgstr "Atceltās atzīmes." #: views.py:361 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s" -msgstr "Dokuments "%(document)s" netika atzīmēts kā "%(tag)s" +msgstr "Dokuments \"%(document)s\" netika atzīmēts kā \"%(tag)s\"" #: views.py:370 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Tag "%(tag)s" veiksmīgi noņemts no dokumenta "%(document)s"." +msgstr "Tag \"%(tag)s\" veiksmīgi noņemts no dokumenta \"%(document)s\"." #: wizard_steps.py:18 msgid "Select tags" msgstr "Atlasiet tagus" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Dokumentam pievienotie tagi" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Pievienojiet tagu" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Atzīmes no dokumenta" diff --git a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po index 7353905e44..18cd5bd555 100644 --- a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Labels" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documenten" @@ -44,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Label verwijderen" @@ -304,14 +304,14 @@ msgstr "Label: \"%(tag)s\" is verwijderd van document \"%(document)s\"." msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Voeg label bij" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po index f979d70aab..cf1e219fc9 100644 --- a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -21,13 +21,13 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tagi" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenty" @@ -47,7 +47,7 @@ msgstr "" msgid "Tag removed from document" msgstr "Tag usunięty z dokumentu" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Usuń tag" @@ -313,14 +313,14 @@ msgstr "Tag \"%(tag)s\" usunięty z dokumentu \"%(document)s\"." msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Tagi do załączenia do dokumentu" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Dołącz tag" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Tagi do usunięcia z dokumentu" diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index 31db189d65..64de3f063e 100644 --- a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -20,13 +20,13 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiquetas" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documentos" @@ -46,7 +46,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -306,14 +306,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po index 008235e373..7d575f1129 100644 --- a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -21,13 +21,13 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiquetas" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documentos" @@ -47,7 +47,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Remover Etiqueta" @@ -307,14 +307,14 @@ msgstr "Etiqueta \"%(tag)s\" removida com sucesso do documento \"%(document)s\". msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Anexar etiqueta" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po index 0b7d12c778..aac67ab4cd 100644 --- a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -21,13 +21,13 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etichete" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Documente" @@ -47,7 +47,7 @@ msgstr "Eticheta a fost editată" msgid "Tag removed from document" msgstr "Eticheta a fost eliminată din document" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Elimină eticheta" @@ -310,14 +310,14 @@ msgstr "Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(docu msgid "Select tags" msgstr "Selectați etichete" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "Etichete care se atașează la document" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Atașează etichetă" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "Etichete pentru a fi eliminate din document" diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index 4a0ba427ff..24fed088a7 100644 --- a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Метки" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Документы" @@ -44,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Снять метку" @@ -310,14 +310,14 @@ msgstr "Метка \"%(tag)s\" снята с документа \"%(document)s\" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Прикрепить метку" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po index 6b488273f5..5edfc0069c 100644 --- a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Oznake" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Dokumenti" @@ -44,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -310,14 +310,14 @@ msgstr "" msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po index 8eadcd0802..4cb87bef56 100644 --- a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,13 +19,13 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiketler" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Belgeler" @@ -45,7 +45,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "Etiketi kaldır" @@ -305,14 +305,14 @@ msgstr "\"%(tag)s\" Etiketi \"%(document)s\" dokümanından başarıyla kaldır msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "Etiket ekle" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po index 35c7031b29..1cc247a343 100644 --- a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tags" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "Tài liệu" @@ -44,7 +44,7 @@ msgstr "" msgid "Tag removed from document" msgstr "" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "" @@ -301,14 +301,14 @@ msgstr "Tag \"%(tag)s\" đã được xóa thành công từ tài liệu \"%(doc msgid "Select tags" msgstr "" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "" diff --git a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po index 535b985124..1d7406ee59 100644 --- a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:108 apps.py:115 apps.py:137 apps.py:139 events.py:7 +#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 -#: views.py:222 workflow_actions.py:19 workflow_actions.py:67 +#: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "标签" -#: apps.py:130 models.py:36 +#: apps.py:129 models.py:36 msgid "Documents" msgstr "文档" @@ -44,7 +44,7 @@ msgstr "标签已编辑" msgid "Tag removed from document" msgstr "标签已从文档中删除" -#: links.py:16 workflow_actions.py:74 +#: links.py:16 workflow_actions.py:75 msgid "Remove tag" msgstr "删除标签" @@ -301,14 +301,14 @@ msgstr "标签“%(tag)s”已从文档“%(document)s”中成功删除。" msgid "Select tags" msgstr "选择标签" -#: workflow_actions.py:21 +#: workflow_actions.py:22 msgid "Tags to attach to the document" msgstr "要附加到文档的标签" -#: workflow_actions.py:26 +#: workflow_actions.py:27 msgid "Attach tag" msgstr "附加标签" -#: workflow_actions.py:69 +#: workflow_actions.py:70 msgid "Tags to remove from the document" msgstr "要从文档中删除的标签" diff --git a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po index 506d89b144..4e719ac266 100644 --- a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" diff --git a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po index 4cf93fbc88..5d0fea9711 100644 --- a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po index ee4a4f3d91..8c7cb1d140 100644 --- a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po index d175d81193..c3cd3ed806 100644 --- a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Jiri Fait , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" diff --git a/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po index 01875a4a5a..cdea028709 100644 --- a/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" diff --git a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po index dd46b17727..43bd0c0c71 100644 --- a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po index 5bdb5f9aed..657212a839 100644 --- a/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Hmayag Antonian , 2018\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" diff --git a/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po index cbbc93fa06..8847da676e 100644 --- a/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po index 93ba00ae84..b6c0a25e8b 100644 --- a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po index a549442f4e..3596a635c2 100644 --- a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Mehdi Amani , 2018\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po index 851050783f..e9b5664515 100644 --- a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Yves Dubois , 2018\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po index 2a55f4ab16..c7b51aa0df 100644 --- a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: molnars , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" diff --git a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po index 77ed737602..1d5210e797 100644 --- a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" diff --git a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po index 61a74b1f3d..4de41c3acd 100644 --- a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Marco Camplese , 2017\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po index 43a654b00f..3ae8f7bbdd 100644 --- a/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" diff --git a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po index c995241d93..eabc89329b 100644 --- a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Lucas Weel , 2017\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po index 9ae96e4a3f..8400e6daad 100644 --- a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Wojciech Warczakowski , 2018\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po index 0c37331865..8fa2323133 100644 --- a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Manuela Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" diff --git a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po index e9e07122bb..f2e6e96ab0 100644 --- a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po index 14766f3f70..4f13b13705 100644 --- a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" diff --git a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po index a9c0e503ab..c3dd602f11 100644 --- a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: lilo.panic, 2017\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po index 236015837d..16c27b4c6b 100644 --- a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: kontrabant , 2017\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" diff --git a/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po index b38012f55c..13df484482 100644 --- a/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: serhatcan77 , 2017\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" diff --git a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po index d583c7edc8..78d4bdf1e7 100644 --- a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" diff --git a/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po index 2fc27ae1c7..152e64e9eb 100644 --- a/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" diff --git a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo index 54987bd30c..a3eb11c9dd 100644 Binary files a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po index 33000d124e..39728d03ec 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,62 +18,70 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "إدارة المستخدم" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "مجموعات" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "اسم" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "مستخدم" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Users" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "البريد الإلكتروني" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo index cd82a2977d..ed41735569 100644 Binary files a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po index e987d9ada7..2cb19381fc 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" @@ -18,62 +18,70 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Управление на потребители" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Групи" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Име" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Потребител" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Потребители" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Електронна поща" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo index 0ea132d810..45a2cd773d 100644 Binary files a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po index 42d3c3680b..19bd0d5574 100644 --- a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" @@ -19,62 +19,70 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Upravljanje korisnicima" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupe" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Ime" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Korisnik" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Korisnici" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Korisničko ime" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Ime" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Prezime" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Ima korisnu lozinku?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Sve grupe." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Svi korisnici." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.mo index acc0d73b4a..84e822bfc9 100644 Binary files a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po index 6d37235a2b..2e02734f9e 100644 --- a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" @@ -17,62 +17,70 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.mo index 7b2f44fe0a..b68cb3bc4e 100644 Binary files a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po index fe3a89e3de..b0fafa5853 100644 --- a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -17,62 +17,70 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Navn" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Bruger" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Brugernavn" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo index 7d8efa5585..cab28af9a2 100644 Binary files a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po index ed00d7c84e..5a66c4392b 100644 --- a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -26,62 +26,70 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Benutzerverwaltung" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Gruppe" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Gruppen" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Name" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Benutzer" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Benutzer" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Benutzer" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Vorname" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Nachname" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "E-Mail" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "Aktiv" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Verwendbares Passwort" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Alle Gruppen." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Alle Benutzer." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "Gruppe erstellt" diff --git a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/el/LC_MESSAGES/django.mo index 83bbccdb6e..b7967c0f82 100644 Binary files a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/el/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po index 05debbbbdd..fc3cdcb7f0 100644 --- a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,62 +17,70 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Διαχείριση χρηστών" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Ομάδες" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Όνομα" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Χρήστης" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Χρήστες" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Όνομα χρήστη" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Όνομα" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Επώνυμο" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Λογαριασμός email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Έχει κωδικό ενεργοποίησης;" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Όλες οι ομάδες." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Όλοι οι χρήστες." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po index 6a2f4bc70b..cb6d0dd925 100644 --- a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,62 +18,70 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.mo index 2843350679..5757a94d01 100644 Binary files a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po index ca5229ac74..e1abe9dd16 100644 --- a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:56+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -22,62 +22,70 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Administración de usuarios" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Grupo" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupos" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nombre" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Usuario" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Usuarios" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Nombre de usuario" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Nombre de pila" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Apellido" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Correo electrónico" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "¿Está activo?" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "¿Tiene contraseña utilizable?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Todos los grupos." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Todos los usuarios." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "Grupo creado" diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo index 4cc2c66c2d..e7330472c7 100644 Binary files a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po index 75a19d34ba..a00405d7c7 100644 --- a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,62 +18,70 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "مدیریت کاربر" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "گروه" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "گروه ها" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "نام" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "کاربر" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "کاربران" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "نام کاربری" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "نام کوچک" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "نام خانوادگی" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "پست الکترونیک" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "رمز عبور قابل استفاده است؟" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "همه گروه ها." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "تمام کاربران" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo index 3d007e53ac..786157dc4c 100644 Binary files a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po index cbe88c221d..adf6644df5 100644 --- a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" @@ -24,62 +24,70 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gestion des utilisateurs" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Groupe" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Groupes" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nom" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Utilisateur" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Utilisateurs" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Identifiant" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Prénom" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Nom" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Courriel" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "Est actif?" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Possède un mot de passe utilisable ?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Tous les groupes." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Tous les utilisateurs." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "Groupe créé" @@ -300,7 +308,7 @@ msgstr "Membre des groupes : %s" msgid "" "User accounts can be create from this view. After creating a user account " "you will prompted to set a password for it. " -msgstr "" +msgstr "Les comptes d'utilisateurs peuvent être créés à partir de cette page. Après avoir créé un compte d'utilisateur, vous serez invité à définir un mot de passe pour ce compte." #: views.py:301 msgid "There are no user accounts" diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo index 5d8cdc7d84..c200b4fb92 100644 Binary files a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po index 44c2627665..0e450fbcdf 100644 --- a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" @@ -18,62 +18,70 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Felhasználó kezelés" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Csoport" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Név" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Felhasználó" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Felhasználó" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Minden csoport." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Minden felhasználó." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo index 2febbfe5ed..b1689a3994 100644 Binary files a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po index aa401a9440..efeaa434f7 100644 --- a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,62 +17,70 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Pengguna" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Surel" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.mo index 9cef1d8516..e941dd4079 100644 Binary files a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po index 25c211f5c1..9124802c91 100644 --- a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" @@ -20,62 +20,70 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gestione utenti" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Gruppi" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nome " -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Utente" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Utenti" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Nome utente" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "La password è utilizzabile?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Tutti i gruppi" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Tutti gli utenti" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.mo index 6244576b69..c949d32886 100644 Binary files a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po index 25f0e4cbb5..0cf2ca691d 100644 --- a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,62 +18,70 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Lietotāju pārvaldība" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Grupa" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupas" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nosaukums" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Lietotājs" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Lietotāji" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Lietotājvārds" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Vārds" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Uzvārds" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "E-pasts" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "Vai ir aktīvs?" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Vai ir izmantojama parole?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Visas grupas." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Visi lietotāji." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "Grupa izveidota" @@ -259,12 +267,12 @@ msgstr "Super lietotājs un personāla lietotājs dzēš nav atļauts, šajos ga #: views.py:212 #, python-format msgid "User \"%s\" deleted successfully." -msgstr "Lietotājs "%s" veiksmīgi izdzēsts." +msgstr "Lietotājs \"%s\" veiksmīgi izdzēsts." #: views.py:218 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" -msgstr "Dzēšot lietotāju "%(user)s", radās kļūda: %(error)s" +msgstr "Dzēšot lietotāju \"%(user)s\", radās kļūda: %(error)s" #: views.py:236 #, python-format @@ -295,7 +303,7 @@ msgstr "Lietotāja grupas: %s" msgid "" "User accounts can be create from this view. After creating a user account " "you will prompted to set a password for it. " -msgstr "" +msgstr "No šī skata var izveidot lietotāju kontus. Pēc lietotāja konta izveidošanas, jums tiks piedāvāts iestatīt paroli." #: views.py:301 msgid "There are no user accounts" diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo index db6d1aade6..60c75c0a06 100644 Binary files a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po index 7f4b234279..d972dc54d8 100644 --- a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -20,62 +20,70 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gebruikersbeheer" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Groepen" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Naam" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Gebruiker" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Gebruikers" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Voornaam" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Achternaam" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Heeft bruikbaar wachtwoord?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Alle groepen." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Alle gebruikers." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo index ca46b144d2..f01260fe62 100644 Binary files a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po index 926e45faa4..cdb6a62e49 100644 --- a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" @@ -21,62 +21,70 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Zarządzanie użytkownikami" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupy" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nazwa" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Użytkownik" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Użytkownicy" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Nazwa użytkownika" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Imię" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Nazwisko" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Posiada hasło?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Wszystkie grupy." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Wszyscy użytkownicy." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo index a44629a772..f98ee79772 100644 Binary files a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po index 241d937781..9db64d737d 100644 --- a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -21,62 +21,70 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gestão de utilizadores" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupos" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nome" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Utilizador" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Utilizadores" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Correio eletrónico" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Todos os grupos." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Todos os utilziadores." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo index 381a665bee..b50fa2204e 100644 Binary files a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po index b37ff67790..a407d59bb4 100644 --- a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -23,62 +23,70 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Gerenciar usuários" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupos" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nome" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Usuário" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Usuários" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Usuário" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "E-mail" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "tem senha usável?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Todos os grupos." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Todos os usuários." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo index d21673b1f8..317da6a411 100644 Binary files a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po index 9a469df557..cfe54341b8 100644 --- a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" @@ -20,62 +20,70 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Management utilizatori" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "Grup" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Grupuri" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Nume" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "utilizator" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Utilizatorii" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Nume de utilizator" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Prenume" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Numele de familie" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "Este activ?" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Are parola utilizabilă?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Toate grupurile." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Toți utilizatorii." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "Grupul a fost creat" @@ -297,7 +305,7 @@ msgstr "Grupurile utilizatorului: %s" msgid "" "User accounts can be create from this view. After creating a user account " "you will prompted to set a password for it. " -msgstr "" +msgstr "Conturile de utilizator pot fi create din această vizualizare. După crearea unui cont de utilizator, vi se va solicita să setați o parolă pentru acesta." #: views.py:301 msgid "There are no user accounts" diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo index 96d4b329eb..bcc0d3be55 100644 Binary files a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po index da048ec509..7f3ec3a188 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" @@ -18,62 +18,70 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Управление пользователями" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Группы" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Название" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Пользователь" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Пользователи" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Имя пользователя" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Есть действующий пароль?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Все группы" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Все пользователи." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo index 07f537bb65..49d73c2da5 100644 Binary files a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po index f423d3ac88..2de564fcba 100644 --- a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -17,62 +17,70 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Skupine" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Ime" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Uporabniki" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.mo index 722e696f43..ce0b2a1dce 100644 Binary files a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po index 5e141f76d6..79e273e17b 100644 --- a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -18,62 +18,70 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Kullanıcı yönetimi" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "Gruplar" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "İsim" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Kullanıcı" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "Kullanıcılar" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "Kullanıcı adı" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "Ad" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "Soyad" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "E-posta" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "Kullanılabilir şifre var mı?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "Tüm gruplar." -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "Tüm kullanıcılar." +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo index 6b5624e2fb..ff48a5eec3 100644 Binary files a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po index 86aaa37fba..9cfac6f297 100644 --- a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -18,62 +18,70 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "Quản lý người dùng" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "Tên" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "Người dùng" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "Email" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.mo index 4f536180bf..01c4e57414 100644 Binary files a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.mo and b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po index b93c3157e4..b20d30be6c 100644 --- a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-06-15 03:40-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-06-29 02:20-0400\n" +"PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -18,62 +18,70 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:78 events.py:8 permissions.py:8 +#: apps.py:82 events.py:8 permissions.py:8 msgid "User management" msgstr "用户管理" -#: apps.py:96 search.py:36 +#: apps.py:100 search.py:36 msgid "Group" msgstr "" -#: apps.py:97 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 +#: apps.py:101 links.py:41 links.py:52 links.py:75 search.py:26 views.py:120 msgid "Groups" msgstr "用户组" -#: apps.py:98 search.py:42 +#: apps.py:102 search.py:42 msgid "Name" msgstr "名称" -#: apps.py:104 models.py:18 search.py:14 +#: apps.py:108 models.py:18 search.py:14 msgid "User" msgstr "用户" -#: apps.py:105 apps.py:170 links.py:47 links.py:80 links.py:96 views.py:302 +#: apps.py:109 apps.py:174 links.py:47 links.py:80 links.py:96 views.py:302 msgid "Users" msgstr "用户" -#: apps.py:108 +#: apps.py:112 msgid "Username" msgstr "用户名" -#: apps.py:109 search.py:20 +#: apps.py:113 search.py:20 msgid "First name" msgstr "名字" -#: apps.py:110 search.py:29 +#: apps.py:114 search.py:29 msgid "Last name" msgstr "姓氏" -#: apps.py:111 search.py:23 +#: apps.py:115 search.py:23 msgid "Email" msgstr "电子邮件" -#: apps.py:112 +#: apps.py:116 msgid "Is active?" msgstr "" -#: apps.py:115 apps.py:119 +#: apps.py:119 apps.py:123 msgid "Has usable password?" msgstr "有可用的密码吗?" -#: apps.py:134 +#: apps.py:138 msgid "All the groups." msgstr "所有用户组" -#: apps.py:138 +#: apps.py:142 msgid "All the users." msgstr "所有用户" +#: dashboard_widgets.py:16 +msgid "Total users" +msgstr "" + +#: dashboard_widgets.py:32 +msgid "Total groups" +msgstr "" + #: events.py:12 msgid "Group created" msgstr "" diff --git a/mayan/settings/base.py b/mayan/settings/base.py index a362753988..4ce64295cb 100644 --- a/mayan/settings/base.py +++ b/mayan/settings/base.py @@ -360,6 +360,8 @@ else: BASE_INSTALLED_APPS = INSTALLED_APPS +COMMON_EXTRA_APPS = () +COMMON_DISABLED_APPS = () CONFIGURATION_FILEPATH = os.path.join(MEDIA_ROOT, CONFIGURATION_FILENAME) CONFIGURATION_LAST_GOOD_FILEPATH = os.path.join( @@ -378,3 +380,12 @@ for app in INSTALLED_APPS: 'Update the app references in the file config.yml as detailed ' 'in https://docs.mayan-edms.com/releases/3.2.html#backward-incompatible-changes' ) + + +for APP in COMMON_EXTRA_APPS: + INSTALLED_APPS = INSTALLED_APPS + (APP,) + + +INSTALLED_APPS = [ + APP for APP in INSTALLED_APPS if APP not in COMMON_DISABLED_APPS +]