From d196f3695197e29671555a422fe5f56702721d78 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Nov 2019 11:37:58 -0400 Subject: [PATCH 1/6] Add 3.2.11 release notes Signed-off-by: Roberto Rosario --- HISTORY.rst | 2 +- docs/releases/3.2.11.rst | 175 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 176 insertions(+), 1 deletion(-) create mode 100644 docs/releases/3.2.11.rst diff --git a/HISTORY.rst b/HISTORY.rst index 09298a3cb5..891493492b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,4 +1,4 @@ -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/ From b87db445dd7e522631faabaf5e2459cb5c047391 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Nov 2019 11:39:30 -0400 Subject: [PATCH 2/6] Bump version to 3.2.11 Signed-off-by: Roberto Rosario --- docker/rootfs/version | 2 +- mayan/__init__.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/rootfs/version b/docker/rootfs/version index f15386a5d5..17ce91803c 100755 --- a/docker/rootfs/version +++ b/docker/rootfs/version @@ -1 +1 @@ -3.2.10 +3.2.11 diff --git a/mayan/__init__.py b/mayan/__init__.py index 049c2b0c16..95f7aa2e79 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,9 +1,9 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '3.2.10' -__build__ = 0x030210 -__build_string__ = 'v3.2.10_Mon Nov 18 23:41:35 2019 -0400' +__version__ = '3.2.11' +__build__ = 0x030211 +__build_string__ = 'v3.2.10-38-gd196f36951_Thu Nov 28 11:37:58 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' From 3b8f376e95e8a81f2a3fa13270d8179cb0c96f13 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Nov 2019 11:40:13 -0400 Subject: [PATCH 3/6] Point releases to the latest Signed-off-by: Roberto Rosario --- docs/releases/index.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 17620f23c7..12ef2717fa 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -20,6 +20,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 3.2.11 3.2.10 3.2.9 3.2.8 From 6567ef22384916cf1322808e2c7ef467ceac735f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Nov 2019 11:44:07 -0400 Subject: [PATCH 4/6] Update translation files Signed-off-by: Roberto Rosario --- .../apps/acls/locale/ar/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/bg/LC_MESSAGES/django.po | 2 +- .../acls/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/cs/LC_MESSAGES/django.po | 2 +- .../acls/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../acls/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/el/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/fr/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/it/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/lv/LC_MESSAGES/django.po | 2 +- .../acls/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/pt/LC_MESSAGES/django.po | 2 +- .../acls/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../acls/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/ru/LC_MESSAGES/django.po | 2 +- .../acls/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../acls/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../acls/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 8195 -> 9059 bytes .../locale/fr/LC_MESSAGES/django.po | 10 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 8385 -> 8811 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 8 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/ar/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/cs/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/da/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/el/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/en/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/es/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/fa/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/fr/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/hu/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/id/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/it/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/pl/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/ar/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/el/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/en/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/es/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/fa/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/fr/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/hu/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/id/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/it/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/pl/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../cabinets/locale/zh/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/ar/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/el/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/en/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/es/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/fa/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/fr/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/hu/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/id/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/it/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/pl/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/zh/LC_MESSAGES/django.po | 2 +- .../common/locale/ar/LC_MESSAGES/django.po | 10 +- .../common/locale/bg/LC_MESSAGES/django.mo | Bin 38365 -> 38450 bytes .../common/locale/bg/LC_MESSAGES/django.po | 16 +-- .../common/locale/bs_BA/LC_MESSAGES/django.po | 10 +- .../common/locale/cs/LC_MESSAGES/django.po | 10 +- .../common/locale/da_DK/LC_MESSAGES/django.po | 10 +- .../common/locale/de_DE/LC_MESSAGES/django.po | 10 +- .../common/locale/el/LC_MESSAGES/django.po | 10 +- .../common/locale/en/LC_MESSAGES/django.po | 10 +- .../common/locale/es/LC_MESSAGES/django.po | 10 +- .../common/locale/fa/LC_MESSAGES/django.po | 10 +- .../common/locale/fr/LC_MESSAGES/django.mo | Bin 8790 -> 10221 bytes .../common/locale/fr/LC_MESSAGES/django.po | 26 ++--- .../common/locale/hu/LC_MESSAGES/django.po | 10 +- .../common/locale/id/LC_MESSAGES/django.po | 10 +- .../common/locale/it/LC_MESSAGES/django.po | 10 +- .../common/locale/lv/LC_MESSAGES/django.po | 10 +- .../common/locale/nl_NL/LC_MESSAGES/django.po | 10 +- .../common/locale/pl/LC_MESSAGES/django.po | 10 +- .../common/locale/pt/LC_MESSAGES/django.po | 10 +- .../common/locale/pt_BR/LC_MESSAGES/django.po | 10 +- .../common/locale/ro_RO/LC_MESSAGES/django.mo | Bin 29445 -> 29489 bytes .../common/locale/ro_RO/LC_MESSAGES/django.po | 16 +-- .../common/locale/ru/LC_MESSAGES/django.po | 10 +- .../common/locale/sl_SI/LC_MESSAGES/django.po | 10 +- .../common/locale/tr_TR/LC_MESSAGES/django.po | 10 +- .../common/locale/vi_VN/LC_MESSAGES/django.po | 10 +- .../common/locale/zh/LC_MESSAGES/django.po | 10 +- .../converter/locale/ar/LC_MESSAGES/django.po | 2 +- .../converter/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../converter/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../converter/locale/el/LC_MESSAGES/django.po | 2 +- .../converter/locale/en/LC_MESSAGES/django.po | 2 +- .../converter/locale/es/LC_MESSAGES/django.po | 2 +- .../converter/locale/fa/LC_MESSAGES/django.po | 2 +- .../converter/locale/fr/LC_MESSAGES/django.po | 2 +- .../converter/locale/hu/LC_MESSAGES/django.po | 2 +- .../converter/locale/id/LC_MESSAGES/django.po | 2 +- .../converter/locale/it/LC_MESSAGES/django.po | 2 +- .../converter/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../converter/locale/pl/LC_MESSAGES/django.po | 2 +- .../converter/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../converter/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../converter/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/bg/LC_MESSAGES/django.mo | Bin 8853 -> 9286 bytes .../locale/bg/LC_MESSAGES/django.po | 100 +++++++++-------- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1451 -> 1537 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 102 ++++++++++-------- .../locale/cs/LC_MESSAGES/django.mo | Bin 7030 -> 7072 bytes .../locale/cs/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/da_DK/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 7038 -> 7083 bytes .../locale/de_DE/LC_MESSAGES/django.po | 101 +++++++++-------- .../locale/el/LC_MESSAGES/django.mo | Bin 1361 -> 1428 bytes .../locale/el/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/en/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/es/LC_MESSAGES/django.mo | Bin 7274 -> 7319 bytes .../locale/es/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/fa/LC_MESSAGES/django.mo | Bin 1250 -> 1318 bytes .../locale/fa/LC_MESSAGES/django.po | 102 ++++++++++-------- .../locale/fr/LC_MESSAGES/django.mo | Bin 6090 -> 6147 bytes .../locale/fr/LC_MESSAGES/django.po | 102 ++++++++++-------- .../locale/hu/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/id/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/it/LC_MESSAGES/django.mo | Bin 1195 -> 1241 bytes .../locale/it/LC_MESSAGES/django.po | 102 ++++++++++-------- .../locale/lv/LC_MESSAGES/django.mo | Bin 6778 -> 6823 bytes .../locale/lv/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/nl_NL/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/pl/LC_MESSAGES/django.mo | Bin 1329 -> 1372 bytes .../locale/pl/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/pt/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1407 -> 1501 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 101 +++++++++-------- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 7049 -> 7386 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 100 +++++++++-------- .../locale/ru/LC_MESSAGES/django.mo | Bin 1145 -> 1220 bytes .../locale/ru/LC_MESSAGES/django.po | 102 ++++++++++-------- .../locale/sl_SI/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/tr_TR/LC_MESSAGES/django.mo | Bin 780 -> 836 bytes .../locale/tr_TR/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/vi_VN/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/zh/LC_MESSAGES/django.mo | Bin 1280 -> 1317 bytes .../locale/zh/LC_MESSAGES/django.po | 98 +++++++++-------- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 14 +-- .../locale/bg/LC_MESSAGES/django.po | 14 +-- .../locale/bs_BA/LC_MESSAGES/django.po | 14 +-- .../locale/cs/LC_MESSAGES/django.po | 14 +-- .../locale/da_DK/LC_MESSAGES/django.po | 14 +-- .../locale/de_DE/LC_MESSAGES/django.po | 14 +-- .../locale/el/LC_MESSAGES/django.po | 14 +-- .../locale/en/LC_MESSAGES/django.po | 14 +-- .../locale/es/LC_MESSAGES/django.po | 14 +-- .../locale/fa/LC_MESSAGES/django.po | 14 +-- .../locale/fr/LC_MESSAGES/django.mo | Bin 7159 -> 7258 bytes .../locale/fr/LC_MESSAGES/django.po | 20 ++-- .../locale/hu/LC_MESSAGES/django.po | 14 +-- .../locale/id/LC_MESSAGES/django.po | 14 +-- .../locale/it/LC_MESSAGES/django.po | 14 +-- .../locale/lv/LC_MESSAGES/django.po | 14 +-- .../locale/nl_NL/LC_MESSAGES/django.po | 14 +-- .../locale/pl/LC_MESSAGES/django.po | 14 +-- .../locale/pt/LC_MESSAGES/django.po | 14 +-- .../locale/pt_BR/LC_MESSAGES/django.po | 14 +-- .../locale/ro_RO/LC_MESSAGES/django.po | 14 +-- .../locale/ru/LC_MESSAGES/django.po | 14 +-- .../locale/sl_SI/LC_MESSAGES/django.po | 14 +-- .../locale/tr_TR/LC_MESSAGES/django.po | 14 +-- .../locale/vi_VN/LC_MESSAGES/django.po | 14 +-- .../locale/zh/LC_MESSAGES/django.po | 14 +-- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 4368 -> 5137 bytes .../locale/fr/LC_MESSAGES/django.po | 14 +-- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 23740 -> 23847 bytes .../locale/bg/LC_MESSAGES/django.po | 8 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 18231 -> 18310 bytes .../locale/fr/LC_MESSAGES/django.po | 8 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 18357 -> 18417 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 8 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../documents/locale/ar/LC_MESSAGES/django.po | 12 +-- .../documents/locale/bg/LC_MESSAGES/django.po | 12 +-- .../locale/bs_BA/LC_MESSAGES/django.po | 12 +-- .../documents/locale/cs/LC_MESSAGES/django.po | 12 +-- .../locale/da_DK/LC_MESSAGES/django.po | 12 +-- .../locale/de_DE/LC_MESSAGES/django.po | 12 +-- .../documents/locale/el/LC_MESSAGES/django.po | 12 +-- .../documents/locale/en/LC_MESSAGES/django.po | 12 +-- .../documents/locale/es/LC_MESSAGES/django.po | 12 +-- .../documents/locale/fa/LC_MESSAGES/django.po | 12 +-- .../documents/locale/fr/LC_MESSAGES/django.mo | Bin 33472 -> 33669 bytes .../documents/locale/fr/LC_MESSAGES/django.po | 20 ++-- .../documents/locale/hu/LC_MESSAGES/django.po | 12 +-- .../documents/locale/id/LC_MESSAGES/django.po | 12 +-- .../documents/locale/it/LC_MESSAGES/django.po | 12 +-- .../documents/locale/lv/LC_MESSAGES/django.po | 12 +-- .../locale/nl_NL/LC_MESSAGES/django.po | 12 +-- .../documents/locale/pl/LC_MESSAGES/django.po | 12 +-- .../documents/locale/pt/LC_MESSAGES/django.po | 12 +-- .../locale/pt_BR/LC_MESSAGES/django.po | 12 +-- .../locale/ro_RO/LC_MESSAGES/django.po | 12 +-- .../documents/locale/ru/LC_MESSAGES/django.po | 12 +-- .../locale/sl_SI/LC_MESSAGES/django.po | 12 +-- .../locale/tr_TR/LC_MESSAGES/django.po | 12 +-- .../locale/vi_VN/LC_MESSAGES/django.po | 12 +-- .../documents/locale/zh/LC_MESSAGES/django.po | 12 +-- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../events/locale/ar/LC_MESSAGES/django.po | 2 +- .../events/locale/bg/LC_MESSAGES/django.po | 2 +- .../events/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../events/locale/cs/LC_MESSAGES/django.po | 2 +- .../events/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../events/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../events/locale/el/LC_MESSAGES/django.po | 2 +- .../events/locale/en/LC_MESSAGES/django.po | 2 +- .../events/locale/es/LC_MESSAGES/django.po | 2 +- .../events/locale/fa/LC_MESSAGES/django.po | 2 +- .../events/locale/fr/LC_MESSAGES/django.po | 2 +- .../events/locale/hu/LC_MESSAGES/django.po | 2 +- .../events/locale/id/LC_MESSAGES/django.po | 2 +- .../events/locale/it/LC_MESSAGES/django.po | 2 +- .../events/locale/lv/LC_MESSAGES/django.po | 2 +- .../events/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../events/locale/pl/LC_MESSAGES/django.po | 2 +- .../events/locale/pt/LC_MESSAGES/django.po | 2 +- .../events/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../events/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../events/locale/ru/LC_MESSAGES/django.po | 2 +- .../events/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../events/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../events/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../events/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 7694 -> 7773 bytes .../locale/bg/LC_MESSAGES/django.po | 4 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 3789 -> 4054 bytes .../locale/fr/LC_MESSAGES/django.po | 6 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 6172 -> 6251 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 4 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../linking/locale/ar/LC_MESSAGES/django.po | 2 +- .../linking/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../linking/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../linking/locale/el/LC_MESSAGES/django.po | 2 +- .../linking/locale/en/LC_MESSAGES/django.po | 2 +- .../linking/locale/es/LC_MESSAGES/django.po | 2 +- .../linking/locale/fa/LC_MESSAGES/django.po | 2 +- .../linking/locale/fr/LC_MESSAGES/django.po | 2 +- .../linking/locale/hu/LC_MESSAGES/django.po | 2 +- .../linking/locale/id/LC_MESSAGES/django.po | 2 +- .../linking/locale/it/LC_MESSAGES/django.po | 2 +- .../linking/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../linking/locale/pl/LC_MESSAGES/django.po | 2 +- .../linking/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../linking/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../linking/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../mailer/locale/ar/LC_MESSAGES/django.po | 2 +- .../mailer/locale/bg/LC_MESSAGES/django.po | 2 +- .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../mailer/locale/cs/LC_MESSAGES/django.po | 2 +- .../mailer/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../mailer/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../mailer/locale/el/LC_MESSAGES/django.po | 2 +- .../mailer/locale/en/LC_MESSAGES/django.po | 2 +- .../mailer/locale/es/LC_MESSAGES/django.po | 2 +- .../mailer/locale/fa/LC_MESSAGES/django.po | 2 +- .../mailer/locale/fr/LC_MESSAGES/django.mo | Bin 9347 -> 9875 bytes .../mailer/locale/fr/LC_MESSAGES/django.po | 14 +-- .../mailer/locale/hu/LC_MESSAGES/django.po | 2 +- .../mailer/locale/id/LC_MESSAGES/django.po | 2 +- .../mailer/locale/it/LC_MESSAGES/django.po | 2 +- .../mailer/locale/lv/LC_MESSAGES/django.po | 2 +- .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../mailer/locale/pl/LC_MESSAGES/django.po | 2 +- .../mailer/locale/pt/LC_MESSAGES/django.po | 2 +- .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../mailer/locale/ru/LC_MESSAGES/django.po | 2 +- .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../mailer/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../mailer/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../metadata/locale/ar/LC_MESSAGES/django.po | 2 +- .../metadata/locale/bg/LC_MESSAGES/django.mo | Bin 15617 -> 15701 bytes .../metadata/locale/bg/LC_MESSAGES/django.po | 8 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../metadata/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../metadata/locale/el/LC_MESSAGES/django.po | 2 +- .../metadata/locale/en/LC_MESSAGES/django.po | 2 +- .../metadata/locale/es/LC_MESSAGES/django.po | 2 +- .../metadata/locale/fa/LC_MESSAGES/django.po | 2 +- .../metadata/locale/fr/LC_MESSAGES/django.po | 2 +- .../metadata/locale/hu/LC_MESSAGES/django.po | 2 +- .../metadata/locale/id/LC_MESSAGES/django.po | 2 +- .../metadata/locale/it/LC_MESSAGES/django.po | 2 +- .../metadata/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../metadata/locale/pl/LC_MESSAGES/django.po | 2 +- .../metadata/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 12247 -> 12306 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 8 +- .../metadata/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../metadata/locale/zh/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/ar/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/el/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/en/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/es/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/fa/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/fr/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/hu/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/id/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/it/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/pl/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/zh/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/ar/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/bg/LC_MESSAGES/django.po | 2 +- .../motd/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/cs/LC_MESSAGES/django.po | 2 +- .../motd/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../motd/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/el/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/fr/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/it/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/lv/LC_MESSAGES/django.po | 2 +- .../motd/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/pt/LC_MESSAGES/django.po | 2 +- .../motd/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../motd/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/ru/LC_MESSAGES/django.po | 2 +- .../motd/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../motd/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../motd/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/ar/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 2 +- .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/cs/LC_MESSAGES/django.po | 2 +- .../ocr/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../ocr/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/el/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/fr/LC_MESSAGES/django.mo | Bin 4148 -> 4538 bytes .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 14 +-- .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/it/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/lv/LC_MESSAGES/django.po | 2 +- .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 2 +- .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 2 +- .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../ocr/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../platform/locale/ar/LC_MESSAGES/django.po | 2 +- .../platform/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../platform/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../platform/locale/el/LC_MESSAGES/django.po | 2 +- .../platform/locale/en/LC_MESSAGES/django.po | 2 +- .../platform/locale/es/LC_MESSAGES/django.po | 2 +- .../platform/locale/fa/LC_MESSAGES/django.po | 2 +- .../platform/locale/fr/LC_MESSAGES/django.po | 2 +- .../platform/locale/hu/LC_MESSAGES/django.po | 2 +- .../platform/locale/id/LC_MESSAGES/django.po | 2 +- .../platform/locale/it/LC_MESSAGES/django.po | 2 +- .../platform/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../platform/locale/pl/LC_MESSAGES/django.po | 2 +- .../platform/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../platform/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../platform/locale/zh/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/ar/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/el/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/en/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/es/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/fa/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/fr/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/hu/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/id/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/it/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/pl/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../sources/locale/ar/LC_MESSAGES/django.po | 2 +- .../sources/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../sources/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../sources/locale/el/LC_MESSAGES/django.po | 2 +- .../sources/locale/en/LC_MESSAGES/django.po | 2 +- .../sources/locale/es/LC_MESSAGES/django.po | 2 +- .../sources/locale/fa/LC_MESSAGES/django.po | 2 +- .../sources/locale/fr/LC_MESSAGES/django.po | 2 +- .../sources/locale/hu/LC_MESSAGES/django.po | 2 +- .../sources/locale/id/LC_MESSAGES/django.po | 2 +- .../sources/locale/it/LC_MESSAGES/django.po | 2 +- .../sources/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../sources/locale/pl/LC_MESSAGES/django.po | 2 +- .../sources/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../sources/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../sources/locale/zh/LC_MESSAGES/django.po | 2 +- .../storage/locale/ar/LC_MESSAGES/django.po | 4 +- .../storage/locale/bg/LC_MESSAGES/django.po | 4 +- .../locale/bs_BA/LC_MESSAGES/django.po | 4 +- .../storage/locale/cs/LC_MESSAGES/django.po | 4 +- .../locale/da_DK/LC_MESSAGES/django.po | 4 +- .../locale/de_DE/LC_MESSAGES/django.po | 4 +- .../storage/locale/el/LC_MESSAGES/django.po | 4 +- .../storage/locale/en/LC_MESSAGES/django.po | 4 +- .../storage/locale/es/LC_MESSAGES/django.po | 4 +- .../storage/locale/fa/LC_MESSAGES/django.po | 4 +- .../storage/locale/fr/LC_MESSAGES/django.po | 4 +- .../storage/locale/hu/LC_MESSAGES/django.po | 4 +- .../storage/locale/id/LC_MESSAGES/django.po | 4 +- .../storage/locale/it/LC_MESSAGES/django.po | 4 +- .../storage/locale/lv/LC_MESSAGES/django.po | 4 +- .../locale/nl_NL/LC_MESSAGES/django.po | 4 +- .../storage/locale/pl/LC_MESSAGES/django.po | 4 +- .../storage/locale/pt/LC_MESSAGES/django.po | 4 +- .../locale/pt_BR/LC_MESSAGES/django.po | 4 +- .../locale/ro_RO/LC_MESSAGES/django.po | 4 +- .../storage/locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.po | 4 +- .../locale/tr_TR/LC_MESSAGES/django.po | 4 +- .../locale/vi_VN/LC_MESSAGES/django.po | 4 +- .../storage/locale/zh/LC_MESSAGES/django.po | 4 +- .../apps/tags/locale/ar/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/bg/LC_MESSAGES/django.po | 2 +- .../tags/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/cs/LC_MESSAGES/django.po | 2 +- .../tags/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../tags/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/el/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/fr/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/it/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/lv/LC_MESSAGES/django.po | 2 +- .../tags/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/pt/LC_MESSAGES/django.po | 2 +- .../tags/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../tags/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/ru/LC_MESSAGES/django.po | 2 +- .../tags/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../tags/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../tags/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 24 ++--- .../locale/bg/LC_MESSAGES/django.po | 24 ++--- .../locale/bs_BA/LC_MESSAGES/django.po | 24 ++--- .../locale/cs/LC_MESSAGES/django.po | 24 ++--- .../locale/da_DK/LC_MESSAGES/django.po | 24 ++--- .../locale/de_DE/LC_MESSAGES/django.po | 24 ++--- .../locale/el/LC_MESSAGES/django.po | 24 ++--- .../locale/en/LC_MESSAGES/django.po | 24 ++--- .../locale/es/LC_MESSAGES/django.po | 24 ++--- .../locale/fa/LC_MESSAGES/django.po | 24 ++--- .../locale/fr/LC_MESSAGES/django.po | 24 ++--- .../locale/hu/LC_MESSAGES/django.po | 24 ++--- .../locale/id/LC_MESSAGES/django.po | 24 ++--- .../locale/it/LC_MESSAGES/django.po | 24 ++--- .../locale/lv/LC_MESSAGES/django.po | 24 ++--- .../locale/nl_NL/LC_MESSAGES/django.po | 24 ++--- .../locale/pl/LC_MESSAGES/django.po | 24 ++--- .../locale/pt/LC_MESSAGES/django.po | 24 ++--- .../locale/pt_BR/LC_MESSAGES/django.po | 24 ++--- .../locale/ro_RO/LC_MESSAGES/django.po | 24 ++--- .../locale/ru/LC_MESSAGES/django.po | 24 ++--- .../locale/sl_SI/LC_MESSAGES/django.po | 24 ++--- .../locale/tr_TR/LC_MESSAGES/django.po | 24 ++--- .../locale/vi_VN/LC_MESSAGES/django.po | 24 ++--- .../locale/zh/LC_MESSAGES/django.po | 24 ++--- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- 986 files changed, 3037 insertions(+), 2777 deletions(-) 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 497a803855c816512c12f60d47a24e5485c1c5f1..8edc22945ac1c0b743c69fad7479d576cc7791ce 100644 GIT binary patch delta 1974 zcmZ{kU1%It6vt1}G>vI$OxmW_)b<)%HRd~MjENycZBnqtNK;x`j5681N!HBn3^TJa z8;}(WMGzm_(BeZ$tAZFpUyLXfKPrLx5XBGBf)An=)Ca*es4tn0Ukya+d!i+slVJbW6u6(Sc|U)dnS5pv>I5w>LI6$ZQ`XCcpI5k3UZL(Y;v z3eW$A+nJYFiV$1sVJ~cjdSDXj`yniY&%^cb801e*@S|~FgSW$Ta6R$mB7==AdSPo z2D12O_N1%3V40ghCsOO!Ay6<(UiM( zXP9?xLVxY)Nd}+5sm&z73mr8g6Y$Y3$j|yBdab}$w~Ab1JxO`T-~boq0_&gNnGf(X z{n5luK~-`dY65S<5qKUFTQ=;-D{6M2|J^J!u%H`<;a+$MY6WMYD)I)@3f_U*(~qF` za-}f;25Jj`EX@Bb%!`c(HAoHI4V$4V6@#kqgvsVFPo}Vtg%l~rp$1xn8u(qvnQ{T@ z#_ypIe~0Zbc2~aQQ}7J)vrr4@ugiZ`dm-XV93FtPP|x{1%RpcJ0jdJOK>Z4?K+W_Y z_%JL+CVg)YR7v+0=1;*QeU9sXHGQt872ls5P;ruTpP4!4fsx6 zZ@Ma>H=MS~1Gw6Kcvo&DVqhz-Jzcd2R|ilP)TFfq+AcNyB32D$v(my$rMVZ^&ql2o zSGiT99$ddy?wB;;`mL+2!RvD)5$`~yP>B4;8v}JL8a<8H(K4g zRJOLJsPhpUCgL_UaWCaW2`?3zjF&bsCuJNr^h}uceJ_YiG--_=c+c8cWX3XcSGVpO z4Xx{rXPRSPvc+#nC)>xTW?Jg{{B#hTbizbx!Z;@8`5EJl=XQ^I-jt~unDJdN(5FLA zh9CobhDPc*(d_reY!G=cbb^F8cYM>%rR}9}mCk)wT~%@Te<^9~xtGc+hkPgFJ8sgp zw-ojkw$}CKYOyAs2uRn>7>?EaV}W%dFECCjZd~icP25gf*Yj=AZ04?()h~TfktrEy zYijE@ZCyQ`-3_f+`QuI)H5~|?ROssN9y1s$FT|G@f<(-WOj;YynBGu1-anCa60Qo; zx0I>cR@^(Bjsi=loVsD7nfB75@xAo4oi)n~6OL<>HWiuBOGh@92zWEEab#>t%go+b zVkb6fBZrOYl(925>AMbwurz*{=E@r89; z$`9T!?bSXUxp^PPb9s>^4JmXZU$MgtLq#XD1hSDq&Ri#ao%>vmSc29z)0En!#@b6I F{{c&+Wm5nE delta 1334 zcmXxkOGs2v9LMp$Iyq^+(y}z4WltL$9aFKFL6}iglo&12MhNMFlcR;LrV?aY1Y*xc zWSF#x7Bvt-5C!cdag#j|F$zRn2!R+>)b}@Y=P>7f&N-fY9{+Q$-y8cHLQ~nUJ4UJ_ z7mz0t%#PrLBp#&CF0)hk1wUf#60>#&%!*`;60~3f|~dh=HokL4>pO1 zaTY7Fj@4)b=dd5Uocb@!WPbZcVL4`InYCak^0QtZdhrG-bOVm}QK$0=x8n$^-&f>k z-*{+YKe3%7_>FDUTeD+F_y#j+zfBlI9TY}Zm@UvDE!S)m6IYpiqJ0ee@kw56Ko8s3 zLTXT<-;J8E36JARWNdqeir`yZhoh+X=5aqRq87ZTfcUd{Yvkr>#Vx2aY(ouj-l<tNC1P#S_+Ua-|FH#@G zDoo-gYR5G=gbk=2Oe1sJ46Z~MgEV74>PQ2qe%DYD2qX8<22cxq7^1M3!Z51i4^&9! zocbT+1fmyHe^=sOMUxh`$tiC`uT$nUt%O`l)`esUDY% zS(i$QO<4t53yPLTC^ajxFE{Lt+$@@K F{RhH!fr$VB 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 a97a3cac672da7e0754c549a3385cb744da8a49a..858f9f39f07dbaf4786b8278bca8bff82b2fb739 100644 GIT binary patch delta 1666 zcmZvcQEXII5Qe9S#s?p&!3Q)L4G9{Je*fKt2g79Nesj(} zXXebzxjX;twZZZaO?Af%89*OFf2lEh37)%)2XeE{Y%ly1egk(cGW#BOEjGIjm)vc( zfju|j&zir->t+q%!qC6a1%^IIh=x8AHgN?09*De>(R#{Eou4dvh} z+zNk#wQ%F|%Ekdm5o`!@7JD8(40l)Oi%@~5;Yv6IN!n)Ni|{n;hJQgN(0Lz+BfhQ2 z(8Onum^Kgj*%cl;;g66#HqcaAw;fVC8>#YDsBVqIUYLgR_a4-~_n{8_vonl;g`@CY(*Kb8f4Ddb_`#}5 zpfgb8PoOGr4(@_qKvj4ReN-ztTB-k9j6NpxVh?aya}P;ZC55n*r-#~9)M-r)j!HWuAuY_JM%6f$$9B|vb(94dw zp)g8K%lrZv5g*oYv>ZGnr18FBW_(GKxShPA5Y;#jLWKymK~QY9ce8 tVSSLp;g}1QQpQ(m7iU5_b_)k*@08TS!4q!G|9@JW65eJvcc6K&;XmAB`8fap delta 1353 zcmYk+OGs2v9LMp$=A%ZCNGh1l!0 zpFvH09v9#svRF&uP8`Dq%%3y0fH0n>-l{tD+cOIEvDY{kKj9wyjr^>gMyNtK@EmT#K~(>7R75^{_kW?zf|V107H=h- zFb%9nO&r8U7)A~3#vV*y2;ZVsR9sLB zXixW}-n1Jv!4cF0ub~EBNAo5%`@PB77N4;0uk@){LLEW%cjwX*5dJY7IVM4u$b$Bibq+b5N@fO@hbw3N(o zN`hG(nTWb8)gO`emLp-cWPN%{I_b;ZlD^x2N#~-*t1dpurchasing 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 c1dbc1e0214ec5186ecad8471df31dd50c26a260..5ee2c551aca6ed39d8ecf647bbde2334c8fd17f0 100644 GIT binary patch delta 2809 zcmX}t2TYV_7{Kv|VHtu0IhCcy5@wlQs**5YSZU`)mU%t1fQxAM`b6&Z&- zA`RFJci>Za6jSj82H{uOA8%nA-`-H{?&IdvgQB#S(s?rw5YaKwnrO5sI=N`Ia=}c>Erp#k9euC)c1>WDDy3&K(pYc~Kh<=fsU6rblc;O_xPtIOo%` z8y4Xz?w^h;$vhG_tn_94L%3@w>%L(m zGaOHjW^>?$W0?BippB>E=!##)ioC&tp)@CjF*}PbT<@4>Dt2&&S^vk8y+uB-{2W!i&4(v|;0QGy1^*Y~|F0(}bp(XLyhB5k8yfvFHrblkiA+Ur^!p)`Za*@6G zBc9>Dl?z06kq=;^RFk`LCSQnIM5W0aYee4W`M^4cjr`m)k@MW|-@y3$u%TR}(2pA~ zHJP#MU|@AWu&px7axm&DD8ykn2P5zx*5er*iuTo}M@q4od^u`G2fWC}g%^-vm!DB5 zY2q3ke+o0#m=7&PUGK{<99QEp+=II8GS-?d&BH44Qq<=^M1AfHE5C+O*3_{IWo1lbq{u3O9sTi=qd>{w4A|sH|l5uz#k6{kxZZs9I z!&vgoNFC$^>ZFX@WO_0i>wVY>ofLLaXxnUVn7GwUqPaMb2OOAyhf!y3E84IV!_aq| znf*4rPo98xG595s-*|5)-o-mFi@d}6%R9|JvSgRp37uCd=oqH%7CD7SQ9m$Yk4SHv zk2SawM=?k4A)O=%`%O!a<7Dy{oQeSl_~XG+Z0G*H_#OF_L*6;fU#?lEiI~m&EDN+% zGVPumx;t*PvQ*0eoM@Hx8yN&s)Vm=TBI`ny5K{;S%v`Sniy(6{3bt5n;Z5o*# z!wH>0dQ2d6>`IATBA%E_EOf;N^%}8-lD4Ok(02DE^jK=}{!Zt&o?yDmVj_zuBIda2 zgEEqrQ7R^MJ7%FgIoOB1JEWe7C8}MY21R+-ew?1Nj^#MgDzA0<1SdIJ3*P@4>!ggb z3iDA{A#?l55o49uYQ#ZwCzxs8qlDj0L?ls1^e1K$Wkfe3g3zOuU?=g8GW7QTVdhaP zC;SLK8eFZxNtvu`@1aYig6Ks=6FPx(7VFVStRQrfz2LTW-5wiKT-j)Etg5sxa5$E_ zkEGrV3CPN_XJ+SRy4L0PO`f#6siL;J#$Hg@=%{n7u;82j-%69Sy@(-SyN<8N!b{aj-xecX`|Kmx9@NNncsfid;jab-+S-BEk|q@ z58Hh0y+WIXV+)Z$WQU3ba8g%(IAX#@5;4}&jSo>T#lhHMdDJ@p9Ts#Fxr2Q$zq^PR zi+hOt#r2=`6uFD1BSgA|h)>>$6miq=S+vLyo5%ybMJ`cy^`VSWF(P)1#V(kPA?UQ~ znW!Ck7`a8tFbeCiGwwkrHe(omfc^1vOym7>je=en7b`;N#DV%E7t(3TMLj-jW@giB&ouqrEkHWmZB6B&>+K*9SHr=~` zRX7I6CW@TF9hk+?iyR_1sn;iq?BxDc14$=!TMDDc4{PQ|fK@~;={qrrtQqSnt_7q+5ys2z1GI;{FFBw2C~8!;h`(c%HrsreK+C10Zs zK+;Wyqmk^37qvr8>CC_ObT179@dX@#?<31X{zW|>lVKKNe;iLe6}8=q`ocOqf(>{S zU74o+C)5F5#c=!$bt>*6>s%sz3|mj6ppJAX>VxxeAr_#{>1%ik?O7rb%&81zIv_GT zSQHQPOligm_%S|)5yMQ%=c0CGF>QpWCAU#ib`PU5GRLHT5U$~d zVYr(1qpZ|L)Cc7Tvn#vV!>l_wh52|HIVBDrJ{C(+U%Vg7+2*a7V`KjFMv6Q~gLkyZ zmprgLOa2>de?%mSR0PH`uiW_UB+|~Ltz}pzIe&1f>DZjd&AzY12(D|eY(_Sg9Kw}& z2ANH97n`+Hft_{#Z>KPw6HOS89XJbZPly!aZ0v;x(SawBtt@S*Bfe>!Pv9Z?oD6>S z#al6WANHhv0(EN7TIavOJG%d`QFs?SW^xu^Eg{8ZsSb zBE63K{Qm36zZRV9%qq>rXzB&{GR{Cd-o_;uvfkWSiTWW~Yt=VnJoP54ei&IkauP!s z`8}&{+i13VA+mg=Y9sT{M^E0P;VfQ7C$`Y8FZdC)1Ha-7`~#oGiJSOL<7Lzi$JU#* zk&e7erl2mya~Ol|xS|vPfVc}QwwUvO`Wnn4>C$LExpA1x4P#JO>k{mZ`%o9to7e+S z<1cs~FX8d6BER$CecPzxjvXRz(7tr1`F`}?WxjxGP^az!9>$UhyUh!3;e#}U?-8lQ zBpk)sXhM=A=bthoEqdB~`xoF8+FNiqhCD+Sx!#RGQ~!Ifzoctwc`e2JhkoZaSrw;c z7o2F7Cu4?H_Fw@qho~Tm2xyYkZn^MvpvVaj+!vDC#un)a4Qb zh*F}=?+S|=!5jp;z7RJMk%S&k8iK!5`CU%1!etSm%Xth@;;#?O7+g)MkeEQQSN=by zQOdV!4qW1I3ybeNlTwn^s?-o8t@=8Dq&-FVN$~H)YLrn{VHN5|)1`I)&`*pWe0^jY z(UaIr=uu466LAEaKe(x9;as8z5liTy6J1Ws(~2fHlwUV7p9mrJSm8fsPjRu8gNN>h z1w<5)KrAJ6!Rp~9_>=?}?Cik6@a>Mk+s?Lb>8{+w%q(|y=8#Md`y`LIHm$hEv&>uR hsjaSYCr+y_E3c`oMz5!)qB`(>?)-wlto3cN{{aH|TaN$$ 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 065a2f4db172f7ac53cb8d3a7f277b4e9d3bb293..89338c96e6f91534b018e67397015f870e92b8f5 100644 GIT binary patch delta 3643 zcmchYZ){dq9mh`#WgW_Zu}y?Jj>0IFwsb)GQyJ?lv~(7#12%^O-sidJX)oO8-e=Ff zPZ3;vmStqJ@W!zvi!YoeZnOTEW=q`C7*mt^f`mBD5;Zd}^UuayBBJq)iGIHKxh*g&w9SmHC?}IB@y$o)G@?i*e z!hMh>=5ufrJPo_xGf?Y(1{cF$LLGDo-T?oc&o{ltnAJSDLhaKD7n!;-Tk?Tja6S|J zpf=bKPs2~aBk*;&4fem+m;rba7T`3z3ED*s2YR6#+70I z;T`ZiTn_(~&tJck{8JvYgfR8ON~nWA1iuA4;dkIK^6@X+*ofe9NHxq;P^teKyczx= zAHN6{$giOGeFKidOK=nH!}}f>DgVQCo@QV#dW6w^5Pk%nf{O43$WrqX zM;ZJrJOQtWO~xF@E7ksuTL=oyL*d$QE!+wZ)#+@f^Eg}sFTnfYWhh66$(L$) z4^%`)bB^WXG3;mjLCBw(=0}-$6)N&S!gcTp)IMzpsTX#@ZLofnjut)zKLDSGD#0}5 z9rJQN{~M?b`~gySvwB5C-J5dW1(mT;m}v@rndif>4F3*?;4y@vQk;j6aK35gtD_V> z3Mr3y4$7eyAs4~?2)4tEP&NM>+zsd9t;9GCwQd5I;3IH9d>d-tJ5h26JPLLH&pb?_*Q~US z40b_$GXZ?CPUlfNs?q!pHV*E}xe0!p@$K+l_!v|KuR|T&f}&K@MNlPM0d?f4)`o=g%80a@C>{iz6qs;6}Rzqg!jS# zo`=e0+uBB^)z6VpYm_)e?+lT22Dg)X1d*K31DcX$9wvXl= ziEsovIy(W!un%LpF={H$Y~yBS<(qvTq_c7MA*b{rO=R(_rlowM2vsw+#h5-Os*J`S_wPk@SttAR^w8ry=ip6@%q+wO@& z-wwn~#i3>r7rJ6<%e62KDj`QVUh1}^QSN7Bh1}%aVq9ib>N;&P42s7aN7mAm*@6q> z6E?0|Kdu!*SHEUO7$kTXTd$Y~6JFYgUk`EAZT2@j_*ZYMt{hMNSN`7jpE~?+`g`uc zk{34Es8%kxs*MZB$Q~&k_fmTz2t#Gs50Xmgopipfu%zORxpOT`HxG@IzLN9OTGiQc zFJUD`_FaVnlM>&0kw3RZ9=;7C>)BE*dnXsm)Rv_`ZyMOR)%NuC^=@9@Lt8lFC27}z zsuv}pm&VmTJ6N5W^k*ikLDB9Xcg{a)cO+t|f2`~UVK-&mIkj!sPh0CnTnxQy#ppW? zWICkl$5AvhiHgcI-zYnq1n)XY$f*}m*r?r6>I&ga1iqUU=V&2ykvnD4R~SrGof$3$ zb|S7NcIxJ~x0~yYxg--`cG%2UtamJ~rLNj-_j&<4XG`Q~xlE#@(^4E2S!^qDt!k5* zN$D6tMap?tO9EG`Ufr?V9*mqV#ngb{uCBHmQLYCHF_ZKIHQY?t5LXL0fQX7gm+z89 z-o~|D++C>u>QaxW5`xb>$uzE{w$BOt8sC(It6o{+Olp;Sr5cp~KcT*BqckoV delta 2221 zcmZA2e@xVM9LMp`9r7~>;L402m53;)385a2Hn!--fpezw+E6yP z%r<0>RcfSeR){ zD)wR)_F*~>Aw!svL_20isZ{ddAU=g3qX)l6&EZF^#s%chq|jRl=Aa+_sPFY-E)Jpw zisIw=wtasbpP~Ies-H`kV`9c!u@B~O87~%49o)oYco%o$@MB~Hzr&Z%mCaz-hEL!u zY66#06S{^uIFFj}9aO(=9#&u$dKll-Qz2`n1KY71yYMtF$6v7!AD{-vXIUDc6gA;W z)W5GmrMv-aF=X2j`+h%a0!NTPGs#Cx52mTC!jG^Vzd@zwE>`1x)Rq)6x-wCN#drcW zf%B*deS$vx97A{$pT@$x#QQoVnI>r4t$E~M18w4g+>Tno9wf_V2$kAVEWkrF|6rcnLW#<_3^6PY=N z%ET#*DK#HZ(H_pDIxJhA*opuu69Y&e<^;~-1$3dxwgk@M(l+WasxWuwW@%!Yj0(5Y zDLy{+d(zMN&dN1wU6*9h$$pv8KL5Y$;z2o~v$Dy)+>Ff0$zCtMLKF}cgcjr`R9+xn zC;HT&^l1OJvJHe%%vo~^huqn7WhYtm!xAEDiRXzmgzmo1NIRkODzTN&{|{k8=ix;n zS@u$?v5g>hGrr+!{#U%zI&5nXD*f8Sjf75h7oo$np3s(65uHRaku2M(=;}2jAD|9i zDUm|FMyT)`<=i}{v6D|7u64u!kxQu55jun|#Ipp4+WG&z6;*VQO#DJdYMOihNZgZK z;+}dh|I?{a&)WEJo*S;3+MqX3*R(EB6`*8whR4SJz0vSnV{eAXBhe=Bw#eX6bUcD% g;plKA{;=RihB|63`O7_(S$1ox$k!78%-8IG1Q!&?KmY&$ 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 3070b653081e29baf877f3cb77769f925bf5e6cd..22970a1ae60ec63b2a99fa071e228c96fcb605f2 100644 GIT binary patch delta 2770 zcmX}tdr(wW9Ki7(LJG?Yq9U@gxu^&zEP_CRC?F^=L!n4Z1$itFF-btPOg5i6W@Tn0mRadI(qm*CW2UEL53RnxJ=gBc;d9QpckeytcYf!vp)X*6 zUx4?*(4g(YwVo0~$q5qa!3Dwm;YtV5{g39*Yr;jFhE7gVde*L0QNXUHqiCXD3LVUIfQ$;mr9#cq?#KSZx*=~ z3mM+mxEc$v$|Z6PpTRVyUL7m)JMAaNi9EvZH^zw^r9CuWqz+HxCi*jVo$v_ZA-HmM zf|=kM)CpZgug;*KiiYGb)R8+Tnl&DS8p<-%bg03Z*o@`44_Q6=2X(STh_gm;0_q2{ zQI{|uH8Mr0@0o=aSd~Ql^?^Nf*zt8t#Y3q5{ir|q6?I^Lqb^BcvS|-Rf+h~!fLS;m zkDxA5AMz9V8FeB~w~2HrvI?@*&HC%e_R^sv-j8v35U1h=Bt0Z1#oW(88|@q{#v-eK zE9wWkaWB4rZ(#W((|;XxLW7uHC=Nzll4vg#5?+} zaI?0~$s)69yVFIeN*D4iIe;bj1Kx(o877jePzSOe^?C1RDh^(B7^l#2Hq%5T@)i>^ z2M(v-jbT`TD|x;W@1uQ^jNL)IAWMWvOD}s_2N2H7bX(_P4z9vHJcx`*{>1J8*5A$D zLSAs3c+(-FxkLnCQzKPcYC>CqnllSg zm!uIR@LpuhvKDno58(*i|EH4Y;jF zWE?lHF5)o3m|8RA6x4`h;utK%P;5dypgK^u;k#DUM57{BpDb*AmyXG1T%CJ9{d-J%_0mP1=C6r7=nJsLdsop4v3eBETfG)h^nhDU zxp6tI%AMFo(Oh3=_36f1OL0(GRR7N8gpe9a7$usb7YQMxum3+jj4+26wOUFbMXz?> zhqn0C2Ta4C80;kfF{#;0()kY-y{+3}1x2%aVNYb}rdWHCr_~Yn#wYBy_| zoR;dEl$o88>FdghvKQC3*Dh&r&1mnaZ|>QZ^>Sjw?7EM4v@G@T$5mh3-s!3BDXTve F{vY*yO921? delta 2722 zcmXxm3rv+|9LMoL93wcOax(=bK?OYAat;^=j#;R%NEYqxP-R9IT+GTUgT(d39Hl2Nc@B8{}51;3G-rMv1pa1(F-nkI7 z=|W88TxzdwqimoKqL%kE>%rQ1{!j)anq^~#XB7^oe;)>Lqvt;F_!+E@G5Zhu|f45(bw!69!WM!@>#?_Ofjos;PZ5|!dSCg`kDPgKiHo(rVTLjV+P)e!_bFC zUcVGIkvow~tP#_&6XWn%EW&O~z>je-p2T9FZgLOU@X3tX|{=>*9V%F(Jvz0Ya%ojXPGVHz^U6=1(q|t z)7XL&aALOEC%6U6So(|{v%l%DA7-|d>(}NIPWrL=tR9czX2$chPxvx2W!%Uon^Kl05Mt0BsL@icvRs=Iq4=6xwVGtFW z3e!~@BK|sI8v{YyiRyplop=g0p>wFMxZw4#Ai=WhxCsXpvs&DP+M3UhL-rkN z0aoHhI30<;g;5iFu7v&9OkZRm7kA)T{0K=4yMa1BV1%25gK-M|0@QdI^}tTtiyLtt z220)XpHU0Ch>3U^wH4QpJhzkx%hrK>)JjL9Zaf;7Vl`?{-@q&AFEdMKPi-XI0V(B9 z(?ZBStsAG}ah#6Hquh`$LQP~Da;ddoCijWFN@FwwhwgAgaupS_>zIxy6>jMBu!9Rm z;UkRiBU5+L&#N?J(RPe?SQEH{dY$vQ=@<;*c-)1|$YD;P{1?M7jw&kcT zeFbmB0~n|G|7#iw$!YA3iPOwjyk(%0Xcp>0U8u-xL_OeTRD|}R9{fHMOgn;o@gGdW zxLVgVRMKUm&d6$#}lT`aX-D&8_Yi7`sM{@e{g=zLiQVb6V8i_KZB8_G&&aZS>?b_OUzO+Hsr3j zA1We)a0nJ)B2Gtrm>N*8;ZAS-5GrX;Aal3kMmOYLIGFxR*bm=BCF99P=A%%2%Yd@~ z2Ta1>kVV*K@5D(>eEI0tA}L`J)D1SEwqgtF#!=K(y@dhXk2~>uR8n>@J8ex5-i1e( z5|3OOzGkzBFn~q49d+YRQ8)YsNpw4ddaY6)aDOeApr3vhDsr2#9e1D>mb}b01JBbR z;u*W#z5lNf8Vczp)C#U5zYEr9g&W#J)B|czTQLXYunEJs65H?`>gTp@C9fH-c+maC z?poz0_hlT*dBa-x>BdInRBJd)Bc4WJwR__-98bRzpW;THIFWt~;n74UV-D8iaBN2> z2T;j&2%l!WBiayO*sNIGEL!FhUPm!j(WXyxT5iUS@Y*4)rjnt?%A8-Db*L9NK-G&( z_S;-)B>H>&z~Wi7RQS9YL3TQt(}i8o6<4SoAm6szUYvk3#U=F=LYA+KoL#(C|> zqAC9TNGH7nZ$v0XRn}7V342@}uVi`ZHDQaKw0_bX<2zvMshL!^*LnB&7C8T8^uY|O z3OQjUv@KRg!R^Igy(dekKB~&Y(J%e^!AISWlLAe&^&wQAl4j1Q1Dt$ZgUaKDJ-LaS zb9xRIolPnUR%Vx$Rh5?(mQwt+p>TWg?6%PA@TyRIYg<)zeQRTLTYD>pLv1Tsdk$B= L8R+R~I?(rj3ne^@ 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 544f6d185463e08e55faec61a4ece19788390cd1..b8ff58299067bcaac48d44662254f288ae863265 100644 GIT binary patch delta 1838 zcmX}sTWnNC9LMo#VN12;)(fQ++i6Qh-4jZ84h9oqQiuU1F$N`?z>D$wJG(IHoX^ahIdl2X zY)|%o`&4?NX7NcwdXl`BJWy^-6b~)tp;Tc^4V2*`tV90HY91kMDcON5sfSDTZTK|x zowx^&<6U?StMCRcHzsZVqfkx5vL(jUV-p_4ZfwWTaU(j^1Z9=Q0cw#Z(^9Ih$EDOa zAp@Jf();JoQhxz!@gQmeC-5lqn<)zWX=r14@8cA938vi22P`3JU!nsHj&Gjvic!sz-1F`%wd)Lk)BR z8}Ksfh;EkZRdmw(cGSW)UPTj=3BSkJ%Z&LAb#$Y=tiwsvLQmr=oW&LR(@NsMfx;CUI0aM7Ha^0&IE!-_ zoEZ;Ia01o;Q`A5g@d5k`eQaX3UHB*J^7V3|S}~29@D#EqGmTo<*Y(7IHHDvP&ii5kM$#mnO^}IwK{8kUL|Vvu}jL9gkBY zu0hgu(m`=^gOhz2A0_Y1UkF9Ys|Lqj_F}1MY9t=Z*HkW4H0+Lf_{w`itgJNd~JuLNgK6;@mP$n8P2BSHZ|qIPFM~1Y9M6o_Z`_Ae=ZkaslNwudWxLvj{|BGY BG9&;1 delta 1495 zcmX}sOGs2v9LMp0=FIr2(a}juEltgQ=ChZkmP#2B64W9iltM^~b{SC&Vh}{oLR=UH z(u0CF=0Fl8L{wN2QHz4g*RBXkQb8!P?{Dt4!~ExS?z#7#$N!v}7km1fLlc4Mexo!I z8ANTASqC18=8H1rF$>@{F2_0a;sWxqMOP1vNnFRH+B2~QbMP>p!dM)`czln3vye?t zNuc2e2JttZ!z3Rs;}tB!A=CiVs19b4k1e{_zL-ddmW*o8!7MDoWZZ{(uN^PpN$h5P zo1=1F4NR{bW8=(LVhtAIUM#^gs19zUIvhggYR@neU*j75hAS|dhj(BAX|h&q!!}fg zMlgf%ZIp_#{Rt~@(!CClmL9HCQ5_DTI=YLgIE>nwSMK$=dw(7^F};)rK2!!v@GKt1 z=lBsrn#m28tCZcsdc2RC(0Ak+n{n^|MQwqXjZ4QgytvG)3bj>_63tR@95umTxC-NV ziK=B|DOMm!w~i$8KS-sEhQ}Dsa+KOJ)Bs;lFD#%s%I9Vw*5NxmfxEGWQFYjQF&p2Y z2K_>|F$@hxv3Cp54ZuN)|xe70Wx>%LiHEwrBXrVGIrxAPGa>svrbkV z%yJId`D`bpSMfCW2T>g)u6MR76*b{X)I=IkEA2$OvF(J1s3uhCUL_PslT&y0UI$M_ z`&CD5B(xI!`RI@}5ygc5ObUoxViTdVl_-hSoG+ajl?Flwd^5rNtdUT*)AjpTsdR{Z z>%=QXOQoKQGNi&{{uiyTjL33Zs<6hb>+mfVcE)Pm3mwK?g!Vp)$Xj}l?KjSjW%k|i w6y@n}gZxH{cCVb!t`-tHMmiBY!}FeosBmM, 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 56711860e44a43d14a18893422e19699af1dadd8..931f5b5b1e34a4ffbbd345f40de26e73b108d094 100644 GIT binary patch delta 517 zcmZY5J5Rz;6u|LYS_S1HviMH$3m8m{#-ySqEG|xL4yIPbils3rE9l@SAgq1?9V9rr zFd1hjqYe%oj0+=^|6?nQCpq_b5514Wy-i-FTJJfdqlg^2NZyf4q^U6w_c)DR9K${) z@d@Mjf@yriar}zv0d7&NSh%l<24yL74`-BWsr_)GPH>wA&1k_R$_0H~z-RpA(BQA; zG-)V6Iry7F)(=n`8lrqpFi680+{Ag5M$4#kzdB$d8xL_7t0*sUi6-8lj;|=|K5z~L zq@Ph_MzjADdEG?xv%KacDQCtC4AT7+IYDMg=~hDig+z*!j=4|8+t*qlUGnUPTdDh& z?|AjzgLa`U@A}85m3-McvTBXI`CF~8ZtPTD%Q;`MJ-66f)0-MQYvE4YIkVbbWB3D{ C(>!GW delta 431 zcmX}oF-rnr9LMqJNl(u-H61cEaFzzwKxuXM9T+$`om`F45hCc&AmZc@K`n)YO3={Q z3bzGtP-2-Eym=4XO<`;Gbrpn@yjYiloKn;GtB2Ms|Ve{~Jk7*kGh#LID zMg6bg{sMKt54^xH)B%4nf({R>KY;}k@b6fhu~ESqHc*XyRO1j&afF=1qzGsEdkHg5 zf~bFA`U-lE_W#PTIwV=5ueq, 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 769ddf9ae87e661fdee50595a89b5a1cdefb1387..ae5386b0cdd43de347057ca25e9bd15fbb10b946 100644 GIT binary patch delta 1516 zcmXxkOGs2v9LMp0I+Kqn&6(6n9p7mWYt+=Hr{;*5Al1gwm55N5W0X@V<=`SB-DPD9 z7m>SYC)gr_G7N->prlA>;UbD4l1Pe3`u@i2VgC1X9(T^Y=YP)3QuY0s=qIo1j!_zj zY$6nA)`90-Tqr->W?o#xcyz5b<70_j=(1GDbWEe2<+RJNiFPHn;WbRc59q-KOf`$z zcPi`XSjKepB$y3gJ{ICQ2Jji`0gI>!;uFoNS}LlYiR-Ztnb^vm@jA?--Gn~uM%_P% zH+a4cQ@Kosm)9G|VJydzWU~}Jg*)&xmf>yG1kHY^tYh4x;2gbYr-Bnbm$^@3Ev}&w-%PQ3ENOBy@=``!HqbE5qyNDSisY( zuo*Qzgj(2LR3^q9Cs6Y|^pSsF+NS6rYxWYAs<*fq|2Q}Lm~Db~E{@>~oW^#R5k!B6 z86P{zr38C%500TS_X?G%kEjJNp&yr{&Oi>!+dxMUEAc2QWrKJeZ#wOH)UV<*YDLMU zM=MT4rMwXz;4##EKT(I+#cFiMe8{_70CO?gKt*5dLQNRP0*v5(yoVR?9X`cIj<(K( zo8>5l$ykdSsQ-sn)C1d5sqaQT@I2~QaUD4-vAG%dS~U$8V|j#1>1e+zE2`tSjo3+O z+9INXC?j;FwiDVYooAIGu`5_BH!uI1{`qeO8RQizkz=FD#}Sc!G2gAv6WCE9kIOVG$^0i3$xK%Zh!G1 zD%uJa9jXd~^A`Iv+Kc;$Ba?IP+Bi>Vq^B#~*U@*TH$3T09PoHTy=PatI=d!EeBToO E1OGgK1^@s6 delta 1476 zcmXxkT}V_x7{>88+jTW7bGOo3*S5^8Y|T~EY%RCifhV4+niW zjglgYiN-9m(|Fv+fimJZ3*sow#R<&DzsS#~oqie%IL|}1M{p08;xTN&TzrLj_#X4k z(l$(GJ`KNc3I4-NSPd(h6kfx# z*v9*9f=ag<7+xH6=b0_U1Xkc)jA1LPgS)5>`;f8P3yk0!T#jS70DauN6@y5V9mHmA zMrG(J7V~}^prULKVKshn=RwkPh4VsGhh32cmCO3pF|Bz50yaxmBARc z;|Y9;A2F?w+-AB;SuZx>L)3tNAotjBcYO-A1lcTH7>jUlj#(`#BU6jaNTvn3NoyTO z4Y&-|UWHoX2Gsiw6p(*ywxcw(;xlCOR>ic6un{%WBdGQkT#Og-0^Y#2=;Q61FowE* z1~svER3vN1V{05xBrC7&m~a(rBhT^QQ3zHJcsA;0S;h!q36+@8yov@x$+Gg!>%MS$8+EN@1)**==M=Gl&{kSU ztR^-RDw~OzSDQJIPp>37D&cj6626mAUKxc~l0`0dJ7qmFPO#5x ZJyB0I5Zg0f{mHCMO-@^0=1J&#;6Ghbd*=WE 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 18f42946ec33bdabbf53be3168195f8c11a7481c..88c73bb934d5c0528aaa176611b3326b50fd81a3 100644 GIT binary patch delta 1560 zcmYk+OGs2v9LMp0I+L1@(NWXXbkv!&d^Bb{J*=#BVL=NQfd#=7Lux*t%rdGWAq1;U z_5?Q()gqyVP(hm>7(^5i1w|AQ1lb~TArz7H{mopVL;w3Z=ickN|MNemnQOcqihlCC zE*hjWrY4yk!%{5AaSY-^)CXoz6C@^^(KQchoQLUHj!bNI&hyRaW88+> z*o}JsB#!WX8>MrE8(z{I$5E`qibZA_*nw5pi8XiuHNj)lgfEfY?F%l&X)M4bUQ$A3 zxB-L6BkRN6ID~G#Z*S?S^dC@F|AnjYuQLu(o>Pn)P!rxmO*Dmh_zJZ}-<U;tIg?RXTAV|0qnEFJCT1D30jKEh4-43$s{_2d=HKs_%)ZG|5Tu@TQLFl)yg z#-B6eXJr;ygZ)O$@8*xl%~Da7%g>_z%CMRnd$1ly@I2~+1uRQjP>I~K5b_OcLshH; z&*C6fU?Q_NVioEv?L~d?C@S&OsD#d;=D(Uv{YlPlaYLu`J}$$@s6CuUj)%Ee))h?0 z2;OwYX?!Kb_y+1jAD!`ctY=)dIG*@UT*9~$mB=ub;%L-)FoDYGDXR2uPp{k)qgjRAP6Loa_l|%ig0F8l9!1iHk^2TTy|luofFI zjA!sNe#LUiqW4mmMJvffy_b*reb|B8qIT!`UL-f`#!4JUj*6`(NZ1?OFTLO+)GEh@ zT!m59U^!7uXj(tfO4JbAs1-zj2oh>*iP~5%exZD^wwbHa3=t(n3lUo`s;!O_yQ==I zQjKFlYbLadYWgXfZ!7845v9%zt-s0X>omHFMNZ&wspsT-c(wlrK$-gaf wDBK?Y{or$>*LsiRmr<2mbrxp=@{ZKOlFGr~m)} delta 1517 zcmXxkNk~;u9LMp$`kYcThtg8(nVG3+&Xz-2x@d$p5@kseh7G#VFmutPRfz7yNGON~ zTo@#|Xp@VeKx)?_LCS%$D5FuE1nv8~?|SfmKj)nH-kJW#J6O6{;+u%|^ckgwNG2)* z%^L8yhX-XU*en*OF$m`{1pgp^w&WU2XAJEKRDTNY!!$gG%@~fO7=bS_+RSGYR3hp4 zf~#=>J257dA7c;Z;Sg$qY19Bekw05<+o563fEI`9PeU(eV;mkt{q7`Q#q)TP`E8EM z4Rx@*d<a^e$+q%n1Byasd?_U-?*R8qZXzgr9&v{1aq(h>+uuce~+xm zKBG?VFKU5NF`R!rm3T%~PTEitE+BJRINQ^NiO3w5g}S6=*n>wf1K(i@Ml!nYP&I18 zqo|FYMlGlXncF&1m$5sJ^WRLRj}GPTF>)Pj46ox9HsU3=r}iY4Vh6Kmf+19U1PgH< zwcyM(W^1t=wSZbo#S?D754F*LRdnP7sN8-)<@|@+zCfbAw0)?Q+`DtgCry1lo6xZO&#xi263SF2 zv5DA5sB9;4oSOf^aXF=mrMnBFomuDW~ zby}Pemb-Obr{&_jKi!6|?;b*D!7J7IM+E1Vaiq>0LswF_&8+u!@cMMUEK;4OKUewG zmBTEel-NP+9-axV3LGvB>kUmi)X>^~rp3Frq3u-DxyDv+MYGdU)#P^MHa8A`ihd9@ JJP_vz`wxe;ki!4~ 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 1fb50cdc6b39c0b07cfa30485a888741f02aee66..aef65427cda13c97c39dcc913c2df9c0a1168f43 100644 GIT binary patch delta 436 zcmY+=Jxjx25Ww+ETi@DLF$xx6u$zmHBDgp-yK4s>N{yz7iPUrw3F06wI#@@y?t-OM zN{iqJc!H~gyWn@w|C40t!R43B!Cju`Gv6+R-&XEPh&ghVY?Di*Y49LioW}+h@Diu+ z7K`|RllYw09h{(k#T>q+j!@72z&-p*zK61$Nd~Ut3XKiaODecY{hk%E@E1$?hl^NZ zx`|u3hPyb6Rm|f_+Hc}Eb%^)aOZzr|X-X)v&&v*t17vS}N_NLX*cA`ex1&#`L!VmT z0CUD-W~@pI{e#n_z9Ff&PW`le>^IA;^P^heT!`&F9vW8B_Uo-P#|vsf!}q$Lag|x< XsGb_Aq3TE1>Lt31ZdAYflXZ=M`S~`X delta 346 zcmYk%zY0Nd6u|NGhSi~3V(hk$2SVFDWu#Qb!, 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 f33cfa3911af9aff7938ffe1ca6774c3fb5fc41c..77eeb9c2d47799bbfd818c958d85b46c8fe41ea4 100644 GIT binary patch delta 1544 zcmX}sT}V_x7{>9@+}c{rbj|P7v`uT%a@AH#ZOsoTg0j1^s70c-4^1#y)^M{36EcXh zLV_ZT2nvGjA_$3)Nb077h;F0^E9xes3%!Z{&)HLh@A=KlIXh?Oo$>sry;c{UN>3Uw zlr|!t*p_Ha5Kkp>QJHT{Iwasc%s~E3HWvpL+IldJw%2Yq;1=4=xEqIYA$~^}&S0uB zQS*mNG98N-7_$`fFoKm>f)8*VzCpbp!5JUGjdYnpyIqPYw5yPTO_P1U9gAr1LN`WG z6S#*Qk`f#ZCATHGv%Rc@_(h-iJH0Q*^<20V&-Q3P46xr+Mz81~~h z7Ggd7QjL31XX+B_`FqH2o5!dOjl0P|i!_sTFlqC_e&8FfqWuf?g4~Sw53BJO?FQ6Y znZl>o$6M;qpBW#o2iMR(jWzfXm*5xFmi&f00Tnmu@c2*@+JUvW4>i;4cm&5# zD@e_b|1KLfkRLZBVef#-1&HGy_cxF#M%W#TY$D{A_vaAvI8>kOyT=jlxlsPRuFAOIiZ851!!?P^(tCOg;k4RGWGwj(nM$#enJPR zl~CH5n^mf9g$^P~_+J9ls_d3NSpUjeDwV`?yF=%o-mWVHR?*C~@A^QfXzyDHw$1P* zHY*7gQe}Nq3NDX0yq-o{#pO67mKv!?DH`Lt~D|QaK SQo8M)&d@}xD|X-g-1!$kT7$~~ delta 1502 zcmX}sOGs2v9LMp0I+K%@;aPF7vzQVkYf;w_SyYXos*Hui!eI!8Dvl zzgf(FQdv*OU(Cg{6thcMjHNh+dvFT%fMwJK$v!ix=0~*y$b?qv_J=S?yB@Q#2Q}^- z4&i0I$n(v^vc}Yb)tHxRmW~mu#BQv@LDU2js0pW#HQOgF#Lu`H|KJA9VQ?dsAYImr zCoqc2+%y*OeEUd6*d*1|Hd90RBf zHex@X#dr7}V_L~GURSA%V>3>o7PNxbQF&#o-9U{SL2bo-%*UsAdX3q8)VOMH@($LF z8XrOJeV6M=%%k0xN&dBf0XmN25cc6LYJyf?PZM^c9@K-pr1hgFxQSPB9JgQ*`x3?` z)LA-@8b6F|w~eAQIF7881^ z$DOpha4%lN419sws%g}g%wZ9JL!B9KjJssnO0gDeP%DgL6fd9_GLQPlAE=2^H*vBt z6P4m4IE=?pZ#IX@;1VixE66h~z}uDMF4XhFB2T9%0we_%Q}&xVh0GeKIWv0y0d?>LKnBN3(n*Rk<42Y zv5lxC^fA)+p@UHBb-=WRWyEemrIx62YKe<7pwdFFKKtTq1I+maM-^9`oOXR=@W{sI0}cmMzZ diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po index f3166b48fc..5910933ecc 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,21 @@ 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 "" + +#: 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 +107,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 +121,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 +191,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 +243,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 +257,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 47d09ad5090b233f1d283383eb1e339d37d283e1..7c497b11eb4e1e7dfec379282a575dc19068911b 100644 GIT binary patch delta 470 zcmYk&J4?hs5Ww+Gay~BJ`D!d;5fJ3C5SzosCkj@6fRslra6yssaRzPLr@kpd59Tmi zrU<>5OTjcF=j3nyhZL8Pm;DQQsVYNWPHl9eu$Nek`lb%|k|@nuS*+9i-14m1?Wog^ q{q>}k#{QC7nE6_!^=?dNIv?s}C4aP=mfJrr^5U+4Qr!36ov$Ct5j&y) delta 422 zcmYk%u}%U(5P;!XI28~ikPwWLxQT^{tuYi97Q6wmu|z$EXtLzM%HrY!PywBti3No* zxzJGf2o^SW78bS?ynz24r*V?G?{?>IXZ9)gl?^}3-dKntStCbemCPF+L>o)k!4d%;wP-M!>E`?X5Z~POzCXJ1?`+fcT0zG} Li`1bR*1h=;ylE=E 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 f6d0b7955346c55cf48bd49201d78f308475695c..c928417a94b96e9b39296d81673eda48c7ae6f64 100644 GIT binary patch delta 1534 zcmYk*eN0Vp9LMpmZV!|m$wQ^CQn)>bq9+oPhxr378C%k-jcU3v{%{xnWZ2A>e;Bp- zM_V@4hG}avjmc)#hS{(%!}tT6hd+$>=XSDwJKy^{zjMz0eShcs`<;i`Cv$wSVgkF2 zww6dBG6KwYVR0ZowC*6Y80fqHJHhtW?(0V;dzWS z^VwxiW^&;=#^N13hEFgBw}hDGU@Iy?4{Cq`o?k0ArwIC9ume%$yQXJOp* ziT`Ke5%OChCzrU3P7o3Z~P)id<`P5HA-7i8-Yy+m^ zR#XMsP>HXiD$|R;)tvNmq6vIMCHm<+5JX2M565^+!p>1nCVY>~!CX;h^Dzp~pa(PXCg$TioP+Vq zQsd+yt7xT2POCtTTZOZ6zjOa6dgz~srv55jpYz}dUZFpR&#;a9YDqS;;2Q8a7UEgd z1RkIg|3ytCj4Y}|GA5$Ou@d!MBNn3*%JOFVA@Y=x~HaO$^Ns6%CTbp#2RajzW>RljZ#Wb2>-6lLG1-KErD7V zp~>ho;|2VU{QgR5!!09N34e)K;bc>V+{6;+f+}4=lqmm7=c3*!jmRff5a~n!p|WNY z+K~F(mJ(Vbt>@I1>vR^OHmRyvM3fO~%O|kKj@p=}ht=j0Y$s3e95@wJ z91vF5ez3mTTkCCVX&$&6@;E51yzx*|o42L4vEE(2v2176`W^1#y8qX*>Kbd?57&DK Sdc!+h;pD|2(tL%xq`r(@6Y%X6j9& z?4{;V^OMbvVsR>OlMFB^6JF=RrUbmP+)rvDDJ@HgtYz#_Br zn1i>7Z#^{17${?T%druQum!haKkC6L)I>AL+UyI4@F%Xt;1aWREXF+;MPAm%+i~nf zl3^cEnV!Q`;#)GaZ%02W>rw2$8q|an$an2IuEw{hE&1X4KGLVpL#TxnVgW`_nLC0C zd<98@bzu$mU|a!T(omo`?h7ALss4)VFo_S_lL&ws?S8YWm8?A}4X6bLh$?eYx1$7g z2oGT;o<#*3M5R7~`sELCAI_oXEhG)v`gjSAgEY$BKs%BQyM+2>H;~xYhuV^R$Wicu zz`wG_wYFfMYwt#O$op^6Tsm|MMK^|968H8gpH76TL!(kQk9YmF7zJkGUa96?nbJYi zR*`Y5qVA$D6fZ+`HoF0(x`L{$sB~lcQ3bmHJ8A5oDoytNr}H zl)8?#p@`~TU96?5l+R, 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 d024276827747debd36aee61ffc96846d830c42e..fb4aef56e74c81e9c29fb5eab197bb34275ffb97 100644 GIT binary patch delta 469 zcmYk&ze@u#6u|MMtv}A%`UAnCA{9Zzp}2^PMM?`!;_P^Ypn~a%R#2Btot&h)>F87! zxuMX%z)1%eUG!gY5ZuJ?yGAiw^0`Nn_ugG6cnz9wlbI{U7-!BfubI>Gu2~o-IDw}) zfajRS3mn25%;7B#V(jA{%J~P(;G_2$CI1VqE7epVeq%Y+Pq=~w4wSLQ-ZsjG_jJF& z7mgBt<1l8)p2sPa2If)rmoUIpltwBj4R4_2+rk?4)ebK_>W)Pc-s3Fxkork7dPu%n z&W$mtofLzlxZIN>|Hp_A}&$wyZpXu%oVe2@| delta 439 zcmYk&y-vbV6u|Lwu_{%N2m^jauQBlf+=wO)nD_#|K!XU4h8jc{6B;97p-S+}s@eA6tkgJ^i((?K!vi&AoTS_q;O@B1f)}eX>Yq3@4(F^XTIwUg9iX z;WTz}3I~|QTh#aN(7|Ei18UzV+{Kr;9!fqHH!9*X57w~5!)??Lo+sh~ubAQf1Jn4K z)W4JZ54zM{rs@I;s0&;~?X!-1SV9hIb4p7na?Qmmg&Sn<-`_D?W=MT;j->ZE^e?rs z4*4HCTtjzq6uMwttnQGM>($D!Jqnuk{PfUkRnMe+((9UqC^AdN?)$-o*J$|mpy^jU VGO#e__`~?ECFoggB 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 5571d652ae201585535d1face9cecdd39454b183..b507d5d5c6faeefe7936c1e8630f54aa66e3cc40 100644 GIT binary patch delta 1518 zcmX}sOGs2v9LMp$I+LTLsWVPiqc*-$GvAK(u+ka>u~pI{ZDV4n`5;izC_)5pdRoX^}tui+HDi_@DuLEWF~1rg?J2W zkgse6yKxfTyx%tHDE049S>MJw{OycuNY6CmFzSJiQ4dlj_9^No&b`GoB%rO)sLzC_1988x9BYw-$d=S$d+D;V1es|_&@p)%Bp zN3jF7vsu&v7f?G4unWyAMjl~RsI%6Fg&4g^M=!dGIxM%a4DaC~T*D#!j!SrHPkde~ zM_ez=!Y0f^W$GM~ed|Kie%Kk0qc%E+9F^FjDZS4c8L-&cuE5F`CSAd(j$b)(kkH?b zlH5jA657uJqJ+?SRy#~o#d`6J_NvxOXc=1KJ|aSByUKxDL!8)EN1WZMaV%&pgsQ2g zRQuBBDVEA_xkk zMNpe8B-%&@t=bhmR}}<;mQYj%VrefU?fbiP>Tu6|&N=tq^Z1`Lcc5XWJ~~t|C&sV`)xix^hl9vm?Ex0zGhBwBZ~^*xcoRmDCfkh(OrRok z4+|LI?o&{-hp`slxO#-J^it17b$A8U(E#S+9n{u5b@dT<{~KyzdZ`S8s0haJBp$$r z_!^U%$u*X%ko99L-bPL6GxCg0y8E-JEl6kM@-Yu@rkT|vmklpUosn@=e-qB{$eL^x zHSsJu(YPgH;@?i8oQ6HvjXESxP%C|j3iYU~e|7agc!u^c%hwsXgo@l<#;zwICjyfY>P~&AUN!_nZQmCOJj#_aK9>HGJ49Bq;r%;i}Vfrmtgj!JtYJ!K6 z-La3T=YAlsSQ@L+-#QOVumLsBKGejLofOI`9K|N=!!CS|{n)%T_239RHS*4QxhN-h(>y=W$az(48P)#m& z4fUu^P~u4cPu};_)wCH~$?SviN%j7S;C&$oop%}(Pi-<$zaA(m)5l_kSLJ}A&IRYi a){+(SX7ZMy_klLwP+f*EG!&0^2LA#mkbFS^ 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 0b4756c0c143b7c4d8ec03347b57914f4a4fb556..d598690fb634df61293c01e43fd2ee8dca4313b4 100644 GIT binary patch delta 428 zcmYk&&q@MO6vy#9I+cx@r9@!Tx@82l6BqgtEoBhQ(AkVoE5T)M40ET87Ht!;l@AcD zY7s$%_z2}A`2Fb(I?TDBxqs%|J9q5Oyw*JJ_6@O1=Ewngpm&FcxW+xa!42$S9Pe-o zhnU1i+{B6PPf_b%(Zx6G2de%T7K~|`g`GHwtP7suAq(=DB`?T*`XNv=7*Ok1E+kgKRCxD%p+%873U1A%~T*oYQ5Gf zc1Ufc&HsmIJG$Aw&`oWVx;aySG$!}XZzNF)uGT|-t=wz7 Fqa_DjED-#LJK3j zz)zI>Vl;8B-J<0F;3NKK`+;%`Sx^n{xNwiR^aFjvd5aVY9H0b_S!95j-hV?GaEWF7 z(EDG=PsJ?P_>Dg9u!to>Efo;PL6Z#^8R`_ye=D1ofJ<5)$V=W*-du+IUln~KUotO; l0~t!bkn;Q8_KVjWj=kxq^Yq%CD1Q*HjCz_HheDW`$q{3|B5MEu 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 e707e66fe988053130fe721a6edb4194b8331700..3c41bc367f2250b05504ac55903c1422fd783689 100644 GIT binary patch delta 526 zcmZ|Lu`dI06u|M{wMXe`Q4tbE69$&1gRNDDE({W8gI-l~Xn%38i$N#55b+0euynvl z3=$GIiNR#7)nM}v@O^se<|Xew_j14Ad%yer#M@TmBV}GFB1KM;Epm#?8$5_>9L5{$ z!2m6M!5F?{0^8V&Ut#@?i_|L8*;hc5vKYF8V@fsDTIWUW;1Uat!v&8h0|K1DS3INX zCyr7d(M<-Pq8#WF`>=^gY=z$+aDe(5bNGhR*WzzX=Bp82q|rFaplO`N9IoRQvPa#b zY`jOgp(o@#-H@UGh1{+jPC{-oPDaT{mWMPSB>TxBQvOClu2n)#F9&3vik+Vr*+fy7 z>(xrlD|wEt`FF;FF}GUUKGe1JhGSP8SEuv4f3@u{>$h($ 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 025d8e3c06d0cf4274529ca3afb4cc788da6f49f..2a5d37817099803cf331b92c6cace4f4840b8d47 100644 GIT binary patch delta 1791 zcmY+^TWl0n9LMof?3U^Z*ozdbwuegvUAx+1tq4d9mPn!@nrKw?Vc0#w#O+L-ovo!Y zZgjnbh?k@y79<2BFUAP5FHHQ;*7Kp(U`#XA;T715{FxPeq_8uw3!4~clJOSY z$#^?HhOgn3_#38i9+w$YHkavK&4s0ljky-vaU6Sa4Ss;P;kT#<)HT*7XhANS&Sbm} zmoVOdOl$^|?;k+R_)%=Zaa01Y<10Mh9HH|J7gm$ryLbe9u>UHOLLW0YhTZrcYJ%@k z6V4%PF!Oi={)5+H8#gJTUfhBM$XDh$+>Hk?#q-TCbX5A^QB`lG9KE;%H6Fm{aR@cx zXQ+v0u?>GlZPBG_-A$lT^doWR5Q24*<1AK}NS`-A1Rd5+?(jNixG@ggeWWn`mDwWAX0 zFVk5?XDg}_9_mJ2zZYLcWqJYk;7>^MW*cSbz=u&=R6-rHanwqu@gRPJ91F8+W$pUo zsI&GY>TN4m=;$?@L_O#%YAa@NJ${3m@e*p~eH`tt@N?9j9%eaO$uU&Ir%-$TC%%dE zcnwx~sw(>y>g_m&EWB){>2PMuCPEY5L9j?;2{k3L(6n-`b{oMCR1fJ*sM719Yl$61 zH=!!rOz1r5)T?bIvejPgW4YdcwLzk~AE^D-;ZZfnt=hDQ3r**RV*J+z=xs?wBHZ*POMF5 z2JQXcQ_dDkk+b{5Qe^$07<+|6_1AWvSG1nZg+aitna;+cjrTcjid_`Ac$4iaPW`p? z>H2h-Jap!$KlMb*?BeoJ6ne}VIB#Y$b|a*7zGBaP801`(J9je3+alwXK*kqs6S%(?aFy#+aeW O*@E}KJSTeEANdz5Q0XcF delta 1495 zcmX}sOGs2v9LMp0(~L7_Wsat%V@{eqoTk()H7!jIDug0}Afwl&MbAx6v>CER1cD1G z2#lz#7C}fu1VOdPAd)r`NQ##9qM`?=Ac)%cH*@tc|NA-j+?n(EpL1uR>S{%F*zdk( zltv;z)VR!!;UPB{$|sMRA4hOLj$sl`ARn7?^w5~beF~~Q4|ic99>mj_jBhXn`!Llk zYQt0(((nhD;v`4n~oW%{cd7U%W$0N3|DX5JQ-bO{m`;#VdFU zBaCljR65nb^hz;#f!SiL#t`ntFt(sN=t6bajm*`0Fb{h%2Y=uqbo1q{=tr7tFE(Q{ zDnm~(!1(r@in2X`W%$v#_mh@O+-IRWyn*WI0cPQ2)YiOp?uVS`^UTVTNA`Y6;*5Mo_50oN zH)`Ues7y_xCKyN~|NE#E((74lL3YEwp$7ho**JwH#WGp0?hCLLt5GX_fjjUEDl^6G zj}BWsYGF;N3G7Er^ayI4GwI}i9hC?T`PhZ@VLjM^{n(BtGe|d1qQ3u#ld6seaRdIu za?Ht0Omq(_L(QlOL~sR0Q5m?6TF^^1?4;6*nqdahKaTmx*w%{6@j7Zto}doZGt>$v zunk?Lg>AQXRC_1tb-s^!t6rhrrVprbrchfD^(`}7LnRe!uoAWM^Y{*vInvt8e$+~a zP!s-&`af9DGTBZmL#4CbETGA znR8b#*UHMNmk>dxP5WQ%)RmFh68~3qZgghq33km~MA7UQl`=AJc^&sWp(5?DlBcqY mC?&Lu#Y6>BMQo3ad+J=V2H#*(>`v-AcPyCE=k2&0IPf3P5`x?S 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 a94ab8a90c3a1d8fe48ecc7a44c2f602b2b1d08e..b5c3f46a7b6eb547cbc9fad07c3c1ca7d1c7787c 100644 GIT binary patch delta 410 zcmY+BX*B}mZ>NkJM1mx2KY5gby%sf&wa zK|~Q-MHDCD@(;KaTIf$ zR>BfWzk<_PM%llKvcG2EAK(Igi1LFS`}`KQ+89hOKae3=B8PI;oh#}&#t;_cDb}4l&|L!&$`$$J#!z2=E2;U RZhT}q@v*s!&!W#{>le~hJfHvo delta 336 zcmXZXy$-=(6vpwlRo}$NBEfDTl*ujz7a%5sV30J3$s!V5fyQDnx&SkS7~F!zXks$i z{7>7HJo)uBr>F0G3;#mPXWG~)Do*lbLsH~Tq)g52tLUe1U=&*z#5M-7i?U;YGB-m5 z=bj79(679Hk9@yW2Od7;ND2(>d`d;|j7hv>3?H5^%+Y^Q<`Vox=CUYrMJ!<*, 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 6e891a861a8b234374059fb537e7229fd4af18db..e8cfb52a59b1490f5f44bdaeda0ebf42fdeebd47 100644 GIT binary patch delta 312 zcmXYrJrBW97=_~mT$p8U!7}uq1G~vQfEnfqwBa=2Ea4pL z`vp8;g9{>&d{QDM4!$rCv+4Mv3-zZOP>VdM1#QTZ4x1MBVGa%{QzX?8jJt{ delta 273 zcmXwys|o^95QgWtH!o|@C?Xb%#jwE_*f$Zwg1Dmg&4O+5NvsyZXtY=aA3#tr35wqw z*MX1kTxRA!_-jAAG~JC*RcONm>aYW?JJjF-0ldKn&;0sA>~U{l7k3Ny3iq+j4e$zv zpjrEpNGOuYk%Kmzu?AhS2HdbNeqsl|um*f^89O|(%g*XT?d8js&i_kiY(K8(V?17r V=E-cCq*ICWjtRDrIhnlSL|^7>8L|KX 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 f7836785d27e1a12ac971f7003eb2fa9a23bba5c..4cfcad060c85f4373ed45f573291ef042cc83a52 100644 GIT binary patch delta 431 zcmX}oze_?<6u|NOp3j%Qw9G*TLs}Y)piNq&#m%LqKOn`yLEoZluO(7&2p+aXfoQl0 z4o(hjZEmeWqyI#U-=haFocFmu&OP_t`{;do!C%@L8rlhQN=%3>acS|P^-$LOc!+O! zfKyE399{g<@i&$k|6mkTwlNN7)I3W4vz>vtrgOu@ttPyn95BQ@zN1gEB_^es=lyJkYb&;(2^=_-t?%a2petYp@^=xE!*l0% E1JVK}N&o-= delta 401 zcmX}oyAA?OUWhWg;cHE QZY}0U{%|s;=Av$0-nGddSO5S3 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 bf735816952a72021e4abbaa1d3216745bff7b92..755fd6eb587e3d9415f195514a34705e6920b001 100644 GIT binary patch delta 1849 zcmZA1Urd#C9LMpmgdhZBqQWtt2MG-MBgatS1PE#f2CNz5!hiF~IT(b8b`H*Pc|*3$Rqoafy18{g;kd!FZ3Q-rk*uQH&H-LrkK5j|E6-G%%+)j;2h@T1AGp%(#`f_5w>AJs@-?E0X?e{ z@7G`!_Z|2=_F^`Mk*=b4no1rIK0*y}9!u~iT#w7>!~3WSR%MvIfcsDr8N}829_sxG z+=O2ue|DLR)^Y{)`&HEY|6noW+aoGW+BRmIjpHVK9cOVRK1R*>394cCvxyZIpzg~t z2kS8x+g%U2zU}`00ao(+3~Iauyw3RcD;0J04SCYaFQQWT7iz|Lu@qM_3zA?JsDWxx z6Kr?wMp9}$sQwPR4!Vw_GVw7g(`PVB*tcAi%8RI#{Nnlts=?o`w{bJ~_fQkdXOvN_ z#$uesX8aA+PX-s}ZXTqGm7(6NMNPanhx`{(Im82XIEJTIn0+R>U&XA7@HA?I=eZ2x z4|oI%)|!2a@1o978fnq{MMxLcgvwkOs(l36Z5u}ir*g@^4$JpEsKl$N)Y!VjsrH~c zIEq^Nhp4TYM|Jo!>is|QCA^0kz{6^^RVApyT8UaQUhi)GA zeJ-Ioy2C{?O{aGbzIl;0)`(hJ59+WTMy(`(?1BxUQXfTt%YPbz6upUX01@H?T!!pdKmjhUfbY)Yh%*>(sy@a*6gz7h)eoMvTURBDzSrTAa)YT!h+*lp)@+~!zxtzwI$7j&WMV(G+C5A?e+hQwkxVr z>m?eAeT4Q*MW^_gcr9^|lxpp3vTRRQu$p+8*h47QDs4nDp{*dn)=9iVsOVhP5L?;Z z_~)UA?L(3BjJ;MBLl-B4QBhNZ|1I##XNgbo&tN^tF{0D delta 1756 zcmYk+Sx8h-9LMp$lUiz%mTB5LW|rAlqnS=-o0-d$5E5i7jTKf_1LIKCLqkwu8$=lN z(nDZ`1wCX?LR7xhlV!9=L10nXTMJ1<-`~uQI`}`Id+(fkmj5}|SNzC_LV9qPp|s1^Nk?o-mt(z(yUOe}P)a$Mv5z8$^% z9zl(F312h5b#tMPkI}1E-ib=#ZPbkWu>c2=Bv=}=(Lm!-6D)L`i=@=bQ2i}(3^=Yw zWnw2P(|a*W*l{YYpwqDn)$pccFV5orE^0y_@F4!eJlxM{OYj1!pXbP2?IY5}zM|T> z_)!y{fm5(3o&2lAdLFbSm~FuW-1lXeO~r+5u=co_YB%o2E%+2qV%fO(*|~>m{~YPU zzN0dhOq%q*7uj7~f*!0#osnIchLhC{aGx; zZqxt+s4aSfI;4ZB1tw9=#!0BXUx}UA808|!#d}n0Y8XYS3m|i_bx8KC4M~a}LQUWl z=Hf-vL~c1gLbdyZ%W)XhZxx?d4jHaSj+<@dC7rcsD;N4MPoX-xLZzABM-I4sMtz>& zP%CpYst#E;Y9&*UY+C^;^?qd0R*xEZGtR(m&hrjrPIeJlVAO7Mp$;FQUg*a;_!LQs zB}_CshZArnUd0Xg7-?c&X0MFYqB?HIG7O>m?ZP6wh8}!|BqDZTv-JI|Xz!F}tx#nl zp_8i>s*H$Zi&33wr6eSFR>0;Gn#>Af6;Vm(i_unS8&veqOQ(LmZYWwzqQ>_ST7hP{ zfT$)`5_JTNj1}#bN(E6&C{s$SR;p4$XxqvO9Y`JO)x`gW|Ln1%{a4ZUMr)|_>G+6w zg!XzFq0$g1R_k;5Tl`#Tj{`&_QA#NFDvRR8>O5*~r4F*b2Ava?0-~O%`u8Y)>e(7w z+H*O1^2nYi?o?Na&tF_x?(vmW`by{cD5k 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 05c7c9ec812616555a1f61d7faa4c826f147bfe7..3710bf98f5b8d7604e50b68fadb553b5f0c935cf 100644 GIT binary patch delta 1784 zcmbW$Piz!b9Ki8k|54CVY7twt$^$JeuwAiH{GURkMuT7zp-s4$$?n^BaCc@q^9HFU zSvlazgSz2>>5U7k2_|ebL=zKTFP=Sc!g$k!7`bpTAepUPKM_7kmqE;a)txiEQFo9Atg@jEiaf1`lKRJtB|d3@%fS5TE1!8~2L5 zfTMjP2hqb5coCn$Kk;eY&#D?=86QW7x`7Kw3~~h@#;>uaDZ0jm!&|5+KFPK;fMwM2 zPjC{iqSo#P>T`dgrgUJ7$YVH(IzEeg@FePv&!fKYTO7xq+iueQYh;tW?EoG|o$vuJ z;8oNT?6@yW{eIL1XHj=}8u^p=_!+~GktE7jIEUY(&L0^RIfYN+Q+NqAW7jqRdWg0W z_EF5?A}*uu=r^PSLcnQlccP(d(?Iid&TaZdK-%;$Qi-(fYpdzjrde5SR8@wx{@OGM z-5DiL4-KrfQLb`yO`Qg%O%G}pT~G1^okXQgcds?pwwtc?r%GvikY5s#9%B7Mv`z30 zrcLXtHR_~m$~2vP(n6-vnu7E;zvxOjYPM{hHB~Q)ZP66Mz}djbq3o_(_~(cTOGfX; zJWz1VD29ck!j!51F(+nHeNWG;gX=4sV!Cp%S?t-;vA5{EG%`P!XGP~QHl;9HTh+Lw zs(s#!#`)&rhPlp}L9}FmV=ttC4T6^m!cz zj)XT{()Gr&xl}$((%ou~smt0PvV7m(e6zEb<=gWkMiXAMm{=-y zcg}N0Q|}Xc_P+U6gN;YzkqOyxBaewzwc@$7BCH&Rr)=N_PM0nDg$3V6v7t6vl{oQu MUs{Oz9|J>o0LMFA^8f$< delta 1003 zcmXxjPe>GD7{~EvcGq1qUH_ZwpHg$vby0~F%{&;Pd2#h3LYFoolrBNqUOFs^*d;+* zI>lbRcnFM`i_$HEI@r-e1VOMMqEgXW^81?|ADH>PGxN^8@AJIxY;>=8WPjF#-WZYO zXyI6L%x>XcfD^G3H0#A(?85`>$A*yEFiv0>W-*Ri7{PDYiu>4z|F9IxOU!Dq9xHgw z5;W?$F@%?J3aju@v4dr>f$J6j`CI?Fi<xsjH1y&hyn+{)zA{K~isE(D{V}AArST5VBN^B`ypOx6D#l1Nf#X<%PjDQU@iKnJ z=T!LsZ!*3;EGw2gkGHx0j`y(nB2~c*4&pX4h83_Ak5Ln^E-#k02b;ORfy#IqHDDT5 zp)9KOdH?wb%&JtMXk5jD-=UPWdbn=EB;G}RXc4>dweLsN1PZ8rr?`L#%2ua-sLE}j z#`%Iu;1H|vZP0PtW`;s5{u 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 ced1f87911272c4a1ff75bfc75933e038c55e884..35398ef268f3ab63026bb8f7e46ef1aacb2b6f60 100644 GIT binary patch delta 3228 zcmXxmc~F&A7{~GFD!IVDAf&j0S1?ft6ciU+3l%ZYaw$!8LPfGz3^8I#uPbi3UBZ3A{NfrOYBs=SmVt@1mxP&h#IJE3p2y`lvzb{V{0Bp@LAY6C z48>@S#OauVdAJc%%zPFUVb+R{RD2xApqmNva3bvzIyF!|YE9=b3NK+6x|*ALa1{D+ z61wpwYQYat3rJ{T#+;Uku{asSnBNvqVbQi0HPFY{7QYO%k7Em<`Ry>3I6R3O;7*|JZb|rP_rwmEhD6(P1O2nH zGwntA1nxkBW~Z?$UPUb|obU!=5^CaJ$VWB~eLC|3Dq87s)Px&RA>WR3ur}~{QfudX zX_!L)xIlXa>S#70YqxEv`wyZbS{LvPl3sQRwUIws6MyaaE*(VELW!q#(h-~D2-I1P z#Rm8WY6owkc2p5)e}p=s1E`7XFab}Za^XRsKbUjX0wa(v>(Z9^t78Zqx^W^Z0#h*w zi%|o8f=}WPsL=k4?_gKLmxKE-1Ea}I-S;wAnlO$7?1p1e*}Mp~pjwQ>i>Lvcdd+5|7qjqP)OeRsk85udNRiD(ZD0ZFe%}r% z+W8sO8UBJiS@t{XXzrt)=kOTksfa>_x-SmLr?DZfKrLi7>i(^$Bif6K=)pky1S$tk zBjfn&M=E+;enVyNEmX)FaqvpYNF<8Z8Hu_LLw#=wYG<=i_g5f!YTHo@IfR<{JSw-Y z1^RWIe(Yy{ zDajgia^93t*pT*4oaf>ViqXCX49Z>O`QUkG8H!(EW4>@3AJTph@9gkC3E`#fApx}G zMATUi!UMPx4`C*Wl8fOaj&i0HwSld8f^kpbG1{BSRG$XQPj+@R2lHsJ#VWjq9k8;8 zv!Fw$fxhp_6M}be7*6D6K#;5whhQD*d+uIN68A=pGYtn~IY!`jy@S)&Bv$zMf;NVowUlVm> zG_80p@e;?1-0vE#^$XIweuawCM~?bvw(C|t3o zP~X3V3D|N1|2yE&2{!6cGHsw^DINDvp;`E%^MzV$OS>rtM%A7`=CFB~f@iTg6MC|p zB#xQnuL^dz50YP?k~N^)GYBx>opixZ^u)qOHB^Dy0w- z`%n$82+BtPU3Xg4a%znzS9@Z!w$QtPQcdYc zQ8qTGcqmHobrd4<=-=SgSV`e&d6Z1=pe|*muBElDL+3V+D15cBsI<_VGqq$!QK7e_ zY-Vol`k1Vs;mOI~q#mhBN%7sef-`ewl_ZQU&MBOgpHos)oa)Uin?0>yM!xr{!jhuG zqSw9s^K+b9;>)?kxr6fxa%SWwPAw`JSlcY_Xng#p`d#(A>%XbrS-O3?E`$tik43 zr;*t!*c$V3EvA_T?GZOkXlNg4_ACy>a0VQU6R79WsE$5E&FM>w$IF<5573YOqRbr3 z!EpQuHQ~Fc3B*U6F_iVjL>z_<7~ke`!z67vsv`&EaF16%iS?+TN3HM*2JkvI#i!T; zV;Y+=mUTzW1nw`e>_ycNUKEfM<38;bFAdf5)gWB^++-RmtP#v#Dg?tAt!xHa#Lah6} z6ilN%)2lBvSh5Q&x{I%j+G!R9rL9HZ;xQ1d+)Lvy^ zEu4W`!EDruioAL;YKsn|2Cl>ocnXyZcf9r|s0r3$f4Q~TIO4B{R2uZ+P*em)Vi%l> z>S!ZAho7TDdk;5YQ^Gd|%WyD8kePaK94^8l)JkhHYvn*BYP?vl-Z{ukKN`AYE-u1s z{2Dc23>(-9Gq58rKuxFwlkgI%!^ijrHVn9@VkN4-E2!g|L;@+Y*{B7~L%ko|$&FTi z7PW`pA}7kOqPFID)Oq%`bWepJ73y}FgW5H!UygeJC~``I zR>h67_97}&KVu_&h(ymqNC2X3Em7a=i(1hL)G=F#hw zK!R)ebka=cexCFKG3S`lC4i&0f*d3#YpCXct^kGv_N%{`9#bV^oKH)>jRgD|* zG1kWQZTJQBnZ1Y2Ytc^p$1%P&VU$dK9qaOiO01!ND%o9O6^Rg_ei60e`Mc94%l5UZ7tG&r_dDhN_>AU5UR|)Q_8d9EGKL0uwMV#huVfR7dMm z&8Fcod;#Or+^xvN4C;lb?_EG8?_*RyZMv~-n1zwJ%5!@+;;)%}M8ia^!eJOkyocZ{ z?14v79p1&BdQM|w9D|D7T-1arQ2jme>S5{b*5u-gv@b<=)4oBC^B|r0YsUTQl@nyM zF&EdMCRB|q-g@~TmVNhFeh2*yyKgWRVzmge9x=58sH{p z9!{pc2tzPl4bTM{)WnhYJP7O(lEk9 zT3B<`-jBikn2-A~Vkk!rkKhCxlx;R1OK^yC1BWH1Kxppcuncofqy zakN6i{|k`l+YwB`r>KABI`dF2!7w6p26@%K8|$8)*5lmoFUAhEmm#m(HB=6DCjP6j zcs#kPkTiM8{X!PTQQw99*>OHJk!Ut94d-AK1MbBT>Xj3nx#5o%l^zC;t z!w315QnM(U|0ZW!c%rY!IT@au@IG~|Ro5a4p|G8*a79vfIHCT5@rB&gp^%$aOnIB4 zQ!$CM*O}>W;oI&M`aAiyILG{nIlF0HPB}p7ML9@`qWCEvQXC4A_%FTJ;~q*DWdr41 ziY{fOu2mK7BHoOu__XEFkh)#c1D(6}Om+N8O&a7DOr1V&K|vt5VE&YOGYcw)C4H4# JkumaS=)cl*d(Hp= 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.po b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po index 08a1606142..7969e6fa64 100644 --- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/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-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/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 8425dedc13776cf0e2e339df27a4bf0225765d82..d1ca90adc07f1fbe079b9948386623a5704f1626 100644 GIT binary patch delta 3200 zcmXxmdr*{B7{~Ev5lLV{B|!y|6;$vJDuSd5;yth##mezAA%c>!I9!IDMmNbj6qys+2mB3W#6B>?Qr&U&b#}*=bYzx&gzj>uBEG8 zzN=Be8;n;2trKl-OS2nzG>kW1VOLQOa4Bj*`>+-B+vjwW@hs{Ae+I_x_Joh|KQ{eNo zj{fiEVmj9+1;%x#)NDuAZu?R9pFlNu_xgx#G^PCJ5!muZ#LH87Sv9oShZ>(5j9_rz&P7SXBZbo z;{;rWd3YH$VKNEqhXtr=UW{5$6DH%2s0W66%&O6Y`M44Fyql=wnn3|6vQtqTs72lH zYow!{Uqt2b3UadSHYzobQ0KXAqW@IHqe49x$KY^mfpw^btVZ3x7nP!qQ4u{67=MGR zf%C|7eD*yZ9haX_)%!atWFaJ8MHz!c(Nd78+bGocW}tRfjk*(kdG@vFvjoQI?$mZ=XDr6DFF9S1Ck(q}))0Uu$wH{Nj3Hh@h zcvF!Db@%^L#$yY{A7G7(Ur?OvqtlnWGWlS65B~!`!JUln;3lkN_7F_!PpJ>o^dn^Px88pdxn&dobVEsPF$lA^F1Tlu}u4tVZUvTAYptQ7H(g0{3D( zDnh4lFkV2uVv(u-5D!I-Cn6`>YEco`hI;-HR76i<1l~#|{_5Q4LMR4tcC>OgY9Tqu z95x4a<5pBH97Cm`85N0psPF%U`e91!?=RAqkWE@4w#U`TRJIRQBbWMFR0!*F5PpWF&mJLFY)Pz|uJuM8tCx{KTh1FN)Q+K2aRs&DhqxAl zd@NTFUXKddA)Ja|qC%IvWWpHdGXaX*qZRy{HhyW>HXh5SjDIvR6PR%hygmMV*cd$d9HqqiX3P z7Gm%avlp=hU%=z2nu;E(Q%C+s(oqd8L@lHdRZLe=A#C+5XBAVh2(MuY<_@FKup!_X z)P46*8;Q;Kr*JgtmvsilVHqai3Jmwrsi(tlj2%Yh^fDIXZB%N;=lF|f0!A|~N2O#5 zcEGi$lr^AIaR`-~k1z(mz)pA#_5DYvg+vc0{@QUG9X4w-P+#1M&*3pt5r*daYojZ6 zW1NS2Pz83uI!weyT#x6F17*b{{HI_uD)(nF9)Cu%Yb{6Gc*~|UY$X4};p?azUPRJl z_fb1Z8|BY^4r;;k(Sr@B)O>|4u-2&$>*ZSITntNcEpr}(#kqDm(cuGz?%*>oZ87ct zmx_1;O$*r{xVQ;5@7pxh$|BmE&XVw?h%NN=dW*K(IUMeD?Q_!Iqa*e*eubur+~}-u zC%NjJMt83++ZpSZN3R;1D)1c*c7q)G=~l zyD0A*Z+VT^Q&?10TJH5!&7W7?v>`D+IJbX>Cp9%IJ*`(Nuduwr%BnsE6@}i)xrJ5b z6Z&7*KvrTQ1yT?Ws@JP?hT9Qtq! zpxB~04HIOJnK^3aG)}oxljDq*HJWK^&17TR_vd@P;l9tkf8M*xIp;D|*0@^MxjdJ` z{5Bb{_h`|y>21t@!hM0f@fs9jHpFE%82d7=2sP`5jaZAPu?k;mZ`Kxn!yvqa?eGCU zhHX2T&BP>}h1Hm8=CMENbmc+MFtd(05`$TAA{H^8&O=S~IciT|VhoM@nQ65d>VDaa~Ov|VkF+j zSnSf-jJ0eaYQ6&0f|F6-E5SINkJ``{^k;o*rjv|EP!s&>8{bEwZr!?=#bY`WZF>&& zdm>bfRVK#FVu>Hwvv?|Zh> z(aDdaa`-iJqwITBYHpzJvn#=SE8M71r{E||!`8R}wGj_0HJee9tn-cEN9Fzi>iZuf zx5Q(g(NWc&L51oHcECGG^vsU}AljCI`dkj`MB`A`Y(7$-wi300ov4LdP&IYJ_xvK3 zF}{lg*Jd$EwC;Z;9WC5|I(ZXvXgi4t)ioT5;lxi7DM041VpNf?z#dqG{MaYFskkm- zE#AY{xUM_(a^M}^og)jN(vZm{K}A}|d#|6)``*Psrv-{+xJ;vc|+Q#{bl&!RTs&mCfJOGABe zDykNiqf$_hibM=bwxRJITm5SY{4Ijk~cnURdk%w(7 zWEJ=#Za{_ZCTe2=tg4BlQ4{2%LRf&x;Uv^XW@0#&;G>06k=u>bpPfJ*@CH7P4^Tzv z$)dEiKn}LSnW#{|hFYM?=VsJN>oF8Bpf>ai>LfQ&3kDAIj(cMW<58#sPDIXR^H8bX zi=@P3-_fBk&7aEp05ee`x{TwoEX#ZSPU33D4^bys%`tR4>QMK&9#u<6u^3O|MC_AI z{&59r;fu(U7Cb~XK>qXSs5r_|#k2<%!ZX;6w{RLZ=6L^u2^`8FBgXT5)}p@Gf;z}$ zR0>0edHkOm_|j_HwOtt_CK$%n1mJa_w-Eg3^b)!|&$Mmec-!sd%+nZDg zGwwsvtAeJ=+pYmG-QzkZz&$cX^{bkFidI8gMysSvrqw&M-LbB>oYn4rt}V_%cjB0x zJY7nAmqsx^`WIbyT(z>B=Fp008)@rkyJ(|mx;^V@dMT}Xt!zpOSsdPUC}Ff;yZ(dY nQq!_B9Cvcp(87|bGfK-#;tEU3ic4pgH039Ek8D~o+|~9!U6N!_ 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 08ff5fb26c3a1646b45d708cfd38524beb3f3139..a38b0ad2b5ca1aadbcd7dcb58e08a226d7fb9690 100644 GIT binary patch delta 3181 zcmXxmdvJ_b7{~Evb1TViBtcvgD?tz`5s7w-PK` zLA9v3R86IH7-ed-OlMjhm!SXl=&%5Jjo#SDh z!+SF(WV3M{AUYFsLd|aD$#DK~ zp2J9t$5<@Ibew_PG2P5-Au(p{85n}C@fCD3;S8KiznVck=m*rAu3;SB#(Z?NF>~Qd z=)!6alZ%RxPF3Tnc+sQbL=#^tC5HDC+ow{K`9;RVzK9tHZ&cBGH~0PKpHNVcsc zFkXW_=`Y3ZcnC?FUBce@D{5iUq&EapQ4?n%A6X%Kb>?$vXr-%B6K+SP{2(sC#=z&P z9sJ+R#B|0B1N}9qquGJ1-S(mGKaI-hxqw%Y^0M2gjoj-%{maSQ5scTlhEKnh5ior2oHV$}WK zLo~GWE2uNPfxKCE7j-m$qu%G}1piwRhf4Ke%*D|djB8K}sYBhr7j;A@P#HZP=zou@ zflJ79y!Imvy)L&<)%zDJWnmn=iZT|-qV+_wZevj2dlR*@8r1#uNS)e2)I!dpCT>F2 z*6)FF-Bd-t9mebZUqeH0!2#67=TJMiifrEQqf+J~e*jgges+U=R)NG$Z8Xm%1NUCgovOgnRQT>Cc z8u=Wxqh?%)g$xeD%Sd^ci-OSxQ?NJlqxDRGw1302^>U zDno<%`QQIsWX-k^m63hOv+YaNQQQw0!YiTs;*exo3OaE@D*4wLPh&tu_!jDiWgcoF zhfzDchT2Ie=}|3o$7sw%-B*bE-c)4mwi=b8<498M4C)u}0qSVN()|5CX`H`yki~$` z+!Jsy^3S&LM+^EERSP!2|9&SRb!r8uv#&*ce-Ubeqp0ULp;8~pLsYy8s0F`(n{kYn zhEj4JwL?dS**NTqDxSIM!j-5Ax1f&dI7Z=FjKC|Xg*2lwb04+fr>Oh7P`S$JXw*@Z z;ZXF>rx8Ts3v}ZN)PtIky0c$U6Gl-{vJ)!BJx~iM#8@mv?Qj8VqOGW%pTS7{8C&B6 z%)y|+>|XDG9*t}UHlW^utN1m>4&m1juVWrgXSuA!4x_64H`Go_hxvb6-^O_Q3s4K) zj+3wf3(k#gE_4;vs17(5w*h=s2v?coz+F0k26P5uy_Y~g)M8O zKhOzJ=B8!L_O~b>d4!TVx0MH7!93K4k}f%u^8u}elTueS8PVrMDS?; z1LINsUKom5s0s5>HS;nm<UpK8d6#6{i_gyD6a)DTJVG~SkMUP$ zDXPeJA#aj3A}@;F#U2<>CGEp(48jM#{o%=ub-pX%iH;S%$KjnEANtxxqz&K6XC7iH z@&A=ZL&vI(>lwPh6~@Bt0X!A6NMJqN?hYg32OK)tsX0^2#CZ z+@i{&In&+Ql~u(v8>5mgcI;R%tHM3Kga@79Hmk-{;`Wpj*LcdSifgJHn@3#^{SO~4 Bdzk-qJOf=CsSEIqUoDoX&jsyzk5T|KIn0-sffBt#$3K zb$KsE1lAj$9YicKE6D6;+}VL2e1?RXjc}P|V}JT(;by&X8`j}ztitIX&4Te)48?o+ z7(T)t7~IKh4)(^mSdCd`Ui*VaHwMxo%sS&}bTi=;oJxNdgL+XbYE36G4$ol$-bD|N zj5Kqw0Nr>Mwcy`S3yAAt##A;Olkgb~XMQWC!6I!1>O~I5V57f(2;0*?joRUPjK`m_ zJ3hpo7}eE`xoj}%efg*fi&4*&U_35GEodFKXMWp9BL$D3Uhs>*{}9Q#^@=h}zzihY zHVHL88~fm5?2Vg{q}ee{!waZ|xkzsyCZHxxMt)_v=+&7Q)6hy^N4>ZjmGTYv1~&PB zpAhZ)UIu0{p6lQJ--{3(H6gLNO{>g)JA@YCjZ*;O$NxKJwojylDvlC zP}EtC!2o;(wS)Pn9aZ`JwWuT7g_^hp`{5B(E!_5xKR_)ofb*qk(J|y-1DOoy!8}w3 zCSp3yM7^jEAIGDp)ZW3>*q!vvz@0cA!>CL>SA=C)h1zKVt5yv}pyrGA_Xm1ujAURi z7GfFZ<0;gHQ5@g^9E1IFF=|0gn1bJ;UU(muV8?jht*Ah~?>y?drcgl2Y(8oOrKsn< zn`mg~ZKyLmgWM?l9(6RgQ1{uD=(`mjRH{>P91g;ESdLnV7j-miQJLJ}?|+Iq``xJL z_ae8%Ylms5YR{rlbqzb=JtTV;NCA*-OGJGy2eqT;P}giJQlD0dTEG_6#4V_rI_@98 zh>Pg|jwILS@{(BH{|XwKxCyoMW@OWL0+p(pI2a?zpE8nl_pu$;B%5t^nXSPEn9f5v%x_y#Nh4myT^PZvpW)Z2RF(AgWn>wuUxlg-2eqSC zT#lIx4#8%m9PAeAdb=r@G$u^N`ShQskaX0o=vCu14ej6pPQ!mtsh&pVZO0N+hN1@g z?tKcfRx3tjq!Lw>8&OAb%J0vp=N=+SG&fhnjp?W(&PgZ#D!ykK$igDjLTZr3TMKF@ z*YUqvAWfaig4C6V#zHa{!h4>!{*&@iHwq4(qWuDkBHIG_=Dj zn1}X+uXys&Lw7D}!X>DqYQT=zgrWEaY9Xzt%$!0k_#*1LN2rV@P{BHi2{;U2!~pcJ zr4dhKJ?cdVkh-&PP!rzq`v8^VASz4?$i%Lgi`wBd)I`frJ8#4=JdB<3435RC_%xJQ6p48r!Kd=rJC zYNZP*)k&!D4aPVuL@i(;l2ofkl58i?t1r4nbA>P#WAO#lj+UZUycN6Q2~5N*sOQ>^ z@%@*p2kQHKP?@}h`h7SDtoNm%CLW6%zpcOmJebSL$I}R*B8Fias<`GLH^<75i(xx4 z8L#0d7(yil;2vjxhrX^=&W#R9E^|UcV_Y9Py+bobZ02_hh_{LVKf0!Mgm%8&Ke!gP z@djct@h0(}Qy-e-Sx-x!YNE+$3-!9TIl1n!o{#CjO1w+dJL}y^t}5q{yKllq`uzxf z%7`h%CUy8k5F4Bj&*-?7w1SBVL@n_aQ9%?FTb+5Ho~{p^m7W2vb7Po58}Y)%bZ9@%^_F)y%vdUpK4K|?dsov@Us g@WPUrvr8A3#21z=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.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index 1abb7b0e66..06e039527d 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"POT-Creation-Date: 2019-11-28 11:14-0400\n" "PO-Revision-Date: 2019-09-24 21:06+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: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" 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 27448700ca9acac2738a89170467414eda71b7d5..94118662f64a70f49e9a817aa04c0cafa4d4f3d6 100644 GIT binary patch delta 6861 zcmYk=30Rd?9>?*6f+z?mxFCXD5d}mR6-3;CGBkH_$=nhFNdz&#Evjpa%VehJR+>&_ z<|vgJnU-`{&%^B$9*!` zdxasTco`FpH4ThePkwBOYK{4}g)sy1J8Xw(VUFXm3+1`k9&0cLFIa zxCWzfx1-yfCDWFQ2DH8kldwJ>z`A$@U3e4+;m_Czdq)`KgCnppj==yd!6dB2RIEb! zWKLri{(#w-(8`#>#%)Xm8TGIh6EHZ^dGbtD1GBIzK7^fcJJ!SRtyfSzyN)>+?lQ(7 zOEC&7u{Ewkb!-pPXY&Deb(1+qrV?9m7NciYqk6Orxu-dR<#+*`;u!9#A-xY(UW>k1 zjcQ;gYW8YTJ^vh=;Tdd#zoM=S#9E9x zZ-G6&3e~gMQP;hXJ@6Rz#E>}W_)u#hYUm$CJrGMP{^dr+(Y z3)GYPQt-oYJcTi+5%EoA*su-ix>(fW%0k_66b523>VYazi+CYsV-@=2PuP(5%?&cX zRQR)L_2eNq2*Z&>W(u+_%xWyf-RQ!kWM_>Gu}(ydOa)HD`KS@Qh`R4})Ps9Wb{O@qvp8A`Z;QDuVD!K)4F;ViRwu-s>ca<8>XV(l(SGHw-q(l zHCTY}+xo;VPDj(bF#l>Gg9<&sNX*0uI2519V7!WIs2<-a>QNx7M~SE&XQPIAI0oTp z)cuN34^n~Zm>Zko8Vtm(X^g*~a1Rxl(?j?Xeu2Ct%|^P@3=bmf&YZ>~Y@F^i^Z+)Z z`~)_}wWu3!!Fsq0)!;rHh5tc4Pzv*^4rRE>XtnpjP+W<+a0|A>H?cW>g?iARQ4i|X z-8nxH`Q9=ys2*qIb2tQbpDVZ=uVWQ1;w`1MlFnP|U35P|Mhy+>Wz1}xj=JF`Y=MCp z&evuv-c7j(HP^KmgT9&0w_6g%Q66f`l^9ETEwb~>e$@HDU^GT%v8A>Ddy_ds#VO>N zd5^o_gLQ9rdX$HcP%g3M%lIti-!KYS^>%(gyp5XsuQ38Iqed+74(F8|hV;pd!f0HD z4QSugkkN(vF$|BP=JJZIubb_x`Veai!oonD&``XD&lftGxqiyJesj(=b$zCSn54!A|%p`r>I+1K;6HFJ7$}Pr2w$XUJEg z7Vj<`fER6j_kN6j92I$FI^rT6h`Uks0sWl@)2s!k8!fZ$#r>48Vgr1eyX%2!F%b{p zc>EpJq0!u2$ETte`;38%zk0lw3Kpn&0Xf&4L=9CuTSJSk2i}V-aSZ;2LvhSt=fPh= z7PdKsJ{Ug4xnC5fQXY@0Uyd57)z})>4`KXAlG#T^5QcMCc9`jatS?iDdcZ1-!ClBY zHRo{!#^yMyd>4jOzJOX>-ouPpigBnlu@klUj-#fs*>GoZrnt%YQIUz-Zv8O;3s8%y z-1;Qy!cEu&4`3{wK;BixXN2=!=!tD9_e0%h8ft1DLJj=_)JQL}_3lGtno@BLwVi%M z7X~pbdhsM<2KL1%xB#c(HG4eoE@vn!QTJJkov|AI@d9edui_c}1IzFfufq-6|2a&s zPPmSbq1R~VKNj9Wagu$;21W?%eGv9oU`hqPz~p(%r+~)5Xvi9;t9A3@4(}z^CIqXhCUfv zQtpQ8z({KediMWgWHeW+P>W{+>VkvVnugBXa{XNA#?h$r(y$wjwe_n|Be@yFy_f=Q zMfu1?r~VRZZCuCJ*eZ|lk0g^xMo%^YH3BoSJubx@tU>iCDBu24LM^5=RD&5UNZ(8>SGO1)zik&$rLT$H7ti*+= zA@(hCZqx#`RwB_4yWkki!ZKWodJi<>C7}^(hwU*H_0FGwy5DT%f!t;x8QpL>24EF7 z#J5mA-H)2Hv#1_sL4p?8Cj3596n}Y`QUQWm7nVACUL~YOQRTY0RVeA!@A*p5^S4DL9C- z8}spF9EP1|JG)^%>H(_J^ZkFEj24dE<( z=BL}Um9|nGO$;V9j5kvOnd`Rj5jG=OQ=ar2pZ>&)PVw(g4YS?@+9^Ri%x>IAtRhYj z+9@|vJ?;Oal(eXxBVHr2i604nF5ZGlJqb?rq_cc#(J3|J9Hk(Kzdyeq*U^@Sp|+!T z%otm@5w&0g+*E!{<|TVzE$VI7oVZ5*10sg}zpx?EhJ1S>j(k(R8`QEo# zQ-@4<;#cBNqAj5`p19d5&$bA)H}M>`A7Rw7y*+1X0ePmY%n zCUU*f8bZH>=AsL?;XetbXNgSpzXJzCDU=WciT@I*L@@Oi@EDOnD2*ff5rG_2YK-4t zJ5P!43Vht=JK1wo{DG(;dJxBnFrtX~d;E8iKdlNfLGZ#AV$ z4xaCW0XzScjm73Veda`P7t3dzJ$B9`#sz(KqxYQ!uvRtXu$DFw(chFs5?SogRO|O_Xx4-uOi0V77EF)Aes}AUe)VbbPx2I zT#{Q@uzY$4POtVEvoq%Zej+O$ delta 6694 zcmYk>3w+P@9>?+T*zCq;n~lw7!)CLM#+cifOzyWaBr&txhOM?qGJdF`3x{J)SeH?f z+DRJS=!CR75<<5li)GYtLg^%(PW5{Ke_xMB-^cmv`Tc%>zu))wz5X_xvQ-TZlr?Z_ zL%lZ|QdciyT49yHF`LP!hpE<>%1C2I;#TZ{SFI6I#-vg1i-}l*@%W7Oee9w8F$v>a z8q*%fVJt3mbdWYbth_Mui#ib zje!^+V@x|t#kM#BHLwSeF`DJr(;@Q|nZ@`iGFxUWcWXrRk+zJ3#rO<{V;HS!N;{&; zi7=Sb8lLYqux`G%)0prhhei==6?j49Ckz~R-tZu2i4FC)TXLKO=$od zMK6xP!`KG%@oQX(qdK@9`~-_A*J3he(TH4%YX2qF4DF9+{MXk+E48m}x zL-nz!5oMt6ACKvnhkdcqUaz(Oh??qvj_!-2QSFVuMqb8DMs;Mm!`b0PnPQ}~W(@}8 z9`whcDwhzJaqwepEpWztPixL>VM%)Wq;7HVFcV?1NPs=d? zcj8yL2Q?Gr+~tk0pdQ?d+Dyk#4c4PZb`#Yhzs~NaZGnR*_rySSurWS{zPJhLxMM2G zjG|&E@;~!4KUi)P&mk_v5g3E}QG4R7^(tzlUMa@R#Ac`&Ta22KGE~RcViVk8-HICU zF7(&=KTJjs97D~(XQRiQ?*8#Us$Z~z`ceHne|rDm=lYOROj3>fsKkF@{r4z##00>flJ!l1}Qu{C`AdCKY`AOgDxTffJGaWePAKpGLjNp9O4+kr;xB zsD{(A5e`Saa4g=5vr!#7h#JsQ9EGQ`1-5rsa6Oog9WWD{V?L^?7)^qw=g2%QG~+y+ZAl8Oqv9rxlSyn$Nl ztPJ;4T#jui@5hc!rd(;=j(1aj5w*6ygWTT0@Cu(i8QP16tIxV@Vy^@b=e=&yQ8q`u& zs?7V%n`Cs{j-ocxIn;=*B41V0WU%{(M<3LS3Q#Y&AE$dUhnPgUZiqYOK||fmn}#E( zpNa8UjUDj}c0r$EJUfz14>Gz?hI-*H>siz(2psO(2Wu$LMStu{>%N$dopB&e#bVTe zPTK1iQ6s*BngL&4%KkJ_Bbk5d%mgYlRnMX}-5#8cL7bJzxDd1O6sqTOqupP>6VZoq zIjX@e$fv}7YU>-1ac3$NwP{=81ni5!SU!gN=j52@s9=AYuTVW~&)YO*X~;%3Q*k3! zVuI>9Q>`!uwYf@hJ#IzqiPUlK<{OP#%C#7XRTzM8pibMn4w)uo&SDf^wl>OkA8d=w zsLw#XI2-v^nI+g5_hK9#LbdY^YH5B#EscJ$XlDFS^#d^+N1;xWa}SvqGOJJ@o)<6! z58zzXd=>3)~HHf0z=c_TK(D%6s^joPgB7=poUkoMRXHPv^Z?$1NEktsp8jX8vx@(|8) zb4TjBy#hu2$QK;8Ea zYH3cQ_R2Zb{XRK#+TlfQ$*3Z8n)^Tw>c%4MjZdH&I*FRPdThmWSFjD`!0B#%B5E(B zqLye9M&n{s$0|@W@G2(aQFO+Vxj{xR7?$U5wkfF1Q-pfqgE#{p!U6cLHTfQ6mQgN5 z&EPfE3uCxhOVA&+L|OPC=AqiHMYVfz2J^3qt5j&JZ(uVFoayfN7*qp8F$gDH^X>IT zm_+?H)D$1XR`{hY-$b?VJIgf~y(u?Gb)eNO$NjY#M}=OHjG5R6wYCoGfk%+-VAi5$ z;4&6t=h^P@+J+4&*CMNF>hNA1Fvs0&)fh+lLyX7oQA-}_*#}loK-&zL0^nQeOcRKcPvCL$#&G2?=@VEP7N7N@ql@5L)oa! zau){ReK;9Qu?Rm$o%`YQ-5JZpM9TM~zVQ{P_V%DURD){oI5xqH*cg9A2I?3uzAjp` zXw-<(QJXOv)zBLHf+OjF( zyH7a)Pw{?pj7%6lD;D)z$1(CI|xJu-UmI%+DTIjk+2@}rnd`5Si1YV2ET*A!o(d>pk$ z7BAr|hbyr&4qEE|nqGjBly{(Z|3M7KOE?&BEM@+OkjY>gdf;l*lpR1la0GQ4uAw$r z&@%o+$6lyoSzs;3d6XZ(W>}9pHNT)n+mP}-Gu7- z%h&=xz-T;g%U&zohNDn3HyBf~7&Rk1P`mwA^uh_mSA^0G7jp5!J*=;vGV#gXEa^`PqP8H6-GQ5tMz2FA1d(>Xe2O;hr4dZt9|lk0=KaHN-#c zHE)dPS|~n3+(#TB^cT~u^eq{0%JX@@X-+2X))l--1QGWTam1^HFZcK(w|o8pvIuhs zzOd#xq2$9oe6c;y;c(iSLQwgwuc@{Rn;S!iY75Qg7lzVy6l` z*p8S-b_#Kf*hVOQN|X=_h`xl<--stXIrnosi~Q%d98NnOY(B}IQ2yy{D^}w$n-{U% zthB?$w5I%u%|C68zye}B5n}6px3=N_FKj*=U#hC1Ggw#)KE6yQK8$)U{hoO1IwK(vnh0 z0V8sYOFCs2K!w-aQcj*l0q!bEt*qUT{dJ_=!U_Q^Quoz-W~r3Di;AA 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.po b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po index e4f97ab9bd..eda3df6587 100644 --- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-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: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po index 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 4825196325c8063c4b308b132f2f82a4bc6a426d..9885b52da8ef6c3e4e8b6cb658273e0016f37d4a 100644 GIT binary patch delta 1084 zcmXZbU2IEX7{KvoTI+nYot1V|A7|avsC^hCqf%cHHAJM@or|Ip(S=Zp#HL9tmXrw^ zOiVHtODvXHR!hlnBjU#5G?Il2B!nAZH@k2l;{Tj@x99xMIa}WMd7tM!m&5PF=?@k5 z>%wRz77-&QBHJ)*l_ zu}E6(aHES);ClRtr5NNg2kX&+tvCy};A(6`U8oyRkn}~|%JU!onTaJ*Cb9qzpa)Ok zJnTi?$Sv!AnuWR1Okbl;_!V{Y(?~Az8{6Znk+6>rfZGjhf+Itib2kgj3kVP91YaGCW@*+wJIfi8NpgwT0&~ zi-VZN5dB(${kRqjsFnVX=~`}TY0Q3%;yxTeo!|$a#WU26xnvr3A{$xpCkbE`uEBG- z2Lt#Df6XAUljo20A%g9c*}xnBEqLjF125k4VlO&4DeJHumt!CDE8|?KzDy#UmnrPW z&)AGz^kD@)z*c;RUFadZYj_0@V$DL47kB|%aJQfO_i>YtL{_wL zSrjBh2o<}vGnJpZAB;w^Ry@iI zVGnDwJ&f(C5O%VK>v@$+ILw6{VJly;hQFA{lDQ!ivW_d+!KLhE342%^LMGhu(&WQ4 zHgk&eSm?2c#hlM-E?^_$VOtqD>ft$u?&EIrAO6_FA)OOK0S|IHySa>47%wuAe9zd} zOI+wJ5@fZuFCvJS2ZR}?)-!T6F3@_L} zWVvSC@FJ5GGv9oe4SdcUZaB^B<|m!DgEOpW-QvHc>*Sz$FV8TgPV0D{TX=^t!{e;r zEHg*Flqt+%USeF}J^Oe>zN{4{7#I3NKZW01&0MGKXBEr%m_O%)@PU`jU(0_x(;A_a zXa9MJ_2w@M)&G!}X&<&Rty5yNobr(M(9c}n, 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 e4d1b6353b4546aff3b5901e24ccd5f9560f2a17..a5995f4124e2b8bdc78521ae64a70e82bdb93497 100644 GIT binary patch delta 1051 zcmXxiPe>GT6u|N4s;kxdC+&~9ZT@UCF|+be9qOP$kr+iJ{ecQcchrHI9h;pkq+-J^ z5p|HQn;k3&g$|XTBI=+89Xgdo1O=VC1koWnMc=osKlV4D-~MLzy*F=u?-C!Ia$oDp z?g^unxtZBtBC;26N4PKsN=3TR!e)GcHMoeY@dF;fZ&-!#GLa3~h8wX9Yw-;3M+c)g zjcY`5GQ*;Rjd@&!FR&Bepa%SlJs2$)NnkIo#}TZ@Yq%CCQ44%n+<%Q)$Y<0zzmOW` zAM%k1RrHZxDp?pd`Z11K?7&IX1h4QQzQ+cvrP=`7PyR!c;hAN55FV-kqY|9TabFJ#0DI|X6(QT+<{N9 z8^2&HCaOhF;~{Lv`}hpsqCUvg8fh#fzQKvoC!a?;R~YepHqvxfceQCNV{36i1li8i zFpb5%7TmIJuX_(2mmeRYC++oMH zjc12e$_g!W$#S!{@rR{19oj+Ka!uOuZ0WPd<)}4iyK>YS46I<>Sm~4*3;dD5@=WNP zz_wC_y~}|UF2^%Yde{#Y4b77XGr1QP}^=dOW73+-r2lQI_baw1;WO;IB8;xgPMo~agou)&A2+?_gBw>mwWH?>$~22zxTV_i+_&Q_k*tI zLQB!3^eYaLOIR`(XcJC4W-)<}uou_Rhp%uP-=H7=;7RnlL{6cJeRvtucpW|1z#fsh zJSI58L>s;M5-(y0b-`~qi9axgXWb$v@EZ1G9*^S#)C8OM{5tCMuaTVO19Hhn1`~HN z!v6A`V2p_XY3YI)%-|e`@F`ZYgStSNY;~hJ1~H2(4v`$@`TganND|L;8ohrL^?U%nIQ0|%%HB&q8(rjb3RiF)EE$R4taT(Ze<11;1<-PALOgLn>WIE<^P z>%T`6f8qu79i#qwW1N6Fxr0<$?jnbf`>2(9h$FaxS^SD;aDe*W#te>P8+Y(6YT~uP zzm1krE4Gaks@qO8l632Z5uT3|Yo-1-(+>E1_W-(9*q+mTwGGkr6V-1_Uq4$OYWk@} zTYhIGmLk&k7P0SZ?X`S^^n`WQ**03g+#xIHdFBbvR_>X_@=~E%F342r-ImN07Yii< JtKq+8`~@1?O#1); 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 645738833b08853b95f9cde4a4a94fdef0959064..43f4a49492868b575355f66f9b6208967e9200c9 100644 GIT binary patch delta 1065 zcmXZbKWI}?6vy#X^ZLicq}te|Qfr^Bt+BNlTS`zX@ej1d_-6?^h(p8(Vw#kgic85N z1nMNAL$O*rh)cJCi`7M_E+Qz1i;C5{6a+!kLB#Jbc*%XA_g-Fd&pG$Jx#(K7^r6L> zF~%TsD|4~V>==%CI53VoW`{9>+i@D3aS^?^ga`3C_M@lX%#V99goiMUDcp!z?8GVT zFe}+zPPF)AjNvzIz+MhM9Kc50kL&RW?!zQ%p(&go=v#P{>pwiqA6vZ1tQ9X{5U=4T zETa;ct=%uNFei%i73vSaqLTlC#A3fOiGR_>6GYLDSFsJts08lg0epi47@#~U96<$e z8%OW~?#2~tV|{BT%>qVH3*JFRxPUGA45RoK=gG8jgV|}W9}=yLKT*$x17^f%eW)!N zLTzOp^?empnPu$7FIZAZd~B#9?m$JB#8Y?!&)_ohtcBP>J>P@eveXax1vP0ZmEy4WA0{wYpQ5_TLHFoK`(HF{}XHQ#$wg;uc}gKYc| z#*jp7{h|^pxF}Ouu4A&k?OpY-V+VgvZp%iOgo{`E7^=Yo++j;rHg6z odOACqar2j}Pn+I(owMm|zVflPt&(r9Z8rPE8Uq%5kM8f6B6})k-du zm5W`t*yP5o#LZGH30qN=az}p8CvWHde((Ez-#PE|KJRnB7Ke+asoLEAq;={m^oM0B z?O|KFi?%J7(k^c2Dqi724zrS@?BY|l@+aprKRcxcwsQ%4Si=*{vyY7_mC|j4O>R8q zR!(sa8(gZ`$hln4dF*5a+r?O@kLLt^mAlQqdD#!Aj*67(d60EH%|*P#*vLS3zhq&9 z_@U>FO~0fV(rfl|k_9$feK~u$lqVU1_j3nF+0JPmW4-jm!e_XX*Vx8!#`kA<-ukJ` zHeu+^I;bGgd=wNfrremi?+a5jQ4&}jH!IVzoV#T9N~V(^IMFJjBpK~F*5Oq zrHJ^KK}6Q#U=Q*L4|9YbrSFU{{Gm^(agbqw`&eY0^<{n(=v^K#KX3I7oM0?G&6Qjr zEfG+Ao%3IB(CbEl7ip7eh>?*8^hu9gPH}=A%r90CJj^EcGg3Uv<9y4gr7a5JEc;mC zJ09b2cJpY1{I4^(C;T@YXB68VB^#L;Vl!WGGiPXnS)JHS7F-0hTA!s`H+vsh@wHN2 zW|bfJmg%cv@V^ZXlvhQnvehCIMUkCFq#<&Zl|DD>(eiqvCh}da7xef$M4p=l-, 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 60f0e20a808cb8d217e8743ca427327846495d1b..b9635d8bcb69fde5823881d225c675568a47e3ec 100644 GIT binary patch delta 2545 zcmZ|Qe`r-@9LMozKbme!-E`V!b3Swa$myKa?ZWl z47-qlg$Tkl$Py9?5^7nu!ovSn{ZSzVSr#RN1Vthu5)|~~{kivKO7yVrc|Fg$=bYzx zzRz>c4sRIj%3c{;deTsK5%t9NVq>y+;XV$O^COID#SgI!f5F+pmJ^5Y0elg4!w~XkE^yETKgBY1n(C`mH2WbOjpdcbP&KuIO{f8cuo@R2eVX;C z2X_bVz#iI9ppthE8}S1y!OO^>`JRLB{|U>K>RVLQ!EZPQi^y9QR^tFp!SVPC>biGv z8h(VN&|F3S%%2>{zNsXApJNSbfLGDtk3qYPSyDBXnAMusQBmp_pgPzbw726b+DX*f zpTl){4coDq(W-+zsFcT01Ai8k`aztHZ=$aM7N=k}7wyD(RpkFTm1CSx#|`9HPDjl+ zge1kRK@D(AaJ~;U<7ZGaK8l<11Zs`1p)&J39>v^|DjH!YY9@WiC%_y;&FB!O@Gz>w+o;X=2kHS$4;DI{g=E*PK(cGPgLVuj(>{nA z*eQGmhp<8K|C98d9|c+{pVHS~A@OE=zFRsDQP#ui1g_PGISu~5V5qnU3B!iFPdDPNX@Z(cB zA5Y;BYTz5#5OOAH$_tDmf}k@Fr^0%w_{<*Y{u)cjGMl7#HGAd=F<%#Uf*_ zAlxY$jEbJInCMc2@_2##QT?%kCcB)2KC5i-d|AnH0TCkR6TGr!5wV)kSFxC2oMtW2 zPAIjT36&l~OQG4RSVFt~pR$UIGP#{#RaG?qLfI177Pu6ZE^SJ^%a0H$y9(rwB^>A7 z)mC*w(C!Z8MKO;O+Dj_>fT^q?HmU!uRLEeyv~Zje)U}zkqqP}T<`8;?R5}TLHzpIM z#2R7;QA2Db8VNRdzOc{o8&7YK_KP;TmN{QEORXv22eXaPI;(UP$p7or<{2HdwX=5; zYytCdu7AYOMT5)AM^yEPcQq8&5bkx2^nzqUyDt=Xy5b#%!c+A+ymBkl2JW8>P9mCPBP7T{?h4iq_5DV z6V5PzeZJiv4;P*uGXHs8BJQV6?qcPo;>yARcyc%}9sr_XVs19qt|dsoIZnNY;-U!FTNZfi+>2Uj|t z%_M_#*r>x)GoBZB61m$G<`&m)q?HUO_`$c1=Q$bAw<*pkN4ciD^+j2JDCE+=`)=#I z$#nj%dsC-t`W@d7#~eBd*-ig*d&=?pophR6+vp4@x!)aNoEpTxsrB8AZ+lx^F4R*~ z@!>ZjT(H-TC)4O=bT$!pk_<5H-I-S?7oYfDNnJ-UO-<;%T A2LJ#7 delta 2018 zcmY+_O-xi*7{>8;0I`UI0_uPxTpcOZN&&0j_(hS5;1@06#MBsragu5pAOmS^6eh;R zpe|Z7ipD0oFh*122e~9|cip%WVbhT60$8+Zt7#V`ZjeO(&z-B$lR5Wy&f(6v=e*~= zLvrt#ro=>E#$}^KsUhk}nppx*&EY~hG1sgLzr%Gnh-+~I%Q5={voefeKei)(vS&CS zr*Q$k^7{+2%rfW~;c`8yghr5ot*9HL$j6Ry(L^1XiQl5`>%}4*zKJN; zy~v!FM4j<1)D8#nLmWkdWG{Tv*@fm=ggWy=T!Uc@<37~IWTQzC}5$wWR)N>LKXeh~kMSXD+ z^`O5o4__kDvm6dy{Vrpun!!Pyz z-=U#1n!yuT%J#0|b<~O@PRa(2ZACT_+lR8E9=ijuk>k76@^jKjDQr*Iex zNu=RKfFz;;Z;N)VqDd6WCUq$LQ+QWR#L0LM&P0V+WheDhszR?dm; z_ad+!6AI}rs!B6eN1#kqApl->dmS#@s6lEAmE(J_?D2aQz7Z^=DmghJ+f7x8rtq%( zN+!I2F7J%l4!@)KU4<9GD@sC@`V?O18)<(*C4gR0m~}KNN>;rAI$D)-D!)T-i*lq` z=dUEGqqb6&c>3XRs3fdc$RjVo^t$Y&ZlWro-joeAc>PJHRDNjuGhO_m9Ln+A%8xd` ztt2*gXzpJD_g+?iAlaDx+`T*hX_|XAcQj*OW%;@qrz*0ka(%L^U}vr_*Wa v>~4=A>vRVT+S1)nup-UZ4dpCp4ArX?uo^nZ(_;Q!2-9-31_|r#d@>+ 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 66f3b5ee28d35c140195b20039038a4848b43ab7..b255589fad01b5a9571b24995bbf545a0b5779a2 100644 GIT binary patch delta 2187 zcmXxkeN5F=9LMo5CR{Fp34+Fha(N0AoIT*N+G&f|FE@}qV|A?77zK`KTaXHQMF$)XuS>zGx$9NpXG(3tecoxs#46emc zoLM&hjC$^GOva>nyvr z;chG^lhQGSdH5;nluV#b#a+|_GKjk-l!YX|6`;1X9G77gDrtA4B6%1O6S21fG&Iu` zM%j#eP%9lpW$V|t8vno%%wzN&{NptYabHPBHsUz0$27vAEo{RR7(&)!OI>Dl=tfQC zReTx)AsXb3UBgPegKo^riuCWq<=pq6&htB{9GE~2n9Y9ZRCM7wJc*jn56IY-&MKb7 z)kxIs5Gv9kd_(8|Dve?~I&vc~d>gB|zlmCT8gZ|VGTVmNxj*%Iq`#N=pXUBN4q|-) zlfzNe#5NQ6Id}#Y(RWeFcpmF;43l*JXK3uBBY|c5@DTcO3iaYPGN=WwViCHz^s68B z+%L$Zwt-A#H*FBL1*dQoeu?e)0C!+3t5xod;zq`|n>6$fr6p#s;BFkiaa0J`k+Scz zlr~f-9Tkcj+knj7zD4cvT~rdrujEMMLX5?GsHFW5lQErH9mi4(bkP{05s%q!zHV58 zdeDcAX~$3lUqr^R2Y3#PNSLkoBXSTdzbdkTI#mD1IE30yc@jUs@L zv(ZYv4`;oB%*ht5iL9s*H9#}+&9QD=fB|gAQ^=p);-U#=)doM0Sst}1I2n_lpuJOx zrgjEX9q9=#)7nK<*%+*MOhv)aj_SldPu)rNQXSNXMY-st?xE&Ul`37sPUn?*iA`R= zr`_ZCxCTAl174SJ&+zr+$+_#x%Uxv^HDwirrIffv&wl@kt^JFrafi3xTer8z)7f3z=IdEIJe~SYYVdYeVz90%dib-72Iv2A CCj@-} delta 2118 zcmXxleN5F=9LMo5gj~Q-P_BqnK&e-r??oheu!vgt0GNakqPH$}DTqP4+*&&9jz4hK z7DadTV2#1CN-CpPMfnTwY-6DoWg5y22=1NX5wYk{r}=h z%wlzVUMZ$yBi?{JaW(G6CA{Az;uBMt#205!D?Nv0_y_6%1$ zEL`F&L+=xMB4K{(S(WX$D`~V}`i_>%}a1MQ#v&@Vi+s23X&X0<87`Ng$ zHsb}!Zt|}PTUd@FZ^upOM@94sl6^aY zTF5!nee+0iEP*sBm6^yh&4+j3?O2R2pq@X2Ui=bE@IP$DqHOYi8=d`Bjv_jSU6?@y z<>DZ&!DmpX<6YEgID?949<`taq~I-?{A(*SunUcz1c;vrTs&iEgm+Js|Nm!;1wDtn%YMKHTtKpI z4Me3(ci_`Ffn_@XC99nWc49SOOrj#6)i{BpNdC_=Zd>cjSCIeb8TaF(xM-c(i#UW@ zn47#Oq92vf0ICT4u^#s$b!#8t!#e+`=?pN@K)7K%f_kur3hKlOEWvpUX`X@ZJBZ5A zQYw}0v>MbFwBZIkfcN83+=T^%tJ)dD?Kp`(-fw@>>BY6>W{=<)Duphu*=vO2!3M@( zR489Wv)(DLQB?80j~DS{Ou<(xonn0xvlt)85&Rw>!Y)>)%$&r?&2+w_qZ@OpoMYle zy)b}0(DRbBK%a#6ze=wHd6bmdx2=kUR3 zp({829(sE;MQe%faCuVIV_U2{I_z4X*{UIpT*q2d^fOmp&jaz1GNXM}BLLgR#kwrO zrG2N6V`up;ywY~l>Ecq9YIi%t{_NgMzlTc!s`;bMDdq0_=uro@Q&Y4wuJ-6yO7Whp z^cpoqYj%hwL4oT}hnkY1E!9cYPIPjq_FP<7S_d5k9^_iXrBdmg&PhGH_=x-Gq%vQ1 zzPF;L(pT)Ir8NZx!=-JZK>uK0AUqJN$!{I#3WmZ1I2Z`^3{01-`aEYky>fHv|26mR A^8f$< 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 a684a4b8c8cecebbe5991f02896bf0f55dedbfa9..9331d75bf1e1f8e3db7d55a8d8bb7dc5b62bdf49 100644 GIT binary patch delta 2158 zcmXxkeN5F=9LMo5j~5W+L5M(zOOT+%(SDWpcmdI9r zi$-=eu{#>qSJG{<0zaQs(&-a|)o$on! z(Eme9X&yAT?f#Yi6fjEZy-OE8@O)&%AJxeM#@4m^Mxa17ta349*!U%wW} zr`Sn<9=Bs@;#!7AFo*tE7|!~3gGLlCqjq`|wZMO<9i}Fk-G|w@7289e#Y*~fSd9Om zcAQ5#s<0NTaSVyUE+8@5EGm;%(66)jiG~MnVmWS3;e4=*KRUaksGYuqP52hJ;4*6B zIv!SrF@{R*b4;p0-$OmWj!bP!s0?fMeuzpV{~8!%Ks!B#%D~fDiziV#n?p{+en$oL zFY3K4(nOLh50%miWDV=UHXOhryo8#60n2a+@5P*S^50IQnVYi%UqkKe7wkn3H)$hI z;XU{P>MNN?eHDMBHjqW$6;Lj6@vRVbq#oRi)u>C`i^}9lJWs|Z{WKI|8LO0HH|qAk zfO>HfwX=88ho9qRtR;$57{RRC(HYFgk5QNRDrzGu$cJGK+}vE;h04SzGL`vH(9nXf zAn)4is2Ar@FaC%m!+yg}7)CT(un-k^2XYO}k2;!js2yKKZQwd8z`szL$#<{KUxH-V zZ*4U6;tVRqpCN164OE2jL^F?t_y%ef?et9?z%Q^FJ$&5i`%%w-MIAu`9WA^8wV`Yz z7TXl;`^_3@G%(N_atiC{e~IBK4E za2qb7jwqiCRL1&NPeYgL7`Ebz_&8oerM9Y&3lqkthq@zI$nQ?Ph5D?TI1gp28zb>4 z9LHx+JCEX=;xG}TF%vs57yXSi#%L%tpCD`4aC3fQz^ri%ZOg@l=WJ30}HC86Yc`#P-;DA<(N~G09tmW)HYOaTb%3hU8rbeCh*dU-&7KI1 zxGIvH^nen+hP4DPx^j*TgnIgY(V8l{7R}TLsJ&D^=3v~ru#tCAEUu9_s6wDPOwAk5Rj+ z{Z!@bcG*Wmxjane1_v*|;7n}nx9gHy`h8BH<8$1{ouRRQ_weDFYpDy7MV@kZS!K=E zs-iMVT(dLkE8gvOj*bpFzF}{T`(elH4E4DiyrYK(W|lKrk|OswL&JgGy!4rETh2%Q E4-T;DfB*mh delta 2117 zcmXxkZ%oxy9LMo52=@Yt+$$oWCQv5AjXxI&1;f%QgaV3TWCn7vt6=2a?jtN@{piN$Fc*)bVtE&Ha18IjvzUgL(Ti76{cm9& zE+#sSSB9C`hEcZAjz>L(xg;+kulAWJFo$L_$q4rvsj7W;XU{d?!?ku^1qqN)0`Zw=qv0&4<~3D zM(}QY5p_F0M%{)f)QWDP0{Ra*@a7`_+DZ?W;1bkfeE^lgE*vFOVN`(LD6>>hsYjjq zCs7@rLapo=4&eKE4p$Jxvv>uyq63Vsl)r{Lv}aHY`3boQwu%#5gjJ|av?D`VCu+Xv zAQk%B5US%_sE%JE$*@UWg}-7crW2JSuST}tx=~vbL9O@|)B?Uh1vrh$Olo0b{47+4 z{Yby4ouHx=zlY3W-=iYDhBKH>RPW$r)Jlh$trtJQX3XYN>%ANG`+3wB{E3?QFVuqm zMPe~Go%CLeTXg>`;}x^RxPc!g@P53Bb-14B6xd;Gz!BVx7f~51B0V~cwWxkgsEK+} z;~d5N@LSXtrE-9jnL=F7{MJTgJ08N__!%m-d8^HyNg~~-GjfXjw&F$PrkaoaNWpr1 z9yg&@Jc$`NjV}BJAHq3oz&iF%85qJSW7`W(!#HxYYy#Cjg*x>&@hIkTcdGDh)I`&` z4rj3jbGfsf*os^56t?4a3}It=;;emwB*QM06Az2ETQsmewvuJe!v}EzHlrrmjc(kB z`anH_I;?M^w&3&Fd6zF~d+cvlapt4E>q({b#!B4FGWSwbSbADxZSGo{zqtfvGh+~RoLJMdx3?dLHnI^=7ehDRKg+-^!A zg)c_@>58?aRpjiWP7-WaqA|XI9kG|ve4SfqX>?j!9JQNkC~eNWj+gSK@t=@;gIlyfDe++SN*Syfl<_f_&_GzTIBW$od>p-6vVAQY}E b+!^W#h6h3z355GX<5^2vJmW`7Pp1A4I)dO> 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 c871210d656f9263f0533944bb8a6dd20865ced6..f556f96a410cbe8cb3ed3bddecc0d43714798298 100644 GIT binary patch delta 1411 zcmb8u%S%*I9Ki9TjyAqiODlVv@-=EcMzeQKWducKXizW^*xYMQ%tPniA$q_pl4ub` zNVJJ?5ya#oXj<8W=>7pB(xOcm)h67!@B6zm`B)Tm;LPWqbI-Zw{C?-m8$HvI`daOI ztSBASt<;G;rH#NH z6%6M3XRwdJA5|rF6_Tv_bdONk9O0wksXH(WD4T_x4>QY2QZmZmADZ8nf zDt{&Jom(W;{JY#D*~+KNKS+vXOERIFe4%(UX15yJh=-CSVUd9$nL|<0D$SEZ&A}bLCTk|D9klBexAbP`R?OHu!WV=(+4E_4_+| z_UZ2KgMGb|AG~#qrxH%uaMFozNDqygrg2jrw#1QR*P_GWNM|S>J(~I9UC2ufCCA1R z;i#F=5i=K2Qle9Td!dcwa#pnEq$Rp=JQj1(fq%>~t>sD9>RHWBn(+GFOuFl?{d{(F LPCDb1j2Hd}yeZt^ delta 1014 zcmXZa%}Z2K9LDjVIx~%bCAn4sN<`dtb= z#_(A%C{P?JWMqRvc#8M{o>#@Gf@XW4wWLVgGMDNjpwFNAV0!lkRO) z!r%DVCC0ZX(;C97$UF87`Hj6mMfw^w<3&_LE7*s1R1$x}{+_nR)(m1l{S&CI2vEt* z;$eJ?TEG{qXlCnSM|XSU!+F$-r%(gG!2ztHKD>r*YnUCcS`u|8vUnUX;vuY{5?#RO zSVJW^PF!O+*+Krhc$lX{FTM}`fgbI)ZDvm}gBq}k`rUU_wEvJq-6VB*Ra%+$UCF2j z$9>B+xG7nUsnYl^5;ZgcXU3gY9W0d&rV>)zsuWj@i?iug4sJ`5$l{FoxKc_7!e_#A z#c6k|S29Xd$ykO\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" From f54caa1ed061477c58e15373e19608520d7e2476 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 28 Nov 2019 12:35:09 -0400 Subject: [PATCH 5/6] Update translation files Signed-off-by: Roberto Rosario --- .../locale/es/LC_MESSAGES/django.mo | Bin 7319 -> 7583 bytes .../locale/es/LC_MESSAGES/django.po | 2 ++ .../locale/es/LC_MESSAGES/django.mo | Bin 18447 -> 18439 bytes .../locale/es/LC_MESSAGES/django.po | 10 +++++----- .../documents/locale/es/LC_MESSAGES/django.mo | Bin 33105 -> 33118 bytes .../documents/locale/es/LC_MESSAGES/django.po | 4 ++-- .../locale/es/LC_MESSAGES/django.mo | Bin 1515 -> 1515 bytes .../locale/es/LC_MESSAGES/django.po | 2 +- 8 files changed, 10 insertions(+), 8 deletions(-) diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.mo index 77eeb9c2d47799bbfd818c958d85b46c8fe41ea4..796159b4fc432cca61d642f1a36fd5fe288f0a35 100644 GIT binary patch delta 1579 zcmYM!+e=hY6vy$UWsPO#)RdW7llQdJyku&oX(?F-l|i?cVTznCBaI{3g{Csdv>QkS zp=A&CP!ACzMg;{D1-(RnfEhtA3B42qUFiFpInl;-K6{@zv(DaYZ|7#^o$AQ=oT)dA z)Y6ax6zT<7#Kzf}0rcz&$vKiTDF&V*GTo z*=7+-rjx{t#W)WO@g%OtEPRf|IDvYB+Z9WYh1{|tXIz1^7&jn^ZJYDC550^7I2U_S z6S$2RdA~iN6XHe*(>sp$Z~!xAn61L6n2eKHh(B=!=8;8-c5+c-AF?>>#0)%*3-K0e zVk20CV@L{%W7T_kza`O8Dcew65JXkK4@>a6GakcpjNhOVHgi#;U6_h~)K;Bx##f!s z@1rL67<2Fms-oi<>7p~6<-Nil)I_#YKb5u>YjGcHLIc>1caiT}PD<>#QjG3BrgOgq z+u|rW>bduP$f9imm3I<#7QVTuzdC=ok%lg&uL)%0cFf0vcnX!^6Dr|X)Qf&2#jrH$ zukYvL8LY!4_yWuD1L|yfJhA5skX^S55A|0G>$ssk-i$2H_Ban5!exv*P%jvC?vLUS zKyQXKmdp~Ij3;-WqBEZ{!@(@}@03YB0N zuEB$-2@m06e27{}Dznq~yr?|2SdERSlAp&**o#`Ahm)y_MzZOsl*P!TZ42h0-+AB? zD&Y+*zyYkp*LVfv`0_`*hI;N8Cs;4+!e%^+Iy-N%2j8J4u$$E}@rVWJs1za8M7oi) zV`~YWg$hCyT1u#CJN`AcHJZEu*$Jy7G|3f&eyp^RCSoO_b5=;?5~~QcDrGOCQxYA< zDxhvXp;f5lUZRmu*_nK_mG@^Pq(|1%FLUl>JBngLn~|vjZ8cF7?ZuYrbfX)*&KYQv zHxlfp@e^!$gqli1siVhP8>Y>6TK{N5T8{od^)soKPm~fm>N;)Or)pxu@b`rJDgBRJ ziSBUQ0q_2Hf9KHy!LTnJXb%pLyHbG(*^bbM=S+N5P#j@oEG@(o2$wkwNrRaT2!C1W^Qgb5jhy^z4r z!c9S7izuu`gi@OdBHBn1J)liU3tbd_fA`)FbMEJybI+W|{~YdQ!_E50Vp_~~BXyDU z$$M6r_2StW9!jxhX%L0cn2!7`n}-hzJp-6Zz1*ue;V$a!co4@h0e@g3E@6sU#Qsu9 zqG3&(SqA1|7^|=Z@8dRngPI^J-W|Y?G+CinFU4f))yTls>b>vABI*awk73jTuHXps z+XRI(G!(PE+c<$$7+TGuun)^|04wk=YJhjB0T+=y*b=V870ksfI%z>cY{C}gl?`DJ zj-rqG?JEU^{wFHx@q{CY$*6h@4r3>3zQ0gG_Yv<;C1+po2dUnO^}=J{;>w{P;Wxrl|_7tgUnKo zp-gwYe%wO+9M<9kT#H{&NA??aG)WO^1r+?K%M(N`Xdl+$5!6a=;YplE?I0!F{a-d} zpb$1-Gb+?!9L4jfjU}-QMKT{1!7^kG7U`f6pwQ!W7)A{^hMVyk*5h*=!xj9DBV2Ly z>ti%ccp7)(0P4=Xz)QG*T0l29Tnq0-MdAeVDq@2axHHb`bqBVS*`yVbmC9V4C#T^I z-iAcpxuiNKg<2n{4dgCz1z8tO8_?!->y@;TN~h#LGOg4tw1RdKBI^Qmk`;E==A@eO z3SVBNg>tpq;C!0AqHU#6MPBbU=)@bnviABv>45bmP|_iHkU1aYlWQBvO2owZdgxN< uz!WntjnDgX0?ky4y#_5lNY)iEC)bg8klSZ{v2D?_PZFLb&i=`miu(s%TzSL* diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po index 5910933ecc..171f0acac0 100644 --- a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po @@ -94,6 +94,8 @@ 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" 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 a27bffef90d955897159c2a787f412590490b49b..a9f76e3069be3ce1cb9303959073513015984a12 100644 GIT binary patch delta 815 zcmXZaPe@cz6vy#1rFzI`IZQkdeyEymU-+hZ&*Xyk7684s`+12GXl)?*{KVI4lgN?bzi_W?_B16y!6Cf4cV zgpCLr%}f(U6TjdRF5rW>$T0rKcI@Tz3SVLnJsr*gwP;W`VjnT*f(kj=@fm34DtU`1ilz8&02ls7cJ@1>8nW?mJfE zFVy`%77LB`T+)d?fLbSU1p6@$*YFaqqc+$@jdUNi(Glv6^SVTQScD~5hUHj;RhU4% z&?ss@Yla0W$}(ya-!O>YZYPNlR#T6nzPW|^R5o73eGH-WIB#BuZzuAHI*8F XGG#wZrt@>h(fV9fyufz#`Q85jUYv2> delta 841 zcmXZaOK1~O6vpw>*fxodu_|IPO*4WLHPxir(sZ=eR1;UC)F-VAhx7^so%Cguq68FC z1hq5;U5hKl2MkyWii_@qf`~h{`+y*VZd|DUs-oeY5>SIZKfIIQ`f7=fPa|Th9xQiR`HEMDn zP!m~3?fpxj z)T#Vo>88#cjpC1#vDRFz0e`rWZf;lBDs%Zq|7e@Gx!OYW{qZ~-<8{90dCqgr`F_v2 zw|b}l-aGx9kJJ20Gi%&vmW8KqHeL$+Ht;75)Bi_cMx&X=y@4;_E?k74VgX*kS$G52 z;$5uA@Fuemc4Ho%-DJMy(-@|s3~yi#KE?EDX4#wF1m3%5bLn4-ui|>t#J!k`pP|0< z1?J-SfpOIL?qdr6kMl8Qi`!`F7N3W7)CL`|McjZo)P(Qg3hYKrID(pR0-xX{dKizI zCE;UKJcWf=^q$#^SdGfaI?TpxxBz>68VxiqU?x5cUa%&!Wa1o5$3i3-_6jb?qqrDH z@gV+<71-JAO7JCWqA^rSCvi94M`a??Vm1T)9YLc5Rg)gnPWy2I4x&+Ilv0cz!++$2T<>w#6-LpI1o65Y|yu>u3^_u1IAG)kE2$az0G}~5Zj4ESd0C* z6DP3->$aOE;1S$~eaL2Q3bldg`(_KV3rp}E<}<&I(ol_lLuKF}R0gtkxLZ+zi-?z@ z21c<6kD_WkfHQCmQ*a`PZ=)7^2dmKgz?EVHDwA!vm-+1w4W;Y}CSxYsD!@EU!zHLQ zQiE*9PU9T>4>fU4tGhh~=n=0)m7*2(y?v+*9KkgF9B1MH`txX9rJ929BT>@B=DC4^R^&cewFISWH}oy1s8>D#maOdoT%CcAEW&t2)VloJJCN zgFpL~e|NE=%botR4>>Tz>(IjqRHhzaJtlUuJ8VG3SJ1;Le188wa)+)O6-Q8KXg^ls zWuJx)*Dv@IChRf$8pD`3&Fp7H9%eZX6`)&kP z`##hH&ZFMHhO5z^2pY2wxRq{3rTQ=`g~w2-9zrefI_erdL|wOBGAIjBCG&6&eu9hf zJgS5@QK^4~I<)^HrKb7^-GEfoH4I@cu0T!vHs)h{5cgpQ@c?Q;BN)azxD-*6>S}Fi P+ueUMGH>|!#_^J81v3rc delta 1828 zcmXZcOH5T)6vpud77#%m-crREM^O~@R-t=jRPd6tr|P&0GenUQFpS@{Qh1f3cZuuQAKPUVIn73A_^cEiU8vv%sY7W@Y5>V;y=wk-+ycn0_Ce*|oI0cWR-g5@u z!yAFasP~OxI{t};_%CXs-Y(zl6+zi9_h4SF8xTQFScU7b88zVmYQiC$z!CItIBJ%P zFH!k8&c>XW*-Q+hDpHBlum%@k+$Y#Va2m7mdGLcbIGH@Pj!IxQQVg4etFarG<1IXZ zzu*VhSnpbJ4mHtj)J{jR9Y;}>sBSPzLw{!wG@yDCNA2_|F2M7s65dC>@JG}_Ut$>F z;#w?fG|R#mYNvZpzdMX6_;p}kU_Y`!-!8hquA>IrL6v+MwbGPN+zYa?g**?-@hE}Tq`!CDjCIY=C^hNmFy3kjLB?k7G_{3E<&A= zQe-oB1gGQgsEJeK?)GG%N4_4_idxkB5~vDvVJ4oy4D3UH9>GNd?R*$>@MlyjUZWP4 zwA-Eb5QfQf6Tw8N-q+$uJdfJhQu?Gr_aW*!RtGkt7IZN9|FIV8&q23-9%x`PjZ+Ep zkaJ}PI3JIo1`ePWa1&LbG1Nr=pvLF4n$5*R)b%aLDHy{C7{^px(Z;t1SG7_9X9R!q zK-c4Y{)}Nohdcd+oqS}-E78LtRHeqS3g2QaR(#>|3+R!L^fTRIh#S*VtUP=|9bF2_@- z7T!md{srpLzCv0Zvo{19FoC*;c?aB~DM3xV5%q1a3-TV+>Fz@i?w& z-Iuds@T1VLr5Pow!z)X@l`GbiL@~ diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index 06e039527d..84c3895b11 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-11-28 11:14-0400\n" -"PO-Revision-Date: 2019-09-24 21:06+0000\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" @@ -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/dynamic_search/locale/es/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.mo index 71c63a4c40f9715192070b150230b0477afb6574..5192aff72f26e4414fdd355e553ea06cc5f4292d 100644 GIT binary patch delta 24 gcmaFO{hE8j2PSSqLtP^a1w&ISQ^U=_nLaQ90BsitTL1t6 delta 24 gcmaFO{hE8j2PSR Date: Thu, 28 Nov 2019 12:36:07 -0400 Subject: [PATCH 6/6] Update build string Signed-off-by: Roberto Rosario --- mayan/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/__init__.py b/mayan/__init__.py index 95f7aa2e79..a30f829f82 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' __version__ = '3.2.11' __build__ = 0x030211 -__build_string__ = 'v3.2.10-38-gd196f36951_Thu Nov 28 11:37:58 2019 -0400' +__build_string__ = 'v3.2.11_Thu Nov 28 12:35:09 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com'