diff --git a/HISTORY.rst b/HISTORY.rst index b77bf8ffe3..0357e47cc4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -181,7 +181,7 @@ duplicate slugs. - Add document index reset view. -3.2.11 (2019-XX-XX) +3.2.11 (2019-11-28) =================== - Backport transaction handling to document model events. - Update example LDAP authentication settings file. diff --git a/docs/releases/3.2.11.rst b/docs/releases/3.2.11.rst new file mode 100644 index 0000000000..4a18350011 --- /dev/null +++ b/docs/releases/3.2.11.rst @@ -0,0 +1,175 @@ +Version 3.2.11 +============== + +Released: November 28, 2019 + +Changes +------- + + +Checkouts +^^^^^^^^^ + +An issue with the request introspection of the API endpoint for checking in +documents was causing server internal error (HTTP 500 error) has been fixed. + + +Database integrity +^^^^^^^^^^^^^^^^^^ + +Database transaction improvements from the version 3.3 branch were backported. +Document events now trigger inside the same database transaction as document +changes. This change will ensure the expected behavior of other elements that +rely on this event even under the most heavy system loads and severe +database/network infrastructure problems. + + +Documentation +^^^^^^^^^^^^^ + +The example LDAP file was improved. This is a community contributed file and +not officially supported. For LDAP integration be sure to check and select +one of the official support and/or consultation alternatives +(https://www.mayan-edms.com/support/). + +The LDAP entry of the FAQ was expanded with user feedback. + +All the requirements to build the documentation are now generated +automatically using Mayan's internal dependency system. + +The documentation now provides a sitemap to help in indexing and searching for +information. + +A missing detail of the API integration example to upload new documents has +been added. + +The update instructions to upgrade the supervisord configuration file were +improve to work around some Linux shell differences. This makes the +instructions work for more users. + + +Permissions +^^^^^^^^^^^ + +The index create permission was removed as a possible permission to grant +for existing indexes, as this is semantically incorrect. + +An issue with reverse inheritance permission detection was fixed. It is now +possible to grant document permissions via the document type under all +situations and deployment types. + + +Statistics +^^^^^^^^^^ + +In some situations where improper horizontal scaling is used, the statistics +result model could end up with duplicate slug field entries. This field is +meant to be unique. Although this is a external issue, the situation is now +prevented by making the field unique at the database level, adding a data +migration to fix existing installations experiencing this issue, and by +adding code that will detect and self-heal future occurrences of this. + + +Other changes +^^^^^^^^^^^^^ + +The file patching code from the Dependency class to a generalized utility +of the storages app. This code is now used in several places including the +documentation global variable substitution. + + +Removals +-------- + +- None + + +Upgrading from a previous version +--------------------------------- + +If installed via Python's PIP +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Remove deprecated requirements:: + + sudo -u mayan curl https://gitlab.com/mayan-edms/mayan-edms/raw/master/removals.txt -o /tmp/removals.txt && sudo -u mayan |MAYAN_PIP_BIN| uninstall -y -r /tmp/removals.txt + +Type in the console:: + + sudo -u mayan |MAYAN_PIP_BIN| install mayan-edms==3.2.11 + +the requirements will also be updated automatically. + + +Using Git +^^^^^^^^^ + +If you installed Mayan EDMS by cloning the Git repository issue the commands:: + + $ git reset --hard HEAD + $ git pull + +otherwise download the compressed archived and uncompress it overriding the +existing installation. + +Remove deprecated requirements:: + + $ pip uninstall -y -r removals.txt + +Next upgrade/add the new requirements:: + + $ pip install --upgrade -r requirements.txt + + +Common steps +^^^^^^^^^^^^ + +Perform these steps after updating the code from either step above. + +Make a backup of your supervisord file:: + + sudo cp |MAYAN_SUPERVISOR_CONF| |MAYAN_SUPERVISOR_CONF|.bck + +Update the supervisord configuration file. Replace the environment +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:: + + sudo sh -c "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=|MAYAN_MEDIA_ROOT| \ + |MAYAN_BIN| platformtemplate supervisord > |MAYAN_SUPERVISOR_CONF|" + +Edit the supervisord configuration file and update any setting the template +generator missed:: + + sudo vi |MAYAN_SUPERVISOR_CONF| + +Migrate existing database schema with:: + + sudo -u mayan 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=|MAYAN_MEDIA_ROOT| \ + |MAYAN_BIN| performupgrade + +Add new static media:: + + sudo -u mayan MAYAN_MEDIA_ROOT=|MAYAN_MEDIA_ROOT| \ + |MAYAN_BIN| preparestatic --noinput + +The upgrade procedure is now complete. + + +Backward incompatible changes +----------------------------- + +- None + + +Bugs fixed or issues closed +--------------------------- + +- :gitlab-issue:`688` REST API: Documents are not getting checked in +- :forum-topic:`880` "permission denied" error executing post-update "Common Steps" for 3.2.6 + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 92ae66f38f..d3bc073151 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -21,6 +21,7 @@ versions of the documentation contain the release notes for any later releases. :maxdepth: 1 3.3 + 3.2.11 3.2.10 3.2.9 3.2.8 diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index 43e6c98dd0..f67a5f6557 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 9486c996a9..f8395c0389 100644 --- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-16 08:27+0000\n" "Last-Translator: Lyudmil Antonov \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 9c95a691e9..be5d809af1 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 4eb5a6f5cf..d89578da4e 100644 --- a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/cs/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-15 16:09+0000\n" "Last-Translator: Michal Švábík \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 269d79cdaa..506d465188 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 70ccab73fd..92cb06c225 100644 --- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-11-08 19:45+0000\n" "Last-Translator: Marvin Haschker \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 9fa1f454a0..d357fb34e0 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 9afdef5633..c83f5a3a5a 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 861857443e..776c75d629 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 5ec25ab70a..3400985e03 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 818aa41b69..73915ed876 100644 --- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-11-18 21:00+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/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po index daa3f32db1..4a1270d61b 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 93e9335cc3..ae58d5e1f9 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 3ffd2f5e51..b04d404a43 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-28 11:33+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/acls/locale/lv/LC_MESSAGES/django.po b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po index 00132a23f4..372251b42c 100644 --- a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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" 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 98ab9a153d..79dc2fa7e4 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 bd28c5f3db..887a57e878 100644 --- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-09-23 09:33+0000\n" "Last-Translator: Tomasz Szymanowicz \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 28c3e12bb1..f0411ab1e8 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 85a9ab9b7c..33173b314e 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-27 00:19+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo \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.po b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po index d53496584d..a7e0c4c134 100644 --- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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" diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po index af4ede30bc..0dc65fa6fa 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 6a05f8f75c..dc6ce47fee 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 7f9f781492..58676e04cd 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 f5849f492b..8ac01ba1b2 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 00f99325ec..0b0e579aee 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 e153f82f43..4c35b4ac1e 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 9c1b9a9136..0458bee0c0 100644 --- a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-11-01 17:02+0000\n" "Last-Translator: Lyudmil Antonov \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 e2119d4b60..d62e092d21 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 9b5e3c2c94..7461d4606d 100644 --- a/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 8b476c8fe5..a7a46b1d48 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 3d155c21ed..4bab667063 100644 --- a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-11-08 10:26+0000\n" "Last-Translator: Marvin Haschker \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 58980f864a..37cc7e5a94 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 c7c658e603..9281c3331a 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 7d730c2d45..45d3eec5c3 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-11-19 05:09+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 ed2510ffdd..2d56a3aba0 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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.mo b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo index 497a803855..8edc22945a 100644 Binary files a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index d132adc210..373a0a3fe1 100644 --- a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/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-11-18 22:33-0400\n" -"PO-Revision-Date: 2019-10-30 07:03+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" +"PO-Revision-Date: 2019-11-19 17:59+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" @@ -160,14 +160,14 @@ msgid "" "\n" " You can also donate directly to the creator and lead developer. %(icon_social_paypal)s\n" " " -msgstr "" +msgstr "\nVous pouvez également faire un don directement au créateur et développeur principal. %(icon_social_paypal)s" #: templates/appearance/about.html:127 msgid "" "\n" " Besides donations you can also support the project by purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario.\n" " " -msgstr "" +msgstr "\nOutre les dons, vous pouvez également soutenir le projet en achetant un exemplaire du livre \"Exploring Mayan EDMS\" de Roberto Rosario ." #: templates/appearance/about.html:133 #, python-format diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index 71c6adb658..82904b1105 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 028ff1210e..b8da20649c 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 033201dcde..2f48e6192b 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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.po b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po index abb3aabc7a..2371d3761f 100644 --- a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" 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 ed8d30f39f..cb6e006df0 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 ce433d6cda..87be10d8af 100644 --- a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 031055e1cd..5f73daf35d 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 d6bb8361cc..d7415fc584 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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.mo b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.mo index a97a3cac67..858f9f39f0 100644 Binary files a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.mo differ 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 f729f25440..86089249d9 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/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-11-18 22:33-0400\n" -"PO-Revision-Date: 2019-10-30 07:03+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" +"PO-Revision-Date: 2019-11-21 06:56+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" @@ -163,7 +163,7 @@ msgid "" "\n" " Besides donations you can also support the project by purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario.\n" " " -msgstr "" +msgstr "\nPe lângă donații, puteți susține proiectul achiziționând o copie a cărții „Exploring Mayan EDMS” de Roberto Rosario ." #: templates/appearance/about.html:133 #, python-format diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index c828f2d116..728f0b1195 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 77f9d38b25..5fac192731 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 d0ef0e3a5b..35a8d4c42a 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 b2cfe0f3b7..1430e5a18e 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 6d09fca02d..7d59f4abe1 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-11-18 22:33-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-30 07:03+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 430fac7169..dd473ff05d 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 d0650eae6d..93f2659f4c 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-16 09:44+0000\n" "Last-Translator: Lyudmil Antonov \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 7f012e4d59..b81ae40ed4 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 fef0e9e47e..1298e06ce6 100644 --- a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-15 16:23+0000\n" "Last-Translator: Michal Švábík \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 32d2e36b16..2f4eb7f6ba 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 78309cc819..ef6f778ee5 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-11-08 10:28+0000\n" "Last-Translator: Marvin Haschker \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 639cf145e7..666a43674a 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 9bda1b3d93..c0d2c48d6d 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 028b6c2ed6..8042de044a 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 ce516d47ec..5c692f070f 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 6db46cd2dc..c7fad9fc60 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-07-02 15: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/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index bd120ac22b..6912fa9b4a 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 52a58c98e2..b984a20cee 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 c6b18ab59e..84a0939262 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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.po b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po index ceb276f2c3..3268361006 100644 --- a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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" 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 5c780dbc1d..78bf042872 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 5990516156..dcfe366639 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-09-23 09:50+0000\n" "Last-Translator: Tomasz Szymanowicz \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 ccd172119d..7b378c69fb 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 8e69be88a7..9a9ab9d727 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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.po b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po index 2a02401994..e2c2df068d 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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" diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index fb50db95d5..60380f70bf 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 7eb4d1dc48..0f3a7538fb 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 d9c63ef4c5..0f00c07872 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 7749aa5ae4..9bc79061ed 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 e1e53757ff..943607fdc4 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 79517888c2..265938f3ec 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 a125a66eaa..229eb1c796 100644 --- a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Lyudmil Antonov , 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 9ea67f2575..cb51090acf 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 7a5c0157ed..ab9c8ac766 100644 --- a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" diff --git a/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po index f1753b0462..afb297332b 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 07bc8dab27..05713b723a 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 730df3fea8..4ff7c26c1d 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 19c1019991..02c7a7e5a7 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 8d9675ca64..6fedb07c6d 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 36b5caf711..c6fa289592 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 61822e6ead..c2fb66c6aa 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 61572e56f9..284b16d27d 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 f71ec810a8..bb997f2c73 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 4c9ff6be4e..cef360fba2 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 5ffe352627..5463406433 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 d35d131303..018946ab60 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 38ef871208..da2bf9e51b 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 6cfef096b1..5ded38134f 100644 --- a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Tomasz Szymanowicz , 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 be7dda07fa..1d5d85d703 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 d17f50ee9b..28051132b8 100644 --- a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt_BR/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 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 69747e1e85..eadff10ce5 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 fe7091c870..5ff6995a84 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 e757bfabe4..042d7572e8 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 c86e27ac37..b872182d8f 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 83cca9ab6c..7da3da64a1 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 7a69fe5e42..c483a02d7c 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 17ef966218..26e716d876 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 bddd3c5e33..47eb4dd446 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 399e0f8ec5..08b202db62 100644 --- a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bg/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Lyudmil Antonov , 2019\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 189ed63e43..c938819a95 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 541d27eb6b..d0e08932b5 100644 --- a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/cs/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Michal Švábík , 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 7b6c5e0a83..f122fdb0b7 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 dccf867b08..bd571c6b56 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 22e1907d45..c45a30af10 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 09ffb28fd0..01ff0246b4 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 e781a33cb6..2d79b3817a 100644 --- a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: jmcainzos , 2019\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 af38d2bc1e..681a401956 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 500d91cb4d..1269c43093 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 824b9089eb..b27bbf995c 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 757c9eae8e..ac29a99342 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 3027e308d9..130322c180 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 dc7f748eb2..3094218f65 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 8e1981483d..087ed443b4 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 b4d576faed..16fda9b0f9 100644 --- a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Tomasz Szymanowicz , 2019\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 cb505372df..60da71a6bb 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 55e011e16f..77d0400589 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 42ef64df18..6c0171d394 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 6c283658e4..818ce8ec82 100644 --- a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ru/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Daler Abdulloev , 2019\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 0085035c79..1b0d25ce9f 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 93d8235d0b..7d41d4ef3d 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 3651ad1e59..1af3d13967 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 fe46ca0028..dee04b4a16 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 90745d829c..b105dc0e35 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 6b8c9d74ec..0db771651c 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-16 11:41+0000\n" "Last-Translator: Lyudmil Antonov \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 7db37a9cdf..3a201b8011 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 c69bc114ca..a24300a44e 100644 --- a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-21 09:57+0000\n" "Last-Translator: Michal Švábík \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 5b50293e29..9723b0c206 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 d693a73886..959b2daf50 100644 --- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-11-08 10:29+0000\n" "Last-Translator: Marvin Haschker \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 a5b03721f9..fb26741534 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 87e27cfc03..744c624a93 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-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 1e071aad36..83cba2aec3 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-09-24 21:04+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 fe000060c1..a5a8f6900d 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 0af29e88d5..ffd200c4a2 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-11-18 20:29+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 3010fd8a3f..247fd068d3 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 911b8f9a93..7a3b00a11d 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po index 7928153d4d..879fb49cf8 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 0d827eaacf..eb449bea9f 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\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 187b469f2f..d687a6f99f 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 a22098ef56..11e96a7be2 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-09-23 09:57+0000\n" "Last-Translator: Tomasz Szymanowicz \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 00b911ddb6..d5730ddbc8 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 e4ecd51ac4..3eeff7cccd 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-10-16 16:50+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo \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 8926c02418..ef905afc19 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-09-03 08:31+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 54fa7fb052..72fe9b7bce 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 acaef344b6..bb64286d66 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 76933e70a3..1a98a196d8 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 353953d65b..b205e364b9 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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 c65994b07b..e7dda47d45 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:12-0400\n" "PO-Revision-Date: 2019-08-26 01:01+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/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index fa98d32670..b9497f6ae0 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -30,19 +30,19 @@ msgstr "" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo index c1dbc1e021..5ee2c551ac 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 44e0ee0908..c569a6188b 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bg/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-11-18 22:34-0400\n" -"PO-Revision-Date: 2019-11-19 02:40+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" +"PO-Revision-Date: 2019-11-22 13:10+0000\n" +"Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,19 +31,19 @@ msgstr "Налични характеристики: \n" msgid "Available fields: \n" msgstr "Налични полета: \n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "Използва се за разрешаване на офлайн превод на текстови низове в код." -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "Осигурява проверка на стила." -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "Команден ред с автоматично довършване." -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "Проверява правилното форматиране на файла README." @@ -126,7 +126,7 @@ msgstr "Относно това" #: links.py:39 msgid "Get the book" -msgstr "" +msgstr "Вземете книгата" #: links.py:44 msgid "Locale profile" 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 75dd9c01d7..e5c572ccf4 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -31,19 +31,19 @@ msgstr "Raspoloživi atributi:\n" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po index 16d8bab414..bdb72f790a 100644 --- a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -30,19 +30,19 @@ msgstr "Dostupné atributy:\n" msgid "Available fields: \n" msgstr "Dostupná pole:\n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "Poskytuje kontrolu stylu." -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "Prostředí příkazového řádku s automatickým dokončováním." -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "Zkontroluje správné formátování souboru README." 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 62ee232231..f560352fc6 100644 --- a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -29,19 +29,19 @@ msgstr "" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" 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 08725e28d0..09a86b8afb 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -39,19 +39,19 @@ msgstr "Verfügbare Attribute:\n" msgid "Available fields: \n" msgstr "Verfügbare Felder:\n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "Ermöglicht die Offline Übersetzung von Zeichenketten im Code." -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "Ermöglicht Stilüberprüfung." -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "Kommandozeilenumgebung mit Autovervollständigung." -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "Überprüft die korrekte Formatierung der README-Datei." diff --git a/mayan/apps/common/locale/el/LC_MESSAGES/django.po b/mayan/apps/common/locale/el/LC_MESSAGES/django.po index bb9b8e3160..d6bd3b837a 100644 --- a/mayan/apps/common/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -29,19 +29,19 @@ msgstr "Διαθέσημα χαρκτηριστικά:\n" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.po b/mayan/apps/common/locale/en/LC_MESSAGES/django.po index f8032a72e7..74f74c08c7 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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,19 +29,19 @@ msgstr "" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index 35d5de77e3..98cc63200a 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 05:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -33,19 +33,19 @@ msgstr "Atributos disponibles:\n" msgid "Available fields: \n" msgstr "Campos disponibles:\n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "Se utiliza para permitir la traducción sin conexión de los textos del código." -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "Proporciona la comprobación de estilo." -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "Entorno de línea de comandos con autocompletado." -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "Comprueba el formato correcto del archivo README." diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po index 4e44c9e60d..5c20b9825a 100644 --- a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -31,19 +31,19 @@ msgstr "ویژگی های موجود:\n" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo index 065a2f4db1..89338c96e6 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 c058fd65e8..3a5c654f9c 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fr/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-11-18 22:34-0400\n" -"PO-Revision-Date: 2019-11-19 02:40+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" +"PO-Revision-Date: 2019-11-27 00:54+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" @@ -38,19 +38,19 @@ msgstr "Attributs disponibles: \n" msgid "Available fields: \n" msgstr "Champs disponibles: \n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "Utilisé pour permettre la traduction hors ligne des chaînes de texte du code." -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "Fournit une vérification de style." -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "Environnement de ligne de commande avec autocomplétion." -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "Vérifie le formatage du fichier README." @@ -67,14 +67,14 @@ msgid "" "Select entries to be removed. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" +msgstr "Sélectionnez les entrées à supprimer. Maintenez la commande enfoncée pour sélectionner plusieurs entrées. Une fois la sélection terminée, cliquez sur le bouton ci-dessous ou double-cliquez sur la liste pour activer l'action." #: generics.py:154 msgid "" "Select entries to be added. Hold Control to select multiple entries. Once " "the selection is complete, click the button below or double click the list " "to activate the action." -msgstr "" +msgstr "Sélectionnez les entrées à ajouter. Maintenez la commande enfoncée pour sélectionner plusieurs entrées. Une fois la sélection terminée, cliquez sur le bouton ci-dessous ou double-cliquez sur la liste pour activer l'action." #: generics.py:287 msgid "Add all" @@ -133,7 +133,7 @@ msgstr "À propos de" #: links.py:39 msgid "Get the book" -msgstr "" +msgstr "Obtenez le livre" #: links.py:44 msgid "Locale profile" @@ -182,7 +182,7 @@ msgstr "Outils" #: literals.py:13 msgid "" "This feature has been deprecated and will be removed in a future version." -msgstr "" +msgstr "Cette fonctionnalité n'est plus utilisée et sera supprimée dans une version ultérieure." #: literals.py:16 msgid "" @@ -223,7 +223,7 @@ msgstr "" msgid "" "Force the conversion of the database even if the receiving database is not " "empty." -msgstr "" +msgstr "Forcer la conversion de la base de données même si la base de données distante n'est pas vide." #: menus.py:10 msgid "System" @@ -356,7 +356,7 @@ msgstr "" #: settings.py:61 msgid "The number objects that will be displayed per page." -msgstr "" +msgstr "Le nombre d'objets qui seront affichés par page." #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index fee9d9c70e..21ef452846 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -30,19 +30,19 @@ msgstr "Rendelkezésre álló paraméterek:\n" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index 6a2e984834..9bb144488c 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -29,19 +29,19 @@ msgstr "" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index ecb19fdd66..e3f47c1c94 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -35,19 +35,19 @@ msgstr "Attributi disponibili:\n" msgid "Available fields: \n" msgstr "Campi disponibili:\n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "Usato per consentire la traduzione offline delle stringhe di testo nel codice." -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "Ambiente a riga di comando con autocompletamento." -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "Controlla la corretta formattazione del file README." diff --git a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po b/mayan/apps/common/locale/lv/LC_MESSAGES/django.po index 79c6bb0fe3..a7ddb7470a 100644 --- a/mayan/apps/common/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -30,19 +30,19 @@ msgstr "Pieejamie atribūti: \n" msgid "Available fields: \n" msgstr "Pieejamie lauki: \n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "Izmantots, lai atļautu koda teksta virkņu bezsaistes tulkojumu." -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "Nodrošina stila pārbaudi." -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "Komandrindas vide ar automātisko aizpildi." -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "Pārbauda README faila pareizu formatēšanu." 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 1ad9fc3326..6b89961701 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -32,19 +32,19 @@ msgstr "" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po index e46edf3753..2fb8392c91 100644 --- a/mayan/apps/common/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pl/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -38,19 +38,19 @@ msgstr "Dostępne atrybuty: \n" msgid "Available fields: \n" msgstr "Dostępne pola:\n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "Służy do umożliwienia tłumaczenia ciągów tekstowych kodu w trybie offline." -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "Zapewnia kontrolę stylu." -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "Środowisko wiersza poleceń z funkcją autouzupełniania." -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "Sprawdza poprawność formatowania pliku README." diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index a86c164d05..66eaf93810 100644 --- a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -32,19 +32,19 @@ msgstr "" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" 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 d1e931374e..dc6d9e2b4c 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -35,19 +35,19 @@ msgstr "Atributos disponíveis:\n" msgid "Available fields: \n" msgstr "Campos disponíveis:\n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" 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 3070b65308..22970a1ae6 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 b0f27249e4..db2e9cb8a6 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" -"PO-Revision-Date: 2019-11-19 02:40+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" +"PO-Revision-Date: 2019-11-21 06:56+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" @@ -31,19 +31,19 @@ msgstr "Atributele disponibile:\n" msgid "Available fields: \n" msgstr "Câmpuri disponibile:\n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "Folosit pentru a permite traducerea offline a șirurilor de text cod." -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "Oferă verificarea stilului." -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "Mediul liniei de comandă cu autocompletare." -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "Verifică formatarea corectă a fișierului README." @@ -126,7 +126,7 @@ msgstr "Despre asta" #: links.py:39 msgid "Get the book" -msgstr "" +msgstr "Obțineți cartea" #: links.py:44 msgid "Locale profile" diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po index 2ed77740f4..ceb182a88e 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -31,19 +31,19 @@ msgstr "Доступные атрибуты:\n" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" 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 43eeac4f0a..0f7631284b 100644 --- a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -29,19 +29,19 @@ msgstr "" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" 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 40971f89ac..a5db648e7c 100644 --- a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -31,19 +31,19 @@ msgstr "Kullanılabilir özellikler:\n" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" 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 2615c1eb89..20f9f5f4f2 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -30,19 +30,19 @@ msgstr "" msgid "Available fields: \n" msgstr "" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po index 4febbd4ed6..6fe7cbfb63 100644 --- a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/common/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-11-18 22:34-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -30,19 +30,19 @@ msgstr "可用属性:\n" msgid "Available fields: \n" msgstr "可用字段:\n" -#: dependencies.py:306 +#: dependencies.py:308 msgid "Used to allow offline translation of the code text strings." msgstr "" -#: dependencies.py:311 +#: dependencies.py:313 msgid "Provides style checking." msgstr "" -#: dependencies.py:316 +#: dependencies.py:318 msgid "Command line environment with autocompletion." msgstr "" -#: dependencies.py:321 +#: dependencies.py:323 msgid "Checks proper formatting of the README file." msgstr "" diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po index 5272ce8c7b..d6accc7d58 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 f87e77c137..bb76bbe3f9 100644 --- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bg/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-10-16 14:15+0000\n" "Last-Translator: Lyudmil Antonov \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 d877c1ecca..b9a079bc3f 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 f79abc8c69..4bc136b6de 100644 --- a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-10-15 16:46+0000\n" "Last-Translator: Michal Švábík \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 e1df44f460..b2d8b59f55 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 2cd49463c5..e2167018ed 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 e9a55390fb..c5abecab59 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 d464cc0460..0f5e436465 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 31dd514760..e5b391a225 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 a7540bc827..68afbe367f 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 a6875f6bef..d4a009aaad 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 62d961ee63..c6d3c6ec39 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 bb5f9a2cc9..3e980f5741 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 310eb6e537..dd89382ab9 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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.po b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po index 82b87a8794..d498cf721a 100644 --- a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/converter/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" 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 25341b5233..c6d09205d1 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 3629bdd2dd..7273c3ffb7 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 4c0c0b610c..4b4132c5fe 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 39a7da4a50..9502ac1a3b 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 c8a66e9a47..d55e733d21 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 2c39f50699..8913c73c38 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 783a5ccbd5..15f324d5a9 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 4105919009..114e334568 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 041663216b..bd266310c6 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 56ada28d9d..54038da8d2 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 bb99671732..3c232aaade 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 f8335484ed..77cae2d8c8 100644 --- a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Lyudmil Antonov , 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 a95456d51b..5ee910feff 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 c1d28d3a1f..ddee614087 100644 --- a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\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 582844c138..f007d82e3e 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 9808fe345f..09557805b7 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 5029c37248..315a11c68a 100644 --- a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: UE4 Hobbyist, 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 b39551ea53..201c908ac4 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 8f3b468d08..ae36036638 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 ccdb45ac6a..e0820be755 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 fb9ad56bac..e33ff87d79 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 98e14cfdc4..a192b6a82f 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 e213898def..f93d7f7961 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 af677cb5d6..da93d71687 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 f8f4babab7..e60e304390 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 f01a06e336..d6218e2c08 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 a171a8c778..793a6ffd2c 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 03b8ac90da..c750f2d504 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 c461856104..fb6d80fb22 100644 --- a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 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 08d4b52ef3..e2a19aa684 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 2854300f87..4498541ece 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 4cafb02dd1..d88abddd04 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 cfecaaf514..6d9fd5c2df 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 fcda7a3ab5..6a216e7808 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 c759b1c962..98bfb1f6f3 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 5262f76351..237943dc21 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -39,11 +39,11 @@ msgstr "" msgid "Description" msgstr "Description" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "النوع" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -51,185 +51,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "الاصدار" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "اسم" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "لا شيء" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.mo index 544f6d1854..b8ff582990 100644 Binary files a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po index fcd3797908..c1b96b2487 100644 --- a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bg/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" @@ -40,11 +40,11 @@ msgstr "Вътрешно име" msgid "Description" msgstr "Описание" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Тип" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "Други данни" @@ -52,19 +52,19 @@ msgstr "Други данни" msgid "Declared by" msgstr "Декларирано от" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Версия" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "Среда" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "Проверка" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -72,11 +72,11 @@ msgstr "" "Среда, използвана за изграждане на дистрибуторски пакети на софтуера. " "Крайните потребители могат да игнорират липсващите зависимости в тази среда." -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "Конструкция" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -84,11 +84,21 @@ msgstr "" "Среда, използвана от разработчиците за извършване на промени в кода. " "Крайните потребители могат да игнорират липсващите зависимости в тази среда." -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "Разработка" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Документация" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -96,11 +106,11 @@ msgstr "" "Нормална среда за крайните потребители. Липсваща зависимост в тази среда ще " "доведе до проблеми и грешки при нормална употреба." -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "Производство" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -110,69 +120,69 @@ msgstr "" "Зависимостите в тази среда не са необходими за нормалното използване в " "производството." -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "Тестване" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Име" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "Приложение" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "Трябва да посочите поне едно: app_label или модул." -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Зависимостта „%s“ вече е регистрирана." -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "Инсталиране на пакет: %s ..." -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "Вече е инсталирано." -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "Завършено." -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "Инсталирана е правилна версия" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "Липсваща или неправилна версия" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Няма" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "Не е конкретизирано" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "Пачване на файлове ..." -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "Изпълними файлове, които се извикват директно от кода." -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "Двоичен файл" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -180,51 +190,51 @@ msgstr "" "JavaScript библиотеките са изтеглени от регистъра на NPM и са използвани за " "функционалност на интерфейса." -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "Изтегля се ..." -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "Проверява се ..." -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "Извличане ..." -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "Пакети Python, изтеглени от PyPI." -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "Python" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Шрифтове, изтеглени от fonts.googleapis.com." -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "Google шрифт" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "Декларирано в приложение" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "Показване зависимостите от приложението, което ги е декларирало." -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Клас" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -232,11 +242,11 @@ msgstr "" "Покажете различните класове на зависимости. Класовете обикновено се разделят" " по език или файлови типове на зависимостта." -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "Състояние" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -246,7 +256,7 @@ msgstr "" "зависимостите са инсталирани и са с правилна версия. Грешно означава, че " "зависимостите липсват или е налице неправилна версия." -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." @@ -316,6 +326,8 @@ msgid "" "Unexpected error trying to determine the latest version available. Make sure" " your installation has a connection to the internet; %s" msgstr "" +"Неочаквана грешка при опит да се определи най-новата налична версия. Уверете" +" се, че вашата инсталация има връзка с интернет; %s" #: views.py:38 msgid "Your version is up-to-date." diff --git a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.mo index 56711860e4..931f5b5b1e 100644 Binary files a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.mo differ 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 24cb49ac11..5e1e2064ed 100644 --- a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po @@ -5,17 +5,17 @@ # # Translators: # www.ping.ba , 2019 -# Atdhe Tabaku , 2019 # Roberto Rosario, 2019 +# Atdhe Tabaku , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: Roberto Rosario, 2019\n" +"Last-Translator: Atdhe Tabaku , 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,11 +39,11 @@ msgstr "Interno ime" msgid "Description" msgstr "Opis" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Tip" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -51,185 +51,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Verzija" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Dokumentacija" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Ime" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Nijedno" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Klasa" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.mo index 769ddf9ae8..ae5386b0cd 100644 Binary files a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po index 680ca5271e..045a23c99d 100644 --- a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" @@ -38,11 +38,11 @@ msgstr "Vnitřní název" msgid "Description" msgstr "Popis" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Typ" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "Další údaje" @@ -50,19 +50,19 @@ msgstr "Další údaje" msgid "Declared by" msgstr "Deklarováno uživatelem" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Verze" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "Prostředí" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "Kontrola" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -70,11 +70,11 @@ msgstr "" "Prostředí používané k vytváření distribuovatelných balíčků softwaru. Koncoví" " uživatelé mohou v tomto prostředí ignorovat chybějící závislosti." -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "Sestavení" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -82,11 +82,21 @@ msgstr "" "Prostředí používané pro vývojáře k provádění změn kódu. Koncoví uživatelé " "mohou v tomto prostředí ignorovat chybějící závislosti." -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "Vývoj" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Dokumentace" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -94,11 +104,11 @@ msgstr "" "Normální prostředí pro koncové uživatele. Chybějící závislost v tomto " "prostředí bude mít za následek problémy a chyby při běžném používání." -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "Produkce" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -108,69 +118,69 @@ msgstr "" "kódu. Závislosti v tomto prostředí nejsou nutné pro normální využití v " "produkčním prostředí." -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "Testování" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "název" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "Aplikace" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "Je třeba zadat alespoň jeden: app_label nebo modul." -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Závislost \"%s\" je již zaregistrována." -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "Instalace balíčku: %s ..." -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "Už nainstalováno." -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "Kompletní." -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "Nainstalovaná správná verze" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "Chybějící nebo nesprávná verze" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Žádný" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "Nespecifikováno" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "Opravné soubory ..." -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "Spustitelné soubory, které jsou volány přímo kódem." -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "Binární" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -178,51 +188,51 @@ msgstr "" "Knihovny JavaScriptu stažené z registru NPM a použily se pro front-end " "funkce." -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "Stahování ..." -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "Ověření ..." -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "Probíhá extrakce ..." -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "Python balíčky stažené z PyPI." -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "Python" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Fonty stažené z fonts.googleapis.com." -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "Písmo Google" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "Deklarováno v aplikaci" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "Zobrazit závislosti podle aplikace, která je deklarovala." -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Třída" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -230,11 +240,11 @@ msgstr "" "Zobrazit různé třídy závislostí. Třídy jsou obvykle rozděleny podle jazyka " "nebo typu souboru závislosti." -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "Stav" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -244,7 +254,7 @@ msgstr "" "závislosti a mají správnou verzi. False znamená, že chybí závislosti nebo je" " přítomna nesprávná verze." -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." 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 7839a71573..e5c6271fef 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -37,11 +37,11 @@ msgstr "" msgid "Description" msgstr "Beskrivelse" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Type" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -49,185 +49,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Version" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Navn" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Ingen" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.mo index 18f42946ec..88c73bb934 100644 Binary files a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.mo differ 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 6123766a41..73ccc18e2e 100644 --- a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.po @@ -9,15 +9,16 @@ # Felix , 2019 # Mathias Behrle , 2019 # Marvin Haschker , 2019 +# Jesaja Everling , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: Marvin Haschker , 2019\n" +"Last-Translator: Jesaja Everling , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,11 +42,11 @@ msgstr "Interner Name" msgid "Description" msgstr "Beschreibung" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Typ" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "Andere Daten" @@ -53,19 +54,19 @@ msgstr "Andere Daten" msgid "Declared by" msgstr "Deklariert von" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Version" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "Umgebung" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "Überprüfen" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -73,11 +74,11 @@ msgstr "" "Umgebung, in der installierbare Pakete der Software erstellt werden können. " "Endbenutzer können fehlende Abhängigkeiten in dieser Umgebung ignorieren." -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "Build" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -85,11 +86,21 @@ msgstr "" "Umgebung für Entwickler. Endbenutzer können fehlende Abhängigkeiten in " "dieser Umgebung ignorieren." -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "Entwicklung" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Dokumentation" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -97,11 +108,11 @@ msgstr "" "Normale Umgebung für Endbenutzer. Fehlende Abhängigkeiten werden in dieser " "Umgebung Fehler im normalen Gebrauch verursachen." -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "Produktion" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -111,70 +122,70 @@ msgstr "" "Abhängigkeiten dieser Umgebung werden nicht im normalen Produktivbetrieb " "benötigt." -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "Testing" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Name" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "App" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" "Es muss wenigstens eines von beiden angegeben werden: app_label oder Modul." -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Abhängigkeit \"%s\" bereits registriert." -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "Installiere Paket: %s... " -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "Bereits installiert." -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "Vollständig." -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "Installierte und korrekte Version" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "Fehlende oder inkorrekte Version" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Keine" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "Nicht spezifiziert" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "Dateien werden gepatcht ..." -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "Programme, die direkt durch den Code aufgerufen werden." -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "Binärdatei" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -182,51 +193,51 @@ msgstr "" "JavaScript Bibliotheken, die aus der NPM Registry heruntergeladen werden und" " für die Front-End-Funktionalität benötigt werden." -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "Herunterladen..." -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "Verifizieren..." -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "Entpacken..." -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "Pythonpakete, die von PyPI heruntergeladen werden." -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "Python" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Von fonts.googleapis.com heruntergeladene Schriftarten." -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "Google-Schriftart" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "In App deklariert" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "Abhängigkeiten nach der deklarierenden App anzeigen." -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Klasse" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -234,11 +245,11 @@ msgstr "" "Unterschiedliche Klassen von Abhängigkeiten anzeigen. Klassen sind " "üblicherweise unterteilt nach Sprache oder Dateityp der Abhängigkeit." -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "Status" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -249,7 +260,7 @@ msgstr "" "False (Falsch) bedeutet eine fehlende oder inkorrekte Version der " "Abhängigkeit." -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.mo index 1fb50cdc6b..aef65427cd 100644 Binary files a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po index 640fdd46ab..cfe092fc7d 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -37,11 +37,11 @@ msgstr "Εσωτερικό όνομα" msgid "Description" msgstr "Περιγραφή" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Τύπος" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -49,185 +49,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Έκδοση" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Τεκμηρίωση" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Όνομα" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Κανένα" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po index b0f226ecd4..95a78b42fb 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,11 +33,11 @@ msgstr "" msgid "Description" msgstr "" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -45,185 +45,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end " "functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.mo index f33cfa3911..796159b4fc 100644 Binary files a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po index f3166b48fc..171f0acac0 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -39,11 +39,11 @@ msgstr "Nombre interno" msgid "Description" msgstr "Descripción" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Tipo" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "Otros datos" @@ -51,19 +51,19 @@ msgstr "Otros datos" msgid "Declared by" msgstr "Declarado por" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Versión" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "Ambiente" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "Comprobar" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -72,11 +72,11 @@ msgstr "" "software. Los usuarios finales pueden ignorar las dependencias que faltan en" " este entorno." -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "Construir" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -85,11 +85,23 @@ msgstr "" "Los usuarios finales pueden ignorar las dependencias que faltan en este " "entorno." -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "Desarrollo" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" +"Entorno utilizado para construir la documentación. Los usuarios finales " +"pueden ignorar las dependencias que faltan en este entorno." + +#: classes.py:83 +msgid "Documentation" +msgstr "Documentación" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -97,11 +109,11 @@ msgstr "" "Ambiente normal para usuarios finales. Una dependencia que falta en este " "entorno dará lugar a problemas y errores durante el uso normal." -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "Producción" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -111,69 +123,69 @@ msgstr "" "funcionalidad del código. Las dependencias en este entorno no son necesarias" " para el uso normal de producción." -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "Pruebas" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Nombre" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "Aplicación" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "Es necesario especificar al menos uno: app_label o módulo." -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Dependencia \"%s\" ya registrada." -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "Instalando el paquete: %s ..." -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "Ya instalado." -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "Completado." -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "Versión instalada y correcta." -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "Versión faltante o incorrecta" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Ninguno" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "No especificado" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "Parcheando archivos..." -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "Ejecutables que son llamados directamente por el código." -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "Binario" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -181,51 +193,51 @@ msgstr "" "Las librerias de JavaScript descargadas el registro de NPM y utilizadas para" " la funcionalidad de front-end." -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "Descargando ..." -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "Verificando ..." -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "Extrayendo ..." -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "Paquetes de Python descargados desde PyPI." -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "Pitón" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Fuentes descargadas de fonts.googleapis.com." -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "Fuente de Google" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "Declarado en la aplicación" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "Mostrar dependencias por la aplicación que las declaró." -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Clase" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -233,11 +245,11 @@ msgstr "" "Mostrar las diferentes clases de dependencias. Las clases generalmente se " "dividen por lenguaje o por los tipos de archivos de la dependencia." -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "Estado" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -247,7 +259,7 @@ msgstr "" " las dependencias están instaladas y son de una versión correcta. \"Falso\" " "significa que faltan las dependencias o que existe una versión incorrecta." -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.mo index 47d09ad509..7c497b11eb 100644 Binary files a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po index 9b6f0dc8b0..9cc46ea0df 100644 --- a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po @@ -4,17 +4,17 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Mehdi Amani , 2019 # Roberto Rosario, 2019 +# Mehdi Amani , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: Roberto Rosario, 2019\n" +"Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,11 +38,11 @@ msgstr "نام داخلی" msgid "Description" msgstr "توضیحات" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "نوع" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -50,185 +50,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "نسخه" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "مستندات" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "نام" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "هیچ یک" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "کلاس" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.mo index f6d0b79553..c928417a94 100644 Binary files a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po index f838158283..23e337c396 100644 --- a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po @@ -7,17 +7,17 @@ # Roberto Rosario, 2019 # Thierry Schott , 2019 # Yves Dubois , 2019 -# Christophe CHAUVET , 2019 # Frédéric Sheedy , 2019 +# Christophe CHAUVET , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: Frédéric Sheedy , 2019\n" +"Last-Translator: Christophe CHAUVET , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,11 +41,11 @@ msgstr "Nom interne" msgid "Description" msgstr "Description" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Type" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "Autre données" @@ -53,29 +53,29 @@ msgstr "Autre données" msgid "Declared by" msgstr "Déclaré par" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Version" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "Environnement" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "Vérifier" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "Build" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -84,11 +84,21 @@ msgstr "" "utilisateurs finaux peuvent ignorer les dépendances manquantes dans cet " "environnement." -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "Développement" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Documentation" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -97,11 +107,11 @@ msgstr "" "dans cet environnement entraînera des problèmes et des erreurs lors d'une " "utilisation normale." -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "Production" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -111,69 +121,69 @@ msgstr "" "la fonctionnalité du code. Les dépendances dans cet environnement ne sont " "pas nécessaires pour une utilisation normale en production." -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "Test" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Nom" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "App" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "Besoin de spécifier au moins un: app_label ou module." -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "La dépendance \"%s\" est déjà enregistrée." -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "Installation du paquet: %s ..." -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "Déjà installé." -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "Complété." -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "Version installée et correcte" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "Version manquante ou incorrecte" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Aucun" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "Non spécifié" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "Modification des fichiers ..." -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "Des exécutables appelés directement par le code." -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "Binaire" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -181,68 +191,68 @@ msgstr "" "Les bibliothèques JavaScript sont téléchargées à partir du NPM et utilisé " "pour les fonctionnalités front-end." -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "Téléchargement ..." -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "Vérification ..." -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "Extraction ..." -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "Paquets Python téléchargés depuis PyPI." -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "Python" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Polices téléchargées à partir de fonts.googleapis.com." -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "Google Font" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "Déclaré dans l'application" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "Afficher les dépendances par l'application qui les a déclarées." -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Classe" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "État" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po index f85a1867cd..9d4d1b3b91 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -38,11 +38,11 @@ msgstr "" msgid "Description" msgstr "Leírás" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Típus" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -50,185 +50,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Verzió" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Név" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Semmi" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Osztály" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po index cf331c99ef..0a5ac83cad 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -38,11 +38,11 @@ msgstr "Nama internal" msgid "Description" msgstr "Deskripsi" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Tipe" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -50,185 +50,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Nihil" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.mo index d024276827..fb4aef56e7 100644 Binary files a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po index 9306a80d37..a645a2cedc 100644 --- a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po @@ -6,17 +6,17 @@ # Translators: # Roberto Rosario, 2019 # Pierpaolo Baldan , 2019 -# Marco Camplese , 2019 # Giovanni Tricarico , 2019 +# Marco Camplese , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: Giovanni Tricarico , 2019\n" +"Last-Translator: Marco Camplese , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,11 +40,11 @@ msgstr "Nome interno" msgid "Description" msgstr "Descrizione " -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Tipo" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -52,185 +52,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Versione" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Documentazione" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Nome " -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Nessuno" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Classe" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.mo index 5571d652ae..b507d5d5c6 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 11d5505d27..942d39709d 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -37,11 +37,11 @@ msgstr "Iekšējais nosaukums" msgid "Description" msgstr "Apraksts" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Tips" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "Citi dati" @@ -49,19 +49,19 @@ msgstr "Citi dati" msgid "Declared by" msgstr "Deklarēja" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Versija" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "Vide" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "Pārbaudiet" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -69,11 +69,11 @@ 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:70 +#: classes.py:71 msgid "Build" msgstr "Būvēt" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -81,11 +81,21 @@ 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:76 +#: classes.py:77 msgid "Development" msgstr "Attīstība" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Dokumentācija" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -93,11 +103,11 @@ 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:82 +#: classes.py:89 msgid "Production" msgstr "Ražošana" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -107,69 +117,69 @@ msgstr "" "funkcionalitāti. Atšķirības šajā vidē nav nepieciešamas normālai ražošanas " "izmantošanai." -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "Testēšana" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Nosaukums" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "App" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "Nepieciešams norādīt vismaz vienu: app_label vai moduli." -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Atkarība \"%s\" jau ir reģistrēta." -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "Pakotnes instalēšana: %s ..." -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "Jau instalēta." -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "Pabeigts." -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "Instalēta un pareiza versija" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "Trūkst vai ir nepareiza versija" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Nav neviens" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "Nav precizēts" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "Notiek failu lāpīšana ..." -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "Izpildāms, ko tieši sauc par kodu." -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "Binārs" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -177,51 +187,51 @@ msgstr "" "JavaScript bibliotēkas lejupielādēja no NPM reģistra un tika izmantotas " "front-end funkcionalitātei." -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "Notiek lejupielāde ..." -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "Verificēšana ..." -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "Izvilkšana ..." -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "Python paketes lejupielādētas no PyPI." -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "Python" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Fonti, kas lejupielādēti no fonts.googleapis.com." -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "Google fonti" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "Paziņots lietotnē" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "Rādīt atkarības pēc lietotnēm, kas tās deklarēja." -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Klase" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -229,11 +239,11 @@ msgstr "" "Rādīt dažādu atkarību klases. Klases parasti tiek sadalītas pēc valodas vai " "atkarības faila veidiem." -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "Valsts" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -242,7 +252,7 @@ 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:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." 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 b5b685beb2..021bd11011 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -39,11 +39,11 @@ msgstr "" msgid "Description" msgstr "Omschrijving" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Soort" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -51,185 +51,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Versie" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Naam" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Geen" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Klasse" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.mo index 0b4756c0c1..d598690fb6 100644 Binary files a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po index be1ac091b9..9412ff17e7 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -40,11 +40,11 @@ msgstr "Nazwa wewnętrzna" msgid "Description" msgstr "Opis" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Typ" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -52,185 +52,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Wersja" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Dokumentacja" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Nazwa" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Brak" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Klasa" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po index c0a78f8fa2..afa1aa5d49 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -39,11 +39,11 @@ msgstr "" msgid "Description" msgstr "Descrição" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -51,185 +51,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Versão" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Nome" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Nenhum" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.mo index e707e66fe9..3c41bc367f 100644 Binary files a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.mo differ 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 34d698609e..412a9131a2 100644 --- a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po @@ -8,15 +8,16 @@ # Aline Freitas , 2019 # José Samuel Facundo da Silva , 2019 # Roberto Rosario, 2019 +# Jadson Ribeiro , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: Roberto Rosario, 2019\n" +"Last-Translator: Jadson Ribeiro , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,11 +41,11 @@ msgstr "Nome interno" msgid "Description" msgstr "Descrição" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Tipo" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -52,185 +53,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Versão" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Documentação" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Nome" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Nenhum" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "classe" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." 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 025d8e3c06..2a5d378170 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 8fbfe9a39c..9f27e2552d 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -40,11 +40,11 @@ msgstr "Nume intern" msgid "Description" msgstr "Descriere" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Tip" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "Alte date" @@ -52,19 +52,19 @@ msgstr "Alte date" msgid "Declared by" msgstr "Declarată de" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Versiune" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "Mediu inconjurator" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "Verificare" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -72,11 +72,11 @@ msgstr "" "Mediul utilizat pentru a construi pachete distribuite ale software-ului. " "Utilizatorii finali pot ignora dependențele care lipsesc în acest mediu." -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "Build" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -84,11 +84,21 @@ 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:76 +#: classes.py:77 msgid "Development" msgstr "Dezvoltare" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Documentație" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -96,11 +106,11 @@ 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:82 +#: classes.py:89 msgid "Production" msgstr "Producție" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -110,69 +120,69 @@ msgstr "" "codului. Dependențele în acest mediu nu sunt necesare pentru utilizarea " "normală în producție." -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "Testare" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Nume" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "App" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "Trebuie să specificați cel puțin una: app_label sau modul." -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Dependența \"%s\" deja înregistrată." -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "Instalarea pachetului: %s ..." -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "Deja instalat." -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "Complet." -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "Versiunea instalată și corectă" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "Versiune lipsă sau incorectă" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Nici unul" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "Nespecificat" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "Patching fișiere ..." -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "Executabile care sunt apelate direct de cod." -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "Binar" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -180,51 +190,51 @@ msgstr "" "Bibliotecile JavaScript descărcate din registrul NPM și folosite la " "funcționalitatea front-end." -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "Descărcare..." -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "Se verifică ..." -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "Se extrage ..." -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "Pachetele Python descărcate de la PyPI." -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "Python" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Fonturi descărcate de la fonts.googleapis.com." -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "Font Google" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "Declarate în aplicație" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "Afișați dependențele după aplicația care le-a declarat." -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Clasă" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -232,11 +242,11 @@ 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:820 +#: classes.py:802 msgid "State" msgstr "Stare" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -246,7 +256,7 @@ msgstr "" "sunt instalate și că au o versiune corectă. Fals înseamnă că lipsesc " "dependențele sau există o versiune incorectă." -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." @@ -316,6 +326,8 @@ msgid "" "Unexpected error trying to determine the latest version available. Make sure" " your installation has a connection to the internet; %s" msgstr "" +"Eroare neașteptată încercând să determine ultima versiune disponibilă. " +"Asigurați-vă că instalația dvs. are o conexiune la internet; %s" #: views.py:38 msgid "Your version is up-to-date." diff --git a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.mo index a94ab8a90c..b5c3f46a7b 100644 Binary files a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po index 00291ff8df..9a748c900f 100644 --- a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po @@ -6,20 +6,20 @@ # Translators: # Roberto Rosario, 2019 # Sergey Glita , 2019 -# mizhgan , 2019 # panasoft , 2019 # Roman Z , 2019 # D Muzzle , 2019 # lilo.panic, 2019 +# mizhgan , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: lilo.panic, 2019\n" +"Last-Translator: mizhgan , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,11 +43,11 @@ msgstr "Внутреннее имя" msgid "Description" msgstr "Описание" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Тип" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -55,185 +55,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Версия" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Документация" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Название" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Ничего" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Класс" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." 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 f79974ef76..48bfddb266 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -37,11 +37,11 @@ msgstr "" msgid "Description" msgstr "Opis" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -49,185 +49,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Različica" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Ime" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Brez" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "Razred" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.mo index 6e891a861a..e8cfb52a59 100644 Binary files a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.mo differ 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 d2aa66e226..075d62b24a 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -38,11 +38,11 @@ msgstr "Dahili adı" msgid "Description" msgstr "Açıklama" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "Tür" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -50,185 +50,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Versiyon" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "Belgeleme" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "İsim" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "Yok" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." 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 4246cd4fec..17bc57067c 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -38,11 +38,11 @@ msgstr "" msgid "Description" msgstr "Mô tả" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -50,185 +50,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "Phiên bản" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "Tên" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "None" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." diff --git a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.mo index f7836785d2..4cfcad060c 100644 Binary files a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.mo and b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po index 0789489b91..2cbc5ff1a5 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -37,11 +37,11 @@ msgstr "内部名称" msgid "Description" msgstr "描述" -#: apps.py:44 classes.py:186 +#: apps.py:44 classes.py:193 msgid "Type" msgstr "类型" -#: apps.py:48 classes.py:188 +#: apps.py:48 classes.py:195 msgid "Other data" msgstr "" @@ -49,185 +49,195 @@ msgstr "" msgid "Declared by" msgstr "" -#: apps.py:56 classes.py:186 +#: apps.py:56 classes.py:193 msgid "Version" msgstr "版本" -#: apps.py:60 classes.py:187 classes.py:827 +#: apps.py:60 classes.py:194 classes.py:809 msgid "Environment" msgstr "" -#: apps.py:64 classes.py:188 +#: apps.py:64 classes.py:195 msgid "Check" msgstr "" -#: classes.py:67 +#: classes.py:68 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:70 +#: classes.py:71 msgid "Build" msgstr "" -#: classes.py:74 +#: classes.py:75 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:76 +#: classes.py:77 msgid "Development" msgstr "" -#: classes.py:80 +#: classes.py:81 +msgid "" +"Environment used for building the documentation. End users can ignore " +"missing dependencies under this environment." +msgstr "" + +#: classes.py:83 +msgid "Documentation" +msgstr "文档" + +#: classes.py:87 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:82 +#: classes.py:89 msgid "Production" msgstr "" -#: classes.py:86 +#: classes.py:93 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:89 +#: classes.py:96 msgid "Testing" msgstr "" -#: classes.py:186 +#: classes.py:193 msgid "Name" msgstr "名称" -#: classes.py:187 +#: classes.py:194 msgid "App" msgstr "" -#: classes.py:288 +#: classes.py:295 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:293 +#: classes.py:300 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:319 +#: classes.py:326 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:324 +#: classes.py:331 msgid "Already installed." msgstr "" -#: classes.py:327 classes.py:332 classes.py:336 +#: classes.py:334 classes.py:339 classes.py:343 msgid "Complete." msgstr "" -#: classes.py:362 +#: classes.py:369 msgid "Installed and correct version" msgstr "" -#: classes.py:364 +#: classes.py:371 msgid "Missing or incorrect version" msgstr "" -#: classes.py:393 +#: classes.py:400 msgid "None" msgstr "没有" -#: classes.py:402 +#: classes.py:409 msgid "Not specified" msgstr "" -#: classes.py:419 +#: classes.py:412 msgid "Patching files... " msgstr "" -#: classes.py:458 +#: classes.py:440 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:460 +#: classes.py:442 msgid "Binary" msgstr "" -#: classes.py:477 +#: classes.py:459 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:480 +#: classes.py:462 msgid "JavaScript" msgstr "" -#: classes.py:514 classes.py:747 +#: classes.py:496 classes.py:729 msgid "Downloading... " msgstr "" -#: classes.py:517 +#: classes.py:499 msgid "Verifying... " msgstr "" -#: classes.py:520 classes.py:750 +#: classes.py:502 classes.py:732 msgid "Extracting... " msgstr "" -#: classes.py:699 +#: classes.py:681 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:701 +#: classes.py:683 msgid "Python" msgstr "" -#: classes.py:728 +#: classes.py:710 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:730 +#: classes.py:712 msgid "Google font" msgstr "" -#: classes.py:809 +#: classes.py:791 msgid "Declared in app" msgstr "" -#: classes.py:810 +#: classes.py:792 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:814 +#: classes.py:796 msgid "Class" msgstr "" -#: classes.py:815 +#: classes.py:797 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:820 +#: classes.py:802 msgid "State" msgstr "" -#: classes.py:821 +#: classes.py:803 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:828 +#: classes.py:810 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." 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 eb3e609235..cb1fb81e4b 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 cb5540f33e..0ebf929f92 100644 --- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bg/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-10-16 14:38+0000\n" "Last-Translator: Lyudmil Antonov \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 95e95c5c4c..4b84000256 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 334dc94462..ccae985d31 100644 --- a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-10-15 17:41+0000\n" "Last-Translator: Michal Švábík \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 44d06c9671..4451defea9 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 bb3aaee2ff..9429858929 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 6b992a83cf..6434195258 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 eb0104f591..18983917b3 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 1c29900474..da28118d9f 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 a2a75806b6..140ff49a10 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 4970fe7cc6..a8aa6e05af 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 18f175290b..4426e98fe1 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 baa98a32b3..4ef2930569 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 cc118db2de..7767ee13ba 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 46f487713d..84e795594f 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 d69b733e55..7c9e7bb81e 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 d43aab23b2..66c1a4e7a0 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 44dafa74cb..4347cd80a3 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 dbdc893506..e19746a26e 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 6fea21914c..76ba9a1d63 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 4efb2f1589..eea03bccf9 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 43cc1d5d9e..cd035593d1 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 b5ec762328..3fd0d95442 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 b6639e0005..d4eaaf49ea 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 99f19e25bf..d25770c159 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 c908f3cb08..5d4375064e 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 8cfffb5642..13b29e397d 100644 --- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-10-16 14:48+0000\n" "Last-Translator: Lyudmil Antonov \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 b9d105b4d4..308a939212 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 66bfc093a1..dd71ee54cd 100644 --- a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-10-15 16:58+0000\n" "Last-Translator: Michal Švábík \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 aa3f461693..54777c2af2 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 e449978897..75f9a93744 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 9b84b9c9e8..2998dd40b0 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 7cdeda1842..f3d8ac2102 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 d0824bb78c..1d91ba3909 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 86405fa4db..b06bd93ec5 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 bda7b34efa..5a8d73ce8b 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 bdde98aad7..a52470629f 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 0cc846b535..f6f5840fc3 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 4e2fd4e42d..30cf740b43 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-28 11:56+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/document_comments/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po index 62d473c223..5d4650c4e5 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 834d257f24..86a0e71c8a 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 7725ee7718..e81274c64e 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 545e739704..8788f753e0 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 302b5f5607..dfdb555120 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 34e29754d8..b0abb46311 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 0a08f2b832..bbca82deb1 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 1246fc6f26..aaca14ea69 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 941aeda412..4e1fba0564 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 d70e2d2624..75423054b0 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 03ce10937c..1d06d16353 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 9c43c19626..cd2f07d614 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -26,27 +26,27 @@ msgstr "لا شيء" msgid "Document types" msgstr "" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "عدد الوثائق الكلي" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "الوثائق" 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 2d9aa4a3d4..e5d672fb06 100644 --- a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bg/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-10-16 15:29+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -27,27 +27,27 @@ msgstr "Няма" msgid "Document types" msgstr "Типове документи" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Индексиране на документи" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Общо нива" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Общо документи" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Ниво" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Нива" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Документи" 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 afdc846505..fe4c9acaa2 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -27,27 +27,27 @@ msgstr "Nijedno" msgid "Document types" msgstr "Tipovi dokumenta" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Indeksiranje dokumenata" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Ukupni nivoi" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Ukupni dokumenti" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Nivo" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Nivoa" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Dokumenti" 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 625f7bdcc1..b236551059 100644 --- a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-10-18 11:48+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -26,27 +26,27 @@ msgstr "žádný" msgid "Document types" msgstr "Typy dokumentů" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Indexování dokumentů" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Celkem úrovní" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Celkem dokumentů" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Úroveň" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Úrovně" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Dokumenty" 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 2a041ab204..1ffb563b52 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -25,27 +25,27 @@ msgstr "Ingen" msgid "Document types" msgstr "Dokumenttyper" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Antal dokumenter" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Dokumenter" 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 db105c64f0..355e456b77 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 @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-11-08 10:44+0000\n" "Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -33,27 +33,27 @@ msgstr "Keine" msgid "Document types" msgstr "Dokumententypen" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Dokumentenindizierung" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Gesamtanzahl Ebenen" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Alle Dokumente" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Ebene" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Ebenen" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Index bearbeitet" 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 8e27951585..ab6c2c4bd5 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -25,27 +25,27 @@ msgstr "Κανένα" msgid "Document types" msgstr "Τύποι εγγράφων" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Ευρετήρια εγγράφων" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Σύνολο επιπέδων" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Σύνολο εγγράφων" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Επίπεδο" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Επίπεδα" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Έγγραφα" 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 503b6cac76..82976ba0a7 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,27 +25,27 @@ msgstr "" msgid "Document types" msgstr "" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "" 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 e97bd1cb16..753d674e88 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-09-24 21:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -28,27 +28,27 @@ msgstr "Ninguno" msgid "Document types" msgstr "Tipos de documento" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Indexación de documentos" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Niveles totales" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Total de documentos" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Nível" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Niveles" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Documentos" 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 50eb46948c..30c9bfabd9 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -26,27 +26,27 @@ msgstr "هیچ یک" msgid "Document types" msgstr "نوع سند" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "نمایه سازی سند" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "سطوح کل" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "کل اسناد" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "سطح" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "سطوح" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "اسناد" 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 bf73581695..755fd6eb58 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 2422c3e313..9947f7029b 100644 --- a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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-11-18 22:35-0400\n" -"PO-Revision-Date: 2019-08-26 01:02+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" +"PO-Revision-Date: 2019-11-19 17:57+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" @@ -31,27 +31,27 @@ msgstr "Aucun" msgid "Document types" msgstr "Types de document" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Indexation de document" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Nombre de niveaux" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Nombre total de documents" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Niveau" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Niveaux" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Documents" @@ -296,7 +296,7 @@ msgstr "Il n'y a pas d'index." #: views.py:161 #, python-format msgid "Rebuild index: %s" -msgstr "" +msgstr "Index en reconstruction: %s" #: views.py:191 msgid "Available document types" 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 3148d0b876..d0faaed501 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -26,27 +26,27 @@ msgstr "Semmi" msgid "Document types" msgstr "Dokumentum típusok" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Dokumentum indexelés" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Dokumentumok száma" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "dokumentumok" 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 7e5cf4c94d..a687b78a6f 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -25,27 +25,27 @@ msgstr "Nihil" msgid "Document types" msgstr "Tipe dokumen" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Total dokumen" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Dokumen" 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 224366947b..0b5b2b9f32 100644 --- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/it/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-28 11:43+0000\n" "Last-Translator: Daniele Bortoluzzi \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -30,27 +30,27 @@ msgstr "Nessuno" msgid "Document types" msgstr "Tipi di documento" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Indicizzazione documento" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Livelli totali" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Totale documenti" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Livello" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Livelli" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Documenti" 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 8e0f6f7dbb..c4ffe50c4b 100644 --- a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -26,27 +26,27 @@ msgstr "Nav neviens" msgid "Document types" msgstr "Dokumentu veidi" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Dokumentu indeksēšana" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Kopējais līmenis" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Kopā dokumenti" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Līmenis" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Līmeņi" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Dokumenti" 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 6c9648b8df..cc5477eeb9 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -28,27 +28,27 @@ msgstr "Geen" msgid "Document types" msgstr "Documentsoorten" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Documentindexering" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Niveau" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Documenten" 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 62357938f3..c30947cbeb 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -28,27 +28,27 @@ msgstr "Brak" msgid "Document types" msgstr "Typy dokumentów" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Indeksowanie dokumentu" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Razem poziomy" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Razem dokumenty" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Poziom" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Poziomy" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Dokumenty" 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 8d5b1722b9..b489b29c7c 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -27,27 +27,27 @@ msgstr "Nenhum" msgid "Document types" msgstr "" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Documentos" 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 40a35d80d7..195305397f 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -29,27 +29,27 @@ msgstr "Nenhum" msgid "Document types" msgstr "Tipos de Documentos" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Indexação de documentos" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Total de níveis" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Total de documentos" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Nível" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Níveis" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Documento" 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 abe0986c28..bbc5d1e2c8 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-09-03 08:35+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -27,27 +27,27 @@ msgstr "Nici unul" msgid "Document types" msgstr "Tipuri de documente" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Indexarea documentelor" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "Total niveluri" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "Total documente" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Nivel" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "Niveluri" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Documente" 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 f57c26b20a..cb7f138f82 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -26,27 +26,27 @@ msgstr "Ни один" msgid "Document types" msgstr "Типы документов" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Индексирование документа" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Уровень" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Документы" 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 5f1b12bbcf..48afe7eae7 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -25,27 +25,27 @@ msgstr "Brez" msgid "Document types" msgstr "" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Dokumenti" 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 0e5cd50d0f..4f05979853 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -27,27 +27,27 @@ msgstr "Yok" msgid "Document types" msgstr "Doküman türleri" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "Belge dizini oluşturma" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "Seviye" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Belgeler" 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 3b12a9c6e2..179fd7e37e 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -25,27 +25,27 @@ msgstr "None" msgid "Document types" msgstr "" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "Tài liệu" 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 0827911011..ff06fd71f3 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-11-18 22:35-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -26,27 +26,27 @@ msgstr "没有" msgid "Document types" msgstr "文件类型" -#: apps.py:56 events.py:8 +#: apps.py:55 events.py:8 msgid "Document indexing" msgstr "文档索引" -#: apps.py:119 +#: apps.py:117 msgid "Total levels" msgstr "总级别" -#: apps.py:127 +#: apps.py:125 msgid "Total documents" msgstr "文档总数" -#: apps.py:132 apps.py:144 apps.py:163 +#: apps.py:130 apps.py:142 apps.py:161 msgid "Level" msgstr "级别" -#: apps.py:149 apps.py:168 +#: apps.py:147 apps.py:166 msgid "Levels" msgstr "级别" -#: apps.py:157 apps.py:175 models.py:358 +#: apps.py:155 apps.py:173 models.py:358 msgid "Documents" msgstr "文档" 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 24625ad8cc..cf0f9d3ae5 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 970d5a4b3e..3e3ce06a53 100644 --- a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Lyudmil Antonov , 2019\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 79e887b097..1b8410b0aa 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 6fac1a8b49..8e94607a2f 100644 --- a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\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 12e67ae7a2..26db85aac4 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 5bb0f56274..5f6a028d46 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 @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Marvin Haschker , 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 a0bf0bd097..b8406343d7 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 da1556c539..b6d3ca94ca 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 8edd23d922..e694e3d0e7 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 1d75f09235..6d23235dba 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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.mo b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.mo index 05c7c9ec81..3710bf98f5 100644 Binary files a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.mo differ 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 74dfeba977..142f4b1738 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" @@ -41,10 +41,12 @@ msgstr "Contenu" msgid "" "Utility from the poppler-utils package used to text content from PDF files." msgstr "" +"Utilitaire du paquet poppler-utils, utilisé pour générer du contenu au " +"format texte provenant de fichiers PDF." #: events.py:12 msgid "Document parsed content deleted" -msgstr "" +msgstr "Le contenu du document analysé a été supprimé." #: events.py:16 msgid "Document version submitted for parsing" @@ -65,7 +67,7 @@ msgstr "Contenus" #: links.py:22 links.py:27 msgid "Delete parsed content" -msgstr "" +msgstr "Supprimer le contenu analysé" #: links.py:39 links.py:77 views.py:225 msgid "Parsing errors" @@ -186,8 +188,8 @@ msgstr "" #: views.py:37 msgid "Delete the parsed content of the selected document?" msgid_plural "Delete the parsed content of the selected documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Supprimer le contenu analysé du document sélectionné?" +msgstr[1] "Supprimer le contenu analysé des documents sélectionnés?" #: views.py:71 #, python-format @@ -229,7 +231,7 @@ msgstr "Ajouter le document \"%s\" à la file d'attente d'analyse" #: views.py:182 #, python-format msgid "Edit parsing settings for document type: %s." -msgstr "" +msgstr "Modifiez les paramètres d'analyse pour le type de document: %s." #: views.py:192 msgid "Submit all documents of a type for parsing." 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 f46cafaf8a..4744e002fd 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 c9afd83eee..c2f75e83c4 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 272c971f5b..4da1da3608 100644 --- a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-0400\n" "PO-Revision-Date: 2017-08-25 00:49+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/document_parsing/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po index b38668590e..71328bd386 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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" 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 a851b45605..01a3359141 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 9f3777a24c..01b96c0f1a 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 9efd32df7c..8f0b17b8db 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 5687eb0a66..6363133478 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 425659b9f3..aa33afe27e 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 e40dd38ddd..53d2e934ed 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 14c1531729..7f75ba56d2 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 7da2ab0ad0..e09c4f193b 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 58e21fdde6..c77f74f731 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 ebf84f43b3..4992b4d9ea 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:13-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 1e31319f4d..dd793434f2 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 70846aff08..bb46526fa0 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-16 16:25+0000\n" "Last-Translator: Lyudmil Antonov \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 e468c9582a..f876b62def 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 ec51334397..fd49c5f362 100644 --- a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-15 17:41+0000\n" "Last-Translator: Michal Švábík \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 3d5684dde1..3031508dbb 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 2d9a192192..797cdb9a98 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 7ea3a6c657..8374e2c4f8 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 29b6b73f9e..39dd9f3964 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/document_signatures/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po index 918c318421..11ef09888f 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 b3f650cfe9..79a502ba1a 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 307d4c98d8..ff673d6f26 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 9b48b0a6e0..e22dc0f370 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 8cbebf753f..774bce924a 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 7786de35aa..6c7dc02e41 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-08-28 12:12+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/document_signatures/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po index 10939a3591..cf4e64d93d 100644 --- a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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" 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 9a4a89ef6d..7c0286d83b 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 ef53bbc700..2cf6b92eea 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 93a7258d2a..cae1c2c831 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 7815b2fdd3..d25e89d8d4 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-27 00:24+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo \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 f2f63b4f06..5cd9437356 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 bef4791f6f..60c7ca262d 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 5894daf639..06a2e7fcb8 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 2cb3632397..4510c75a75 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 fa276cd35a..ffa4237e91 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 41d91c8bee..ca65fa6619 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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.po b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po index f7ddc16b94..aba7f54c4f 100644 --- a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo index ced1f87911..35398ef268 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 bc50044b33..0915ff68a0 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/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-11-18 22:36-0400\n" -"PO-Revision-Date: 2019-11-19 02:41+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" +"PO-Revision-Date: 2019-11-22 13:11+0000\n" +"Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -269,7 +269,7 @@ msgstr "Действие на състояние на работния пото #: models.py:334 msgid "Unknown action type" -msgstr "" +msgstr "Неизвестен тип действие" #: models.py:349 msgid "Origin state" 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 af99380fa2..a71daad796 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,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po index e22e9ae133..cf7d141bfa 100644 --- a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po index 386679fe39..2f7e8d9e3c 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,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.po index 9d607bcafd..b6e008353c 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 @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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/document_states/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po index 9ec22336d1..cb09fe9ac4 100644 --- a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po index daed730d5b..7f951bbf7f 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/document_states/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo index a27bffef90..a9f76e3069 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 08a1606142..15bcd72755 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-11-18 22:36-0400\n" -"PO-Revision-Date: 2019-11-19 05:08+0000\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" +"PO-Revision-Date: 2019-11-28 15:51+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" @@ -595,7 +595,7 @@ msgstr "Acciones para el estado de flujo de trabajo: %s" #: views/workflow_views.py:409 msgid "New workflow state action selection" -msgstr "Selección de nueva acciones de estado de flujo de trabajo" +msgstr "Nueva selección de acción de estado de flujo de trabajo" #: views/workflow_views.py:430 #, python-format @@ -635,7 +635,7 @@ msgstr "Editar la transición del flujo de trabajo: %s" msgid "" "Create a transition and use it to move a workflow from one state to " "another." -msgstr "Cree una transición y úselo para mover un flujo de trabajo de un estado a otro." +msgstr "Cree una transición y úsela para mover un flujo de trabajo de un estado a otro." #: views/workflow_views.py:639 msgid "This workflow doesn't have any transitions" @@ -658,12 +658,12 @@ msgstr "Eventos de activación de transición de flujo de trabajo actualizados c #: views/workflow_views.py:694 msgid "" "Triggers are events that cause this transition to execute automatically." -msgstr "Los desencadenantes son eventos que hacen que esta transición se ejecute automáticamente." +msgstr "Los disparadores son eventos que hacen que esta transición se ejecute automáticamente." #: views/workflow_views.py:698 #, python-format msgid "Workflow transition trigger events for: %s" -msgstr "Eventos de activación de transición de flujo de trabajo para: %s" +msgstr "Eventos de disparo de transición de flujo de trabajo para: %s" #: views/workflow_views.py:737 msgid "Launch all workflows?" 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 e7383a9cbb..30a83d3dd4 100644 --- a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo index 8425dedc13..d1ca90adc0 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 16fe1acf94..072523d714 100644 --- a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fr/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-11-18 22:36-0400\n" -"PO-Revision-Date: 2019-11-19 02:41+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" +"PO-Revision-Date: 2019-11-27 00:51+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" @@ -272,7 +272,7 @@ msgstr "Action d'état du flux de travail" #: models.py:334 msgid "Unknown action type" -msgstr "" +msgstr "Type d'action inconnu" #: models.py:349 msgid "Origin state" 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 531152c248..bc2510e791 100644 --- a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po index d365e6a077..b27f213c63 100644 --- a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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/document_states/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po index 68b98b6e55..ad2bea0d8e 100644 --- a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po index d5ecdc04a7..b4e7a473ee 100644 --- a/mayan/apps/document_states/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" 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 5bc2f4024c..e2c975f975 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 @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po index 22ff0d8325..09e6939192 100644 --- a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po index f262807ec3..f193569837 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.po index f2f30a21d7..4c4fffff39 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,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo index 08ff5fb26c..a38b0ad2b5 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 93ed60f00f..86e5e9eab4 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,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" -"PO-Revision-Date: 2019-11-19 02:41+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" +"PO-Revision-Date: 2019-11-21 06:56+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" @@ -269,7 +269,7 @@ msgstr "Acțiune de stare de flux de lucru" #: models.py:334 msgid "Unknown action type" -msgstr "" +msgstr "Tip de acțiune necunoscut" #: models.py:349 msgid "Origin state" 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 05008375be..f9fd9ddac2 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po index b1e88aff8a..286d0a199f 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,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po index 8e8d607ac8..4d3698dce2 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,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po index 3e3b41ed73..e090bbf9d2 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,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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_states/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po index 6fbd45733d..5828f7a8c3 100644 --- a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index b9287180dc..4162a0fe53 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\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:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "صفحات" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "النسخ المكررة" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "النوع" diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index 9f04a5d981..f256cf9be2 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-16 21:23+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "Мime тип на версиите" msgid "Versions timestamp" msgstr "Времева марка на версиите" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Умалено изображение" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Страници" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Дубликати" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Тип" 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 4d9056e9b3..dd56350d37 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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,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:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -51,19 +51,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Thumbnail" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Stranice" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Duplikati" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Tip" diff --git a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po index 84b6676f3b..e1216112ee 100644 --- a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-22 18:57+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,7 +18,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:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "Verze mime type" msgid "Versions timestamp" msgstr "Časová značka verzí" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Náhled" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Strany" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Duplikáty" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Typ" 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 2fe23818d8..41d58df3b8 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Sider" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Type" 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 36ed880cb8..22978acd66 100644 --- a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-11-08 11:14+0000\n" "Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -25,7 +25,7 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -57,19 +57,19 @@ msgstr "Versions-MIME-Typ" msgid "Versions timestamp" msgstr "Versionszeitstempel" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Miniaturbild" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Seiten" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Duplikate" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Typ" diff --git a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po index b60c5e5b01..2e0cd47c78 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Μικρογραφία" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Σελίδες" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Αντίγραφα" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Τύπος" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po index b52b86bfaa..842961e59d 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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/" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 models/document_models.py:94 #: permissions.py:7 queues.py:26 settings.py:14 statistics.py:238 msgid "Documents" msgstr "" @@ -49,19 +49,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "" diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/es/LC_MESSAGES/django.mo index bf333c081f..4b899b704f 100644 Binary files a/mayan/apps/documents/locale/es/LC_MESSAGES/django.mo and b/mayan/apps/documents/locale/es/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index 1abb7b0e66..84c3895b11 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/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-11-18 22:36-0400\n" -"PO-Revision-Date: 2019-09-24 21:06+0000\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" +"PO-Revision-Date: 2019-11-28 15:53+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" @@ -18,7 +18,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "Tipo MIME de versiones" msgid "Versions timestamp" msgstr "Fecha y hora de versiones" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Foto miniatura" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Páginas" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Duplicados" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Tipo" @@ -1326,7 +1326,7 @@ msgstr "¿Borrar la caché de imágenes de documentos?" #: views/misc_views.py:26 msgid "Document cache clearing queued successfully." -msgstr "Caché de documentos borrara con éxito." +msgstr "Borrado del caché de documentos sometido con éxito." #: views/misc_views.py:32 msgid "Scan for duplicated documents?" diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index 0c39ec7456..0b0e59cd97 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "اندازه کوچک" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "صفحات" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "تکراری" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "نوع" diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo index 27448700ca..94118662f6 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 9b667d54ea..2bf2142073 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-11-18 22:36-0400\n" -"PO-Revision-Date: 2019-09-24 04:46+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" +"PO-Revision-Date: 2019-11-27 00:52+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" @@ -22,7 +22,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -54,19 +54,19 @@ msgstr "Type MIME des version" msgid "Versions timestamp" msgstr "Horodatage des versions " -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Vignette" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Pages" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Doublons" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Type" @@ -935,7 +935,7 @@ msgstr "Nombre total de pages de documents chaque mois" #: templates/documents/document_print.html:12 msgid "Document page image preview" -msgstr "" +msgstr "Aperçu de l'image de la page du document" #: templates/documents/forms/widgets/document_page_carousel.html:16 #, python-format @@ -951,7 +951,7 @@ msgstr "Aucune page à afficher" #: templates/documents/forms/widgets/document_page_image.html:13 msgid "Document image" -msgstr "" +msgstr "Image du document " #: utils.py:18 #, python-format diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index f19be7026e..a9cbb6de3f 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "bélyegkép" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Lapok" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Duplikátum" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Típus" diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po index a6fe029b56..aa695f7eae 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "Tipe MIME versi" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Halaman-halaman" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Duplikat" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Tipe" diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po index 79ff21deb8..8318bdee01 100644 --- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -20,7 +20,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -52,19 +52,19 @@ msgstr "Tipo MIME delle versioni" msgid "Versions timestamp" msgstr "Timestamp delle versioni" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Miniatura" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Pagine" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Duplicati" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Tipo" diff --git a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po index fb30415d0f..289ad731c2 100644 --- a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\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:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "Versiju mime tips" msgid "Versions timestamp" msgstr "Versiju laika zīmogs" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Sīktēls" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Lapas" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Dublikāti" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Tips" 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 2689ecae50..540de75fb6 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -51,19 +51,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Thumbnail" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Pagina's" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Type" diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index d4bc694ee5..eb56c04a85 100644 --- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -20,7 +20,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:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -52,19 +52,19 @@ msgstr "Wersja rodzaju MIME" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Miniaturka" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Strony" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Duplikaty" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Typ" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po index 64d5381566..56215fbf77 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -49,19 +49,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Páginas" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "" 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 a80a63f916..ed327b96c1 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -20,7 +20,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -52,19 +52,19 @@ msgstr "Tipo MIME de versões" msgid "Versions timestamp" msgstr "Registro de data e hora das versões" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Miniatura" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Páginas" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Duplicados" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Tipo" 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 f2ffba992d..450d3e4ae7 100644 --- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-29 12:28+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\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:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -51,19 +51,19 @@ msgstr "Tip MIME pt. versiuni" msgid "Versions timestamp" msgstr "Marcă temporală versiuni" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Miniatură" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Pagini" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Dubluri" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Tip" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po index ca0a593c39..c264697d86 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\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:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Миниатюра" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Страницы" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Тип" 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 c2d49529f4..7e70c41b3f 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\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:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -49,19 +49,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Strani" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "" 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 db5796fba4..d870c63419 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -51,19 +51,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "Küçük ikon" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Sayfalar" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "Yinele" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "Tür" 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 a449a23d1c..d40998e367 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -49,19 +49,19 @@ msgstr "" msgid "Versions timestamp" msgstr "" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "Trang" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "" diff --git a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po index 75e5911f29..a20fd1b7a7 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:109 apps.py:296 events.py:7 menus.py:10 +#: apps.py:109 apps.py:288 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 #: statistics.py:238 msgid "Documents" @@ -50,19 +50,19 @@ msgstr "版本mime类型" msgid "Versions timestamp" msgstr "版本时间戳" -#: apps.py:241 apps.py:270 apps.py:280 apps.py:316 apps.py:334 +#: apps.py:233 apps.py:262 apps.py:272 apps.py:308 apps.py:326 msgid "Thumbnail" msgstr "缩略图" -#: apps.py:249 apps.py:339 forms/document_forms.py:182 links.py:83 +#: apps.py:241 apps.py:331 forms/document_forms.py:182 links.py:83 msgid "Pages" msgstr "页面" -#: apps.py:258 links.py:420 +#: apps.py:250 links.py:420 msgid "Duplicates" msgstr "重复" -#: apps.py:284 +#: apps.py:276 msgid "Type" msgstr "类型" 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 df14667f85..6c6ed40f52 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 b7a0a801ca..a2b0c12a52 100644 --- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bg/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-17 07:05+0000\n" "Last-Translator: Lyudmil Antonov \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 7f00368779..f38c4f7409 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 a2d5f4f8b2..0fcd6474e3 100644 --- a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-17 11:12+0000\n" "Last-Translator: Michal Švábík \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 ce8e76bccb..8108de2afd 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 9846818809..ffb2c2fd6c 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-07-04 22:13+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/dynamic_search/locale/el/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po index c4cec8af5e..4a8c101003 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 ce41d62eea..f2a056623b 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/dynamic_search/locale/es/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.mo index 71c63a4c40..5192aff72f 100644 Binary files a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.mo and b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.mo differ 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 e4f97ab9bd..1680f323ca 100644 --- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/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-11-18 22:36-0400\n" -"PO-Revision-Date: 2019-06-15 07:49+0000\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" +"PO-Revision-Date: 2019-11-28 15:51+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" 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 660d663a69..73be36a9b1 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 b563d55073..fc83de8c26 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 9ab4f570e8..0a0053ef31 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 85efa29d21..209470f7b2 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 70e6eb72ed..9747cbd67f 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 9c6ab2c084..c72151d282 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 fbf4346629..0b8ebcc787 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 6ff6a5b897..8e52c188ab 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 0c88d95794..75821de291 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 eada41ec47..d820c255a9 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 64bfbce590..07545160c3 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 b0bdb5fdad..db61f9daa2 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 19fe2ed809..903a4d6c28 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 491f566f95..c0abbb7988 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 53af294462..82f5c3fbec 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 224bf34500..585a91b16e 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 3f9c440832..7ef69e4e7e 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 ec25dfe22d..159bb439b6 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-17 07:18+0000\n" "Last-Translator: Lyudmil Antonov \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 1db31fe07d..8e85b4a99b 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 5ecedfb619..d3d1e459f6 100644 --- a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/events/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-22 19:26+0000\n" "Last-Translator: Michal Švábík \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 76da8f0418..77fddbe5d8 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 239cf34787..f2d9adac2c 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 bdeb8d3239..9692c21279 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 7a39687190..ddcdcad664 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po index 33f436a118..a044a3198f 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 557af3c294..45c2ae1e4e 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 5e47d16476..ffae90833d 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-10 20:39+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 216552ecc9..e25fbc76a6 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 976b2730a7..aa90dc177a 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 71f4cc795a..b8253abfcb 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-08-28 12:14+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.po b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po index 7674918ea2..0adad27b38 100644 --- a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/events/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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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" 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 421a6bfd63..1231f734d5 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-07-27 03:42+0000\n" "Last-Translator: Ben Zweekhorst \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 cd7606ac5f..54f60b19eb 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 89fb82437b..a3c01c1a92 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 d7bdeb5691..a7f0438b4f 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 e3d99a0587..288438d0f4 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 fde46707ea..ed63ced4a9 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 8c716f5ee0..27b8f8b911 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 0b62482f3c..5d17b00fde 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 c3175765d4..95eba342f5 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 f3c18a1f66..b74fb475b8 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-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 acb714349a..000a67a2a3 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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.mo b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.mo index 4825196325..9885b52da8 100644 Binary files a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.mo and b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.mo differ 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 2219510e95..b7b7344179 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" @@ -37,7 +37,7 @@ msgstr "Покажете стойността на определена мета #: apps.py:99 msgid "File metadata value of" -msgstr "" +msgstr "Метаданни във файл за" #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" 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 f4b7bd73ac..e1b59318d2 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 5b23480b4f..2842a25c4b 100644 --- a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Michal Švábík , 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 668365f933..64212b9280 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 51a2fce054..343d5f9794 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 adfa6e1b5c..18fba0b3a9 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 ec10f5dbd2..1675a095c0 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/file_metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po index 713cd34add..1aa78cfa58 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 6034a77014..19d896a7cb 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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.mo b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.mo index e4d1b6353b..a5995f4124 100644 Binary files a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.mo differ 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 b8582d6848..d04dd78cde 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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" @@ -41,7 +41,7 @@ msgstr "Renvoie la valeur des métadonnées pour un fichier spécifique." #: apps.py:99 msgid "File metadata value of" -msgstr "" +msgstr "Valeur de métadonnée de fichier de" #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" @@ -55,6 +55,8 @@ msgstr "Valeur des métadonnées du fichier" msgid "" "Library and program to read and write meta information in multimedia files." msgstr "" +"Bibliothèque et programme pour lire et écrire des métadonnées dans des " +"fichiers multimédia." #: drivers/exiftool.py:26 msgid "EXIF Tool" 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 119e1165e8..de5340a23e 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 f4eb9fc5d5..03feccc97d 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 b26762e79c..be10e1523d 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 2ca5ac488d..52e83a8e0d 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 94c3519fe1..1ae56bf8c5 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 38b6da3554..5e4a6305d6 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 ece589206e..2dfb48c947 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 0c9518e26f..974f11b030 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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.mo b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.mo index 645738833b..43f4a49492 100644 Binary files a/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.mo differ 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 1ada8a19a4..8fafb6bab5 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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" @@ -38,7 +38,7 @@ msgstr "Returnați valoarea unei metadate de fișier specifice." #: apps.py:99 msgid "File metadata value of" -msgstr "" +msgstr "Valoarea metadatelor fișierului pentru" #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" 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 eada70fece..57002c1524 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 76387781cc..4c7504cb2d 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 df193d538b..2c12e9948a 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 a8e05783d8..49c0eed6a7 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 76051cedbd..d2131dd069 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 19b32d42e0..55cad22de1 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 c8879f68a7..ac1d8c5871 100644 --- a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bg/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-17 07:59+0000\n" "Last-Translator: Lyudmil Antonov \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 e81035a184..92573afedb 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 3499748a89..fa7d6b711a 100644 --- a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-17 11:51+0000\n" "Last-Translator: Michal Švábík \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 c9555d4b84..5e8f430ce8 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 c0f82a3699..d57de96cf2 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 fdc26c85b5..888bd63c83 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 bde8e73e87..50ae7e5b92 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/linking/locale/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index d74929bbb5..b6600ef812 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 a3c7dcb7ad..f8bbd2c57a 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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.po b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po index 66976a9fcb..a8769de7e7 100644 --- a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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" diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po index b54b9859a5..7f000b8d0a 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 81c705bf59..292d203175 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 b831b96c44..5a0465bb9c 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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.po b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po index e2edf44306..829c8a3430 100644 --- a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/linking/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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" 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 e2b3853ac0..00680bdb08 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 3d5a632d60..bc4af8783d 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 0a8037714d..d865d4928d 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 2c53916e10..54f21b75ee 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 1221e5b244..ab53daedba 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 4a034e9463..d52a3e56aa 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 bc2f9659a8..578724452f 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 8ac45e7cda..7073370854 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 585d16b412..88f5e55366 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 31f0d9cb3e..680d0fe52a 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 5cece28bbf..717800c7e3 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 48c42cdd48..d5d2fed392 100644 --- a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-17 08:07+0000\n" "Last-Translator: Lyudmil Antonov \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 03f5b39c7b..db7e67207f 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 e9119bac86..7e5b09984e 100644 --- a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-10-14 12:28+0000\n" "Last-Translator: Michal Švábík \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 dffe8df1ac..2594c5ea7e 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 bf4d41e7fd..5807c07280 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 7c5638f2ef..65c7df2e8a 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 aa9839f5cd..4a1e58c613 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/lock_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po index 98522afafd..c57783d616 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 694ccc1f50..b17ec0a901 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 2bccbf5fac..4f4e911b97 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 49a3418d1b..8e9d9c6adc 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 a2fbe9e769..7a3bcaaff6 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 f53277e509..3ac6fe5c16 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 ad6670452d..53244f5194 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 648334bc27..a92fcab294 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 7e61595dc0..8c5eb4574f 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 b1a8a0c26c..6ada40feef 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 2ee4abd58a..cfbcaa9ed9 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 1bf799800c..c778a3e9ee 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 cd33747ff4..b6192ce5fa 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 163c6878e1..5403de8ce0 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 bf58420f41..dd15d7dcc2 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 5b59937d25..486f5cc9a5 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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 8b4497ebbd..59c9cb7af0 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-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.po b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po index 86d1207370..82e4d813c3 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po index 559a01e6df..a88d9cc2ec 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bg/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-28 15:11+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" 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 c0d0c07d3e..0669f77c62 100644 --- a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po index 6a8722fa54..db3e16afe4 100644 --- a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po index 3b6af91bd2..55356cf3f2 100644 --- a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po index 7e01161b57..2aa35e3763 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-08 11:14+0000\n" "Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po index eeb823fca3..87a92a2701 100644 --- a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/en/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po index 74d7bbe796..a1cc3985ac 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/mailer/locale/es/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po index 5c5a36b22a..1f26ad7324 100644 --- a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 05:07+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/mailer/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po index d8fca7c43b..f9a399b179 100644 --- a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo index 60f0e20a80..b9635d8bcb 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 9a2bf1b646..82582af70b 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/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-11-18 22:38-0400\n" -"PO-Revision-Date: 2019-10-27 19:04+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" +"PO-Revision-Date: 2019-11-19 17:57+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" @@ -89,7 +89,7 @@ msgstr "Journal d'erreur du gestionnaire d'envoi de mail" #: links.py:42 msgid "Create mailing profile " -msgstr "" +msgstr "Créer un profil de courriel" #: links.py:48 msgid "Delete" @@ -397,13 +397,13 @@ msgstr "Modifier un profile de liste de diffusion %s" #: views.py:212 #, python-format msgid "Error log for: %s" -msgstr "" +msgstr "Journal des erreurs pour: %s" #: views.py:234 msgid "" "Mailing profiles are email configurations. Mailing profiles allow sending " "documents as attachments or as links via email." -msgstr "" +msgstr "Les profils de courriel sont des configurations de messagerie. Les profils de courriel permettent d'envoyer des documents sous forme de pièces jointes ou de liens par courriel." #: views.py:238 msgid "No mailing profiles available" @@ -411,7 +411,7 @@ msgstr "Aucun profil d'envoi de courriels disponible" #: views.py:253 msgid "Test email sent." -msgstr "" +msgstr "Courriel de test envoyé." #: views.py:262 #, python-format diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po index aa3c8618d3..d24ce32359 100644 --- a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/id/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po index b872d21eed..8e3fbb02b5 100644 --- a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/it/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po index 1b19bab7d9..4de7b499e9 100644 --- a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po index 0b86477ebc..e140630a45 100644 --- a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" 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 3e1fd5bf08..dc820b13e8 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po index 9a11701201..347fd84a08 100644 --- a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index c29701185f..6ed7fdc34e 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po index 192bc55793..ee75e7ef39 100644 --- a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po index d173ffe088..9fabf8a870 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-29 12:27+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/mailer/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po index 1169d0b8cb..60a5a0dbc2 100644 --- a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po index e79aa8bea3..b5409bd54e 100644 --- a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po index 6f509cdd31..bcefaf6e52 100644 --- a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po index 7504ab7dd5..bd08cb2302 100644 --- a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mailer/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po index aafb979b23..db40a3b899 100644 --- a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-27 19:04+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/mayan_statistics/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po index 9084866fcc..5ee828981e 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 3741bf6e37..0ef097182a 100644 --- a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/bg/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-17 12:12+0000\n" "Last-Translator: Lyudmil Antonov \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 a248fc05ee..db092dede4 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 6e5a9625be..ebcfa2fef3 100644 --- a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-18 11:50+0000\n" "Last-Translator: Michal Švábík \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 5e925833d9..4f9678b149 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 999768fa50..a19d7101d7 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 87fc79f839..0d864f8980 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 c0f41b5935..f8be554b31 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/mayan_statistics/locale/es/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po index 1d536a7f6b..8d4ba304d5 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 a7936036e7..8dc52b93e9 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 5d2b1c0d56..cd5dcc4b0d 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 d8d9db1820..f9b1485ad5 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 d9619e1f3c..c8b53314b5 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 50e47389ff..ddd0170763 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 356691617c..c6731f0d68 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 f02dd7209a..cbf5205f52 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 8b50f0ae92..be7c565e7d 100644 --- a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-08-30 22:12+0000\n" "Last-Translator: Marcin Lozynski \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 73dc0dd855..80d4b54a71 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 17ae1c343b..c29090bc97 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 f145232f2d..d04e416f05 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 20682bfc90..4d302aa639 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 255fe3ebf1..a8d1d3227d 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 1572127fd9..cfd792b4d6 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 6c93029934..103972c2d2 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 9ac0e33d1c..5715cedd56 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-11-18 22:37-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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/locale/ar/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po index 6b05d67a14..d0981e6634 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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.mo b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.mo index 66f3b5ee28..b255589fad 100644 Binary files a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.mo and b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index a4916f9a4e..0d742c77c8 100644 --- a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/bg/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-11-18 22:38-0400\n" -"PO-Revision-Date: 2019-11-19 02:41+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" +"PO-Revision-Date: 2019-11-22 13:13+0000\n" +"Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "Получаване стойността на конкретни мет #: apps.py:99 msgid "Metadata value of" -msgstr "" +msgstr "Метаданни за" #: apps.py:104 msgid "Metadata type name" 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 9d0ad9f120..cd7b1015b6 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 5b72124c2f..3d7ac3b68a 100644 --- a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 a5f9c62474..6a56578c63 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 b9dd27dd5a..f79e1fb79b 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 2f1ba99480..23e7f0cf24 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 d2a11e387e..38f308f8da 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index 49863196e4..676466b895 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 05:08+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 5ab92f01f7..dd6cd676c6 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 f7434d6cc1..7b0639fdec 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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/metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.po index a120c8e5ee..a56f319f62 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 bc40ba62af..496b6473a0 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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/metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.po index b14be45b4a..47613e385f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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.po b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po index a40ec73ff4..3414fd21d1 100644 --- a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" 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 ed6eca0a1a..4b347ce2d1 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 ff789ba5f5..9c38c8c869 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 343df4603a..129bebd12f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 30ab3b958d..a78671f29a 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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.mo b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.mo index a684a4b8c8..9331d75bf1 100644 Binary files a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.mo and b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.mo differ 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 c6b8ffdbf3..eb95bbf20e 100644 --- a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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-11-18 22:38-0400\n" -"PO-Revision-Date: 2019-11-19 02:41+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" +"PO-Revision-Date: 2019-11-21 06:57+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" @@ -30,7 +30,7 @@ msgstr "Obține valoarea unei metadate specifice pentru document" #: apps.py:99 msgid "Metadata value of" -msgstr "" +msgstr "Valoarea metadatelor pentru" #: apps.py:104 msgid "Metadata type name" diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po index ae68f8ab5a..73baf74a26 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 a12f7ef87a..ff21f96eb3 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 622fae1586..515070257b 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 28b49dab13..dffd57e5c9 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 c225ae3a16..9bb6342740 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-11-19 02:41+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 fbe63135ca..0307449586 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 83438ceec8..ed77ca32c0 100644 --- a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-17 09:52+0000\n" "Last-Translator: Lyudmil Antonov \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 3101113e73..38562182ed 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 00d66386c1..2b8285c2ac 100644 --- a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-14 12:25+0000\n" "Last-Translator: Michal Švábík \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 0bc1879653..12096415bc 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 f50e06545e..51fc771371 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 9b434ad57a..5f0ae4ddeb 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 80104bd364..1ac969c9d0 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/mirroring/locale/es/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po index de80feb0e3..fce3b226ea 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 896ae6c77c..273866ed21 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 f7bba9a4ff..e4a75f9625 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 d39f9cff42..5da75e24ce 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 117d665e5d..4714cd6cc6 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 cf17a094bb..3601a90eae 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 9fe6849371..55604eb7fe 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 723042df2e..beeaa05e0a 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 1527960b5b..fed19b4e18 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 750755b6d6..85089fa1f0 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 4c63920f86..92437005db 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 eca1c50f77..944437f74b 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 b0f15ddecd..8de5032f39 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 1d4d6c07f9..909011f368 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 e663527ea1..375aa24b5d 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 f1f373360e..7ad349df75 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 f3853bdc22..75348532b8 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 90b48c96ff..d9b38e6562 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 d7b11c9458..5e5876e612 100644 --- a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/motd/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-17 09:05+0000\n" "Last-Translator: Lyudmil Antonov \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 20909d17ff..ef01b4e6c4 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 a69274e192..7817549bb9 100644 --- a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/motd/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-17 12:13+0000\n" "Last-Translator: Michal Švábík \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 3b73dc819d..60b19c1ea2 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 0d504505fa..332254d5dd 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 1c80775c11..a35423332e 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 59291e6435..4b5277d71c 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po index afefdbbfa2..0121f4c111 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 0582cf0e14..b85dd4ab31 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 f78d515c43..57c9f2f5ff 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 4cd2a53d1f..53e3669996 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 0a80e45164..24468d4a1e 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 0dbd80c2dd..ec94ee024f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 d51ec66813..806ab695d6 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 11cb0efefa..a5ee6dc182 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 47270ecad3..3badbf93b1 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-08-30 22:14+0000\n" "Last-Translator: Marcin Lozynski \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 41329bd701..d3c11c23be 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 b6967ba904..110e2f2e5a 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 ed1975a39f..543d1c0e5d 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 423138480f..5ab65e9124 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 1ac2be93f3..ba8823e8e9 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 10fe8ec6f0..c77d8a539f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 8fec791a78..6e3a5a63f8 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 d2e447fe71..b2b7b92e7f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 91b161caea..e91cfe84ec 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 d57145f692..10e2e097fc 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 aea1fbbadb..c9c6e514c0 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 33c1a52af3..7aefe1c9ec 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/navigation/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po index edb57ab113..20ba4bb89f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/navigation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po index a9b168f778..3f403f3276 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 ff672e0f8c..b96e30fb78 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/navigation/locale/en/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po index edb57ab113..20ba4bb89f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/navigation/locale/es/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po index d95194a885..ee0c0e15d1 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 f68fcb357e..cb0df35588 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 a849a8a3e5..3f07e95039 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 888f25213c..5365a14bf3 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 242f9d4ea8..833419565e 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 5db69d08b6..64a0fd91e7 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 0adef6d5d0..a892215810 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/navigation/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po index caa933016a..a0b0ffb4b9 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 76cf1af7d1..c9af154d57 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 bb62393283..5d88810f76 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 3e947ea18e..c071a19590 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 c45dea39a0..9a26df178e 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 bce0516fc9..f2e544d79f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 39c7588be3..1a9a5777a7 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 edb57ab113..20ba4bb89f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/navigation/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po index f5c71467c3..890d600121 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-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 edb57ab113..20ba4bb89f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/ocr/locale/ar/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po index 8779e02f79..aca3e1d12e 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 71a4e7ffb5..48b04b71af 100644 --- a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bg/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-17 10:39+0000\n" "Last-Translator: Lyudmil Antonov \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 01edc228fe..1c07abb6cc 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 896df4aaa9..9e8bc7e2a6 100644 --- a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-18 09:07+0000\n" "Last-Translator: Michal Švábík \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 7889da6399..a9429033c1 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 e8b59a35b2..b0bb5173f0 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 18:25+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/ocr/locale/el/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po index d9c783048d..d1fad71c8e 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 70b324f82b..e94e1baa4c 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/ocr/locale/es/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po index e396d0413f..5cfbe06657 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 21:11+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 7f20c7032a..7711b7a408 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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.mo b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.mo index c871210d65..f556f96a41 100644 Binary files a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.mo and b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.mo differ diff --git a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po index 824dc178bf..4bc4c0fc41 100644 --- a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:38-0400\n" -"PO-Revision-Date: 2019-09-24 04:46+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" +"PO-Revision-Date: 2019-11-27 00:53+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" @@ -53,7 +53,7 @@ msgstr "PyOCR est une bibliothèque Python simplifiant l'utilisation d'outils de #: events.py:10 msgid "Document OCR content deleted" -msgstr "" +msgstr "Contenu OCR du document supprimé" #: events.py:14 msgid "Document version submitted for OCR" @@ -74,7 +74,7 @@ msgstr "Page %(page_number)d" #: links.py:27 links.py:32 msgid "Delete OCR content" -msgstr "" +msgstr "Supprimer le contenu OCR" #: links.py:38 links.py:43 msgid "Submit for OCR" @@ -175,8 +175,8 @@ msgstr "Traiter automatiquement les nouveaux types de document par l'OCR." #: views.py:37 msgid "Delete the OCR content of the selected document?" msgid_plural "Delete the OCR content of the selected documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Supprimer le contenu OCR du document sélectionné?" +msgstr[1] "Supprimer le contenu OCR des documents sélectionnés?" #: views.py:71 #, python-format diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po index b7b77f16d5..6b28e354e6 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 30a9f36f80..26e332f20f 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 7518e79189..88648b8d93 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 036183572f..7349bde4be 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\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 f5af18c353..592bd4b425 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 1db13078b8..a7fc16bede 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 13b78654c7..96ca20f058 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 485695973e..423f7b9031 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 79fc11b3ec..8ac7cab4f9 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-10-29 12:30+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 db83aa6c45..f22adf9325 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 964574b85e..5624f42de0 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 3f45b18ced..43aed67a48 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 24b569a67b..f463b2e484 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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 53a7ba89a9..0259564bec 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-11-18 22:38-0400\n" +"POT-Creation-Date: 2019-11-28 11:15-0400\n" "PO-Revision-Date: 2019-09-24 04:46+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.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index cf2841f0f6..5647479244 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po index f99216fe4f..cabb1978c9 100644 --- a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bg/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-17 10:50+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" 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 14c4942451..24838e3943 100644 --- a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po index 605445138a..5643f1963d 100644 --- a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-18 10:50+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" 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 7ab97ea324..a8db117ad1 100644 --- a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 a234604a22..1775b33175 100644 --- a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-11-08 11:14+0000\n" "Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po index 8adb3d779e..2addd048e9 100644 --- a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po index c2e934ee83..891bfb29cf 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/permissions/locale/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index 6d080a2a4f..d70714e0ef 100644 --- a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-07-05 06: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/permissions/locale/fa/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po index b48d57213c..6de3cea78a 100644 --- a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index d01d971aa6..da7b4659f4 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-07-02 15:44+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/permissions/locale/hu/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po index 2e9981d638..9ab51e761a 100644 --- a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po index 200fea90b3..f6205561db 100644 --- a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index 7b3d8b5b42..41bb84cc34 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po index 28aac56c08..98bc0a8dad 100644 --- a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-07-01 05:54+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/permissions/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po index 668a11d964..e3a77b27fe 100644 --- a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index faac9ce0bb..c2568fc7b5 100644 --- a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po index 3275ba6952..aac4201514 100644 --- a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 8f271f30f8..20fe6fe7fa 100644 --- a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 4297c78cd8..364f105ee9 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-09-03 08:36+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/permissions/locale/ru/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po index 42035df754..7941952e23 100644 --- a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 87b70fc554..f53c69cbc3 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 1e1fecf64a..c5d2f860d3 100644 --- a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 a604b45525..5269c19f62 100644 --- a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po index 6f39375b90..54ddfb3373 100644 --- a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po index 798e27957a..089eca943c 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po index a33d800cb2..cbb1582a33 100644 --- a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/platform/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" 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 d7931c7e53..ef22101461 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po index 177207ca6c..ddb0d7c961 100644 --- a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/platform/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" 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 00bf088377..6bbb10492a 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 dac8d3402c..1d4ba57e19 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po index 65f74e4b6b..cf576cd299 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/en/LC_MESSAGES/django.po b/mayan/apps/platform/locale/en/LC_MESSAGES/django.po index 8e4fcbba7b..710840f924 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/platform/locale/es/LC_MESSAGES/django.po b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po index 1f10ae2dbf..a77ed7fc43 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po index 2c13e016a6..850ed1cc1c 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po index 46dbd11ce0..c75c93d42e 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po index 6ca4342ddf..3380cb9441 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po index 46eb11efd9..cc1909e5d8 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po index 2b417c910d..ba6230d0bb 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po index f4c1656946..046c8e079f 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 6913387823..1879fa918e 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po index 612c85228c..f7caf7f374 100644 --- a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/platform/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Marcin Lozynski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po index 967362417b..ded705a856 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 1644537411..54b79a0767 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 1ce76356e0..7f5da5dd4e 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po index 707cbffa43..938334967a 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 3b30b718c9..2f7924a238 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 766996b4b6..66aa9d62ec 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 835b5bbc0a..f051e2ce5a 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po index 5be6688266..c6507b2156 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 d6dbae4bc8..fb22cf5a71 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 e02047510f..bf7c9b6992 100644 --- a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-17 10:52+0000\n" "Last-Translator: Lyudmil Antonov \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 52584a6b21..5b93ace832 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 76e3831a79..51328c2938 100644 --- a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-18 10:50+0000\n" "Last-Translator: Michal Švábík \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 23e6f839a2..6e4ad045c4 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 801915a255..b00087095f 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 dbf36ea0fe..3c737e08d6 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 e9b4b8f5c3..9c6462ae06 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/rest_api/locale/es/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po index 351ffcf9bb..609ca40978 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 95869f54d5..3a036a4b9c 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 08b93df44b..99b5629b88 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 a69bddc578..f589b573a6 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 31c8d5fea5..1c977adeb2 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 4b0e881027..1336906699 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 f7de30e3db..bd3da53e91 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 159ba10ee8..10f2a65243 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 0beb1aaeef..aee0eab079 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 0075d9d4f1..1224770e9f 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 c82344c3ce..a0ae8d88c7 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 77f6dd4d90..9dbd6183ae 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 94e5485ac7..562bf27a12 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 e2a87cf2c9..2a5d214f76 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 b24e696beb..61f60a6ae8 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 bf38dab0dd..0567a16a9c 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 73780f8558..1752b8acff 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 edf92c5b41..3eb0b3535d 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 eb05272db7..c49626efdd 100644 --- a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-17 10:59+0000\n" "Last-Translator: Lyudmil Antonov \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 8809803daa..bbb9efe90c 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 985b9e32f2..d5b17ac797 100644 --- a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-18 10:54+0000\n" "Last-Translator: Michal Švábík \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 c4c4ac76aa..7f4141ef00 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 2d8d768973..f33a568c29 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 838856d1a6..5e87609137 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 9dd3efb9bc..c885cf675a 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/smart_settings/locale/es/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po index 275f9b94ad..229a0970d8 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 f5a334f64c..ed9609fc86 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 8164ba02da..823a9ae39a 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-08-22 14:01+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 34268b6063..f7b4125f93 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 a3fd6f913f..d18947dbec 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 9231068c92..1bb6571d4f 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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.po b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po index ccd3665237..e975a0fc1f 100644 --- a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 9703343725..4c8b1e0d4b 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 40d4ea219b..10c3430240 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 c388dac11f..1a2971ff46 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 6893f84f42..97e6af456f 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 6c500c67df..424771d30a 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 0ab896bc40..d320cd44e0 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 1631af5c9a..faa78b4ede 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 94fd38e3ae..029d243eb3 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 a5ba6c3a74..dfc1788b0d 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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 e69d9c67dc..36288bf2f5 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index b8fe615fc5..1b83fee36a 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index 2a215f9570..e526b6cc06 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bg/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-17 12:04+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" 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 0d5d62ba38..d7464df440 100644 --- a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po index 85b925a7aa..8f5d14912b 100644 --- a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-18 11:47+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" 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 ced4ca553b..60afd45218 100644 --- a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 c2e96665f7..ce37fb49fd 100644 --- a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-11-08 11:15+0000\n" "Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po index d985284b33..6a94af1e74 100644 --- a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po index de987f6dc8..276be03159 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/sources/locale/es/LC_MESSAGES/django.po b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po index d99f6aac8d..2efc38e352 100644 --- a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-07-05 06: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/sources/locale/fa/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po index e12c133704..6b6651820f 100644 --- a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index 2c0d482ff4..b2f8dff18b 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po index 3b6cb37289..0dacb5063e 100644 --- a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po index c7e5548c89..cc73f99f1e 100644 --- a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po index 53a42c931e..88a262626b 100644 --- a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po index 95cbbadfa9..3fc1c6291a 100644 --- a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-07-01 05:59+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/sources/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po index 5cb0f7b360..0f048803d0 100644 --- a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-07-21 20:36+0000\n" "Last-Translator: Ben Zweekhorst \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po index 632c165e3d..4e1a68d4cc 100644 --- a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po index 09678dcef0..f203880a12 100644 --- a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 c66744cdff..31baa591ee 100644 --- a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 7008e960a4..fa3ba95869 100644 --- a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-09-03 08:37+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/sources/locale/ru/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po index 7b307f005b..f94ed0aa36 100644 --- a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 1fc7660130..f6e6336a09 100644 --- a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 253bf069bb..7b955dd1f0 100644 --- a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 5c9b9a4ab0..f53f5b182e 100644 --- a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po index e1e12bb0d6..41bbc1fde2 100644 --- a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po index 943be93daa..6aaaa0241d 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -17,7 +17,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:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "" diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po index a45ae732c8..4f74d157ac 100644 --- a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/storage/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-17 12:13+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Съхранение" 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 96741374c3..f8ea519449 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,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:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Skladište" diff --git a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po index f5374ab0c1..b27441c62a 100644 --- a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/cs/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-14 12:23+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -19,7 +19,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:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Úložiště" 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 0ddf5e39c5..13a06670f3 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Opbevaring" 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 4faf7cf1a2..421146e20d 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Dateispeicher" diff --git a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po index 56b888165d..432b1190c9 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -17,7 +17,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Αποθηκευτικός χώρος" diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po index 7391d50b7a..4b3af10832 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "" diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po index bba60ea1c1..fd5d41785a 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Almacenamiento" diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po index 252f038dd9..27babd02e3 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "ذخیره سازی" diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po index 9ee61fb5fb..87ed7284c4 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Stockage" diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po index 34c4658087..0dade1d757 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Toroló" diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po index 6920ccba19..3565cf7bd2 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Penyimpanan" diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index 4660cc3b5d..3de5c743a3 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Magazzino " diff --git a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po index 6426a11356..984db9d7f8 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -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:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Glabāšana" 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 11b1087747..dc82b55d1b 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Opslag" diff --git a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po index 2440782342..7c75d3ab95 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,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:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Magazyn" diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index d7f108899b..4f9be8d6b0 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Armazenamento" 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 4e1dc443df..43912266a6 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Armazenamento" 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 c6e096d6f5..0a8b39a476 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,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:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Stocare" diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po index 4840213bb7..1c5a0ae41b 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -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:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Хранилище" 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 9b74ac6b78..a3c437ee43 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -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:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "" 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 819b72a0bf..854ced02fa 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "Depolama" 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 44c83bd073..5ff9a83869 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -17,7 +17,7 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "" diff --git a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po index 1eeaca14ca..6bbcd0c80c 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -18,7 +18,7 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:9 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Storage" msgstr "存储" diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po index be94237e3e..0f505639ac 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/bg/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po index 77307fd575..d834dadb07 100644 --- a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bg/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-17 12:36+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" 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 1de857fcf7..2a1fb4502f 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/cs/LC_MESSAGES/django.po b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po index e2dadfc1e6..dc17d04655 100644 --- a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-10-18 11:58+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" 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 b3486a2aeb..e2ed65a25f 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po index bd1bb696e4..0142cf795f 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/el/LC_MESSAGES/django.po b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po index 2905d95ebe..891dc1e7d2 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/en/LC_MESSAGES/django.po b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po index 2f4446769d..7626536cd0 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index 609fe7f919..b2394350cd 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po index 3494491404..f22c1f7956 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index 73a7cd81a1..4f208f1d42 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index e1426e05df..6da2cf721f 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/id/LC_MESSAGES/django.po b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po index 2747ae201c..df92e46cd2 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/it/LC_MESSAGES/django.po b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po index f519f9d93e..28013ee92b 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/lv/LC_MESSAGES/django.po b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po index 2585bc3ecf..f9a3984618 100644 --- a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" 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 3dabf4954e..b45ac133ed 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/pl/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po index 4de6fcdf7e..e6ae0a3dd9 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index 3c72089005..855840ea4b 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po index e33e77e343..0480f94875 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po index b5e54e9c0b..f8b2837a37 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index 2e91b0138e..cd980202eb 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2019-08-22 05:05+0000\n" "Last-Translator: Daler Abdulloev \n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" 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 81ac2e97a9..9f823f826e 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po index e481b95810..486a418db1 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po index 51ca7fc16d..4929091607 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/tags/locale/zh/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po index 733e613c5c..be5a6cc85d 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-11-18 22:39-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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/task_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po index 7e626f3ecc..adef4ea4b8 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -22,47 +22,47 @@ 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:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "العنوان" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "اسم" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "النوع" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 bb74cb041d..4859b101d9 100644 --- a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" @@ -22,47 +22,47 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Управление на задачите" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Етикет" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Име" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Опашка по подразбиране?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Преходен ли е?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Тип" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Начален час" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Хост" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Аргументи" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Аргументи на ключови думи" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "Идентификационен номер на работния процес" 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 e70700575f..dbef0431d8 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -24,47 +24,47 @@ 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:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Menadzer rada" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Labela" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Ime" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Default queue?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Da li je prolazan?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Tip" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Početno vrijeme" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Domaćin" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argumenti" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Argumenti ključnih riječi" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "Id procesa rada" 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 3e6ef8d6c8..a9717a12ea 100644 --- a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" @@ -22,47 +22,47 @@ 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:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Správce úloh" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Označení" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "název" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Výchozí fronta?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Je přechodný?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Typ" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Doba spuštění" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Hostitel" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argumenty" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Argumenty klíčových slov" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "ID pracovního procesu" 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 378b622aa8..aa98f995e9 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Etiket" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Navn" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Type" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 8940e1e707..346285774c 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -23,47 +23,47 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Task-Manager" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Bezeichner" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Name" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Standardwarteschlange" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Vorübergehend" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Typ" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Startzeit" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Host" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argumente" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Schlüsselwortargumente" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "Worker Prozess-ID" 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 a95e249673..9914f90329 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Διαχειρστής εργασιών" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Ετικέτα" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Όνομα" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Προκαθορισμένη λίστα;" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Είναι παροδική" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Τύπος" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Ώρα έναρκης" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Διεύθυνση διακομιστή" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Παράμετροι" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 754fc50caa..5d4610f898 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,47 +17,47 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 c3fe8343d6..636036eb9f 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Administrador de tareas" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Etiqueta" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Nombre" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "¿Cola principal?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "¿Es transitoria?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Tipo" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Tiempo de inicio" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Servidor" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argumentos" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Argumentos explícitos" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "ID del proceso trabajador" 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 2c698ae44d..4413707aa0 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -22,47 +22,47 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "مدیر وظیفه" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "برچسب" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "نام" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "صف پیشفرض؟" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "آیا گذرا است؟" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "نوع" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "زمان شروع" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "میزبان" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "استدلال" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "آرگومان کلید واژه" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "شناسه روند کارگر" 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 a2576cd0b7..f326da895d 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -23,47 +23,47 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Gestionnaire de tâche" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Libellé" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Nom" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "File d'attente par défaut ?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Est-il transitoire?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Type" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Heure de début" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Hôte" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Arguments" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Arguments relatifs aux mots-clés" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "ID du processus de travail" 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 b6ee2890c8..1169b4b502 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Feladatkezelő" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Cimke" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Név" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Alapértelmezett munkasor?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Átmeneti?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Típus" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Kezdési idő" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Kiszolgáló" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Paraméterek" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Kulcsszó paraméterek" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "Munkafolyamat ID" 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 3ab3c00328..8defb0d99c 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Label" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Tipe" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 9bbfa4db72..acc47cf57f 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -24,47 +24,47 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Task manager" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Etichetta" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Nome " -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Coda predefinita?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "è transitorio?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Tipo" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Ora d'inizio" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Host" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argomenti" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 4afb5e8e66..152715994d 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Uzdevumu pārvaldnieks" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Etiķete" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Nosaukums" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Noklusējuma rinda?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Vai tas ir pārejošs?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Tips" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Sākuma laiks" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Saimnieks" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argumenti" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Atslēgvārdu argumenti" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "Darbinieku procesa ID" 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 cd694d46d2..70ae0d9819 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 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Ben Zweekhorst , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" @@ -23,47 +23,47 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Taakbeheer" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Label" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Naam" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Standaard wachtrij?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Soort" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Starttijd" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argumenten" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Trefwoord argumenten" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 218c4bafa6..3180fc0c5a 100644 --- a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Marcin Lozynski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" @@ -22,47 +22,47 @@ 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:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Menedżer zadań" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Etykieta" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Nazwa" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Typ" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Czas rozpoczęcia" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Host" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argumenty" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 92bff2614e..f6d9227e24 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Nome" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Nome" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 8cfee68e0d..f7306bcdda 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -23,47 +23,47 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Rótulo" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Nome" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Tipo" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Host" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argumentos" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 c5e08f68d3..1c6e118c55 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -23,47 +23,47 @@ 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:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Gestionar de sarcini" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Etichetă" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Nume" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Coadă implicită?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Este tranzitorie?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Tip" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Timpul de începere" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Gazdă" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argumente" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Argumentele cuvinte cheie" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "ID-ul procesului de lucru" 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 5f548039f1..dfb28fc613 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -23,47 +23,47 @@ 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:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Ярлык" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Название" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Тип" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "Хост" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Аргументы" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 512559865e..e7b5100102 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ 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:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Oznaka" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Ime" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 46399d4ee9..f3908f2313 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "Görev Yöneticisi" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "Etiket" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "İsim" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "Varsayılan sıra" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "Geçici mi?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "Tür" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "Başlama zamanı" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "evsahibi" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "Argümanlar" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "Anahtar kelime argümanları" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "İşçi işlem kimliği" 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 7d55260ae4..403d81db0c 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "Tên" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "" 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 771799d875..1c8115ef29 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:16-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" @@ -21,47 +21,47 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:24 links.py:12 permissions.py:7 +#: apps.py:23 links.py:12 permissions.py:7 msgid "Task manager" msgstr "任务管理器" -#: apps.py:32 +#: apps.py:31 msgid "Label" msgstr "标签" -#: apps.py:35 +#: apps.py:34 msgid "Name" msgstr "名称" -#: apps.py:38 +#: apps.py:37 msgid "Default queue?" msgstr "默认队列?" -#: apps.py:42 +#: apps.py:41 msgid "Is transient?" msgstr "是临时的吗?" -#: apps.py:46 +#: apps.py:45 msgid "Type" msgstr "类型" -#: apps.py:49 +#: apps.py:48 msgid "Start time" msgstr "开始时间" -#: apps.py:52 +#: apps.py:51 msgid "Host" msgstr "主机" -#: apps.py:56 +#: apps.py:55 msgid "Arguments" msgstr "参数" -#: apps.py:60 +#: apps.py:59 msgid "Keyword arguments" msgstr "关键字参数" -#: apps.py:64 +#: apps.py:63 msgid "Worker process ID" msgstr "工作进程ID" 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 e2eedc2544..2099ac71cc 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 e93a77d1b2..3c96c67204 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bg/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-0400\n" "PO-Revision-Date: 2019-10-17 12:55+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" 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 cf2e64bb1c..32f9091d34 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,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 74d6dd2008..d5dda49dcf 100644 --- a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-0400\n" "PO-Revision-Date: 2019-10-18 12:21+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" 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 bb176b4fb8..0f93a58291 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,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 26a3fde1d4..17fe5c2df3 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 @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-0400\n" "PO-Revision-Date: 2019-11-08 11:16+0000\n" "Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" 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 0cb0097e85..fa2a62293b 100644 --- a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 610eb37297..4d4c07adf9 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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11: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/user_management/locale/es/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po index 419ca16e8a..d463be30b6 100644 --- a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/es/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-0400\n" "PO-Revision-Date: 2019-07-05 06:47+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/user_management/locale/fa/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po index 651ce15801..57045f8410 100644 --- a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 a8ca8f68a4..289313ea6b 100644 --- a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-0400\n" "PO-Revision-Date: 2019-08-22 14:03+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/user_management/locale/hu/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po index b7abbff064..a87eab407a 100644 --- a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 650175d3ad..f6bd649174 100644 --- a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 0e041130f4..a1cb378ab7 100644 --- a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 f0774034f4..90e3dcc972 100644 --- a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-0400\n" "PO-Revision-Date: 2019-07-01 05:59+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/user_management/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po index e48dba6d91..c67895a05d 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,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-0400\n" "PO-Revision-Date: 2019-07-21 20:36+0000\n" "Last-Translator: Ben Zweekhorst \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" 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 e6024c40d5..30f7822ab0 100644 --- a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-0400\n" "PO-Revision-Date: 2019-08-30 21:25+0000\n" "Last-Translator: Marcin Lozynski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" 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 e88541df88..2504cc5ee7 100644 --- a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 03e2ee5bc6..d934e8544b 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,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 0045e088dd..c25d72b243 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,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-0400\n" "PO-Revision-Date: 2019-09-03 08:37+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/user_management/locale/ru/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po index 6416c5e79f..f6b7de186b 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 f310efb39a..ea996ddb45 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,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 793fa7f7aa..fa7d2fc020 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,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 e93b0ff80e..d0c4973168 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,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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" 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 4062c78e9d..f9727d6a59 100644 --- a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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-11-18 22:40-0400\n" +"POT-Creation-Date: 2019-11-28 11:17-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"