From 8b02ea71341655f6b475f3d4157e62482acd4997 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 15 Nov 2016 01:22:48 -0400 Subject: [PATCH 1/8] Fix variable name typo in the rotation transformation class. --- mayan/apps/converter/classes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/converter/classes.py b/mayan/apps/converter/classes.py index 9580d42ad9..946154739f 100644 --- a/mayan/apps/converter/classes.py +++ b/mayan/apps/converter/classes.py @@ -299,7 +299,7 @@ class TransformationRotate(BaseTransformation): self.degrees %= 360 - if self.degress == 0: + if self.degrees == 0: return self.image return self.image.rotate( From 6aa0590b33e991db402b150f968d1041e8e00363 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 22 Nov 2016 22:20:08 -0400 Subject: [PATCH 2/8] Update badges. Update license badge to retrieve license from PyPI. Add Python version bagde. --- README.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 6413fd09d4..67acd269bb 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -|PyPI badge| |Build Status| |Coverage badge| |Documentation| |License badge| +|PyPI badge| |Build Status| |Coverage badge| |Documentation| |License badge| |Python version| |Logo| @@ -41,8 +41,6 @@ Point your browser to 127.0.0.1:8000 and use the automatically created admin account. - - .. _Website: http://www.mayan-edms.com .. _Video demostration: http://bit.ly/pADNXv .. _Documentation: http://readthedocs.org/docs/mayan/en/latest/ @@ -56,11 +54,12 @@ account. .. |Animation| image:: https://gitlab.com/mayan-edms/mayan-edms/raw/master/docs/_static/overview.gif .. |PyPI badge| image:: http://img.shields.io/pypi/v/mayan-edms.svg?style=flat :target: http://badge.fury.io/py/mayan-edms -.. |License badge| image:: http://img.shields.io/badge/license-Apache%202.0-green.svg?style=flat +.. |License badge| image:: https://img.shields.io/pypi/l/mayan-edms.svg?style=flat .. |Analytics| image:: https://ga-beacon.appspot.com/UA-52965619-2/mayan-edms/readme?pixel .. |Coverage badge| image:: https://codecov.io/gitlab/mayan-edms/mayan-edms/coverage.svg?branch=master :target: https://codecov.io/gitlab/mayan-edms/mayan-edms?branch=master .. |Documentation| image:: https://readthedocs.org/projects/mayan/badge/?version=latest :target: http://mayan.readthedocs.io/en/latest +.. |Python version| images:: https://img.shields.io/pypi/pyversions/mayan-edms.svg |Analytics| From ced3211318190c8729fb25b7630d5a320456c6b1 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 22 Nov 2016 22:21:24 -0400 Subject: [PATCH 3/8] Add upcomming version 2.1.6 release log and changelog. --- HISTORY.rst | 4 +++ docs/releases/2.1.6.rst | 72 +++++++++++++++++++++++++++++++++++++++++ docs/releases/index.rst | 1 + 3 files changed, 77 insertions(+) create mode 100644 docs/releases/2.1.6.rst diff --git a/HISTORY.rst b/HISTORY.rst index aece785e9c..85d4428afc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,7 @@ +2.1.6 (2016-11-22) +================= +- Fix variable name typo in the rotation transformation class. + 2.1.5 (2016-11-08) ================== - Backport resize transformation math operation fix (GitLab #319). diff --git a/docs/releases/2.1.6.rst b/docs/releases/2.1.6.rst new file mode 100644 index 0000000000..8284b3b3e1 --- /dev/null +++ b/docs/releases/2.1.6.rst @@ -0,0 +1,72 @@ +=============================== +Mayan EDMS v2.1.6 release notes +=============================== + +Released: November 22, 2016 + +What's new +========== + +This is a bug-fix release and all users are encouraged to upgrade. + +Changes +------------- + +- Fix variable name typo in the rotation transformation class. + +Removals +-------- +* None + +Upgrading from a previous version +--------------------------------- + +Using PIP +~~~~~~~~~ + +Type in the console:: + + $ pip install -U mayan-edms + +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. + +Next upgrade/add the new requirements:: + + $ pip install --upgrade -r requirements.txt + +Common steps +~~~~~~~~~~~~ + +Migrate existing database schema with:: + + $ mayan-edms.py performupgrade + +Add new static media:: + + $ mayan-edms.py collectstatic --noinput + +The upgrade procedure is now complete. + + +Backward incompatible changes +============================= + +* None + +Bugs fixed or issues closed +=========================== + +* None + +.. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/docs/releases/index.rst b/docs/releases/index.rst index 7e0b85a652..144af6e26f 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -22,6 +22,7 @@ versions of the documentation contain the release notes for any later releases. .. toctree:: :maxdepth: 1 + 2.1.6 2.1.5 2.1.4 2.1.3 From 108102219ca6aa8c397de94412203931cbc8de53 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 22 Nov 2016 22:22:13 -0400 Subject: [PATCH 4/8] Don't supply the entire license file to PyPI, only the name. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index b2396e91eb..e2ede2177b 100644 --- a/setup.py +++ b/setup.py @@ -95,8 +95,6 @@ with open('README.rst') as f: readme = f.read() with open('HISTORY.rst') as f: history = f.read() -with open('LICENSE') as f: - license = f.read() setup( author='Roberto Rosario', @@ -120,7 +118,7 @@ setup( description='Free Open Source Electronic Document Management System', include_package_data=True, install_requires=install_requires, - license=license, + license='Apache 2.0', long_description=readme + '\n\n' + history, name=PACKAGE_NAME, packages=find_packages(PACKAGE_DIR), From 375948c1dc72df891811077e1f70a1f3869c8c0b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 22 Nov 2016 22:25:15 -0400 Subject: [PATCH 5/8] Add step to enable the supervisor service. Ubuntu bug report: https://bugs.launchpad.net/ubuntu/+source/supervisor/+bug/1594740 Update nginx restart command to use systemctl too. --- docs/topics/deploying.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/topics/deploying.rst b/docs/topics/deploying.rst index 227998700e..e9dccbb704 100644 --- a/docs/topics/deploying.rst +++ b/docs/topics/deploying.rst @@ -196,8 +196,9 @@ Make the installation directory readable and writable by the webserver user:: Restart the services:: - /etc/init.d/nginx restart - /etc/init.d/supervisor restart + systemctl enable supervisor + systemctl restart supervisor + systemctl restart nginx Docker method ============= From 3e6301033849be74f501bbbbb7d5ce1beabbf715 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Nov 2016 03:09:56 -0400 Subject: [PATCH 6/8] Synchronize translations. --- .../apps/acls/locale/ar/LC_MESSAGES/django.mo | Bin 863 -> 863 bytes .../apps/acls/locale/ar/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/bg/LC_MESSAGES/django.mo | Bin 759 -> 1093 bytes .../apps/acls/locale/bg/LC_MESSAGES/django.po | 2 +- .../acls/locale/bs_BA/LC_MESSAGES/django.mo | Bin 891 -> 891 bytes .../acls/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/da/LC_MESSAGES/django.mo | Bin 515 -> 515 bytes .../apps/acls/locale/da/LC_MESSAGES/django.po | 2 +- .../acls/locale/de_DE/LC_MESSAGES/django.mo | Bin 1745 -> 1906 bytes .../acls/locale/de_DE/LC_MESSAGES/django.po | 9 +- .../apps/acls/locale/en/LC_MESSAGES/django.mo | Bin 703 -> 703 bytes .../apps/acls/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/es/LC_MESSAGES/django.mo | Bin 1606 -> 1756 bytes .../apps/acls/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/fa/LC_MESSAGES/django.mo | Bin 1125 -> 1125 bytes .../apps/acls/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/fr/LC_MESSAGES/django.mo | Bin 1710 -> 1676 bytes .../apps/acls/locale/fr/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/hu/LC_MESSAGES/django.mo | Bin 520 -> 520 bytes .../apps/acls/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../apps/acls/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/it/LC_MESSAGES/django.mo | Bin 1193 -> 1802 bytes .../apps/acls/locale/it/LC_MESSAGES/django.po | 8 +- .../acls/locale/nl_NL/LC_MESSAGES/django.mo | Bin 1740 -> 1898 bytes .../acls/locale/nl_NL/LC_MESSAGES/django.po | 9 +- .../apps/acls/locale/pl/LC_MESSAGES/django.mo | Bin 1700 -> 1667 bytes .../apps/acls/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/pt/LC_MESSAGES/django.mo | Bin 824 -> 824 bytes .../apps/acls/locale/pt/LC_MESSAGES/django.po | 2 +- .../acls/locale/pt_BR/LC_MESSAGES/django.mo | Bin 1062 -> 1828 bytes .../acls/locale/pt_BR/LC_MESSAGES/django.po | 23 +- .../acls/locale/ro_RO/LC_MESSAGES/django.mo | Bin 844 -> 883 bytes .../acls/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/ru/LC_MESSAGES/django.mo | Bin 1027 -> 1967 bytes .../apps/acls/locale/ru/LC_MESSAGES/django.po | 2 +- .../acls/locale/sl_SI/LC_MESSAGES/django.mo | Bin 560 -> 1049 bytes .../acls/locale/sl_SI/LC_MESSAGES/django.po | 22 +- .../acls/locale/vi_VN/LC_MESSAGES/django.mo | Bin 528 -> 528 bytes .../acls/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../acls/locale/zh_CN/LC_MESSAGES/django.mo | Bin 902 -> 902 bytes .../acls/locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 2487 -> 2487 bytes .../locale/ar/LC_MESSAGES/django.po | 24 +-- .../locale/bg/LC_MESSAGES/django.mo | Bin 2240 -> 2240 bytes .../locale/bg/LC_MESSAGES/django.po | 20 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2409 -> 2409 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 23 +- .../locale/da/LC_MESSAGES/django.mo | Bin 688 -> 688 bytes .../locale/da/LC_MESSAGES/django.po | 13 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4501 -> 4501 bytes .../locale/de_DE/LC_MESSAGES/django.po | 33 +-- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 3924 -> 4274 bytes .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 2975 -> 2975 bytes .../locale/fa/LC_MESSAGES/django.po | 17 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 4586 -> 4586 bytes .../locale/fr/LC_MESSAGES/django.po | 41 ++-- .../locale/hu/LC_MESSAGES/django.mo | Bin 754 -> 754 bytes .../locale/hu/LC_MESSAGES/django.po | 13 +- .../locale/id/LC_MESSAGES/django.mo | Bin 542 -> 542 bytes .../locale/id/LC_MESSAGES/django.po | 13 +- .../locale/it/LC_MESSAGES/django.mo | Bin 1600 -> 4341 bytes .../locale/it/LC_MESSAGES/django.po | 84 ++++---- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 4451 -> 4451 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 37 ++-- .../locale/pl/LC_MESSAGES/django.mo | Bin 4491 -> 4489 bytes .../locale/pl/LC_MESSAGES/django.po | 38 ++-- .../locale/pt/LC_MESSAGES/django.mo | Bin 2104 -> 2104 bytes .../locale/pt/LC_MESSAGES/django.po | 17 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 2755 -> 4467 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 83 ++++--- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2388 -> 3028 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 52 +++-- .../locale/ru/LC_MESSAGES/django.mo | Bin 2900 -> 5549 bytes .../locale/ru/LC_MESSAGES/django.po | 81 ++++--- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 560 -> 560 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1841 -> 1841 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 21 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2393 -> 2393 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 13 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 977 -> 977 bytes .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 808 -> 808 bytes .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 901 -> 901 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.mo | Bin 502 -> 502 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1421 -> 1421 bytes .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 1446 -> 1446 bytes .../locale/es/LC_MESSAGES/django.po | 17 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 1201 -> 1201 bytes .../locale/fa/LC_MESSAGES/django.po | 13 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1434 -> 1434 bytes .../locale/fr/LC_MESSAGES/django.po | 17 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 513 -> 513 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 879 -> 879 bytes .../locale/id/LC_MESSAGES/django.po | 12 +- .../locale/it/LC_MESSAGES/django.mo | Bin 1114 -> 1384 bytes .../locale/it/LC_MESSAGES/django.po | 24 +-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 1426 -> 1426 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 17 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 1392 -> 1386 bytes .../locale/pl/LC_MESSAGES/django.po | 25 +-- .../locale/pt/LC_MESSAGES/django.mo | Bin 919 -> 932 bytes .../locale/pt/LC_MESSAGES/django.po | 13 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1132 -> 1404 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 22 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 875 -> 875 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 998 -> 1768 bytes .../locale/ru/LC_MESSAGES/django.po | 28 ++- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 754 -> 754 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1010 -> 1010 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../checkouts/locale/ar/LC_MESSAGES/django.mo | Bin 2288 -> 2288 bytes .../checkouts/locale/ar/LC_MESSAGES/django.po | 28 ++- .../checkouts/locale/bg/LC_MESSAGES/django.mo | Bin 2699 -> 2699 bytes .../checkouts/locale/bg/LC_MESSAGES/django.po | 25 ++- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2261 -> 2261 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 28 ++- .../checkouts/locale/da/LC_MESSAGES/django.mo | Bin 490 -> 490 bytes .../checkouts/locale/da/LC_MESSAGES/django.po | 25 ++- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3350 -> 3688 bytes .../locale/de_DE/LC_MESSAGES/django.po | 45 ++-- .../checkouts/locale/en/LC_MESSAGES/django.mo | Bin 2125 -> 2125 bytes .../checkouts/locale/en/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/es/LC_MESSAGES/django.mo | Bin 3499 -> 3821 bytes .../checkouts/locale/es/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/fa/LC_MESSAGES/django.mo | Bin 3462 -> 3462 bytes .../checkouts/locale/fa/LC_MESSAGES/django.po | 25 ++- .../checkouts/locale/fr/LC_MESSAGES/django.mo | Bin 3659 -> 4028 bytes .../checkouts/locale/fr/LC_MESSAGES/django.po | 47 ++-- .../checkouts/locale/hu/LC_MESSAGES/django.mo | Bin 500 -> 500 bytes .../checkouts/locale/hu/LC_MESSAGES/django.po | 25 ++- .../checkouts/locale/id/LC_MESSAGES/django.mo | Bin 489 -> 489 bytes .../checkouts/locale/id/LC_MESSAGES/django.po | 25 ++- .../checkouts/locale/it/LC_MESSAGES/django.mo | Bin 3019 -> 3784 bytes .../checkouts/locale/it/LC_MESSAGES/django.po | 50 +++-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 1626 -> 1944 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 36 ++-- .../checkouts/locale/pl/LC_MESSAGES/django.mo | Bin 3494 -> 3494 bytes .../checkouts/locale/pl/LC_MESSAGES/django.po | 37 ++-- .../checkouts/locale/pt/LC_MESSAGES/django.mo | Bin 546 -> 546 bytes .../checkouts/locale/pt/LC_MESSAGES/django.po | 25 ++- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3070 -> 3798 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 114 +++++----- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2272 -> 2272 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 31 +-- .../checkouts/locale/ru/LC_MESSAGES/django.mo | Bin 2766 -> 4779 bytes .../checkouts/locale/ru/LC_MESSAGES/django.po | 84 ++++---- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 28 ++- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 512 -> 512 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 25 ++- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1986 -> 1986 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 25 ++- .../common/locale/ar/LC_MESSAGES/django.mo | Bin 1240 -> 1240 bytes .../common/locale/ar/LC_MESSAGES/django.po | 2 +- .../common/locale/bg/LC_MESSAGES/django.mo | Bin 1062 -> 1062 bytes .../common/locale/bg/LC_MESSAGES/django.po | 2 +- .../common/locale/bs_BA/LC_MESSAGES/django.mo | Bin 1209 -> 1209 bytes .../common/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../common/locale/da/LC_MESSAGES/django.mo | Bin 674 -> 674 bytes .../common/locale/da/LC_MESSAGES/django.po | 2 +- .../common/locale/de_DE/LC_MESSAGES/django.mo | Bin 3771 -> 4242 bytes .../common/locale/de_DE/LC_MESSAGES/django.po | 8 +- .../common/locale/en/LC_MESSAGES/django.mo | Bin 771 -> 771 bytes .../common/locale/en/LC_MESSAGES/django.po | 2 +- .../common/locale/es/LC_MESSAGES/django.mo | Bin 3518 -> 4347 bytes .../common/locale/es/LC_MESSAGES/django.po | 2 +- .../common/locale/fa/LC_MESSAGES/django.mo | Bin 2702 -> 2702 bytes .../common/locale/fa/LC_MESSAGES/django.po | 2 +- .../common/locale/fr/LC_MESSAGES/django.mo | Bin 4022 -> 4247 bytes .../common/locale/fr/LC_MESSAGES/django.po | 2 +- .../common/locale/hu/LC_MESSAGES/django.mo | Bin 622 -> 622 bytes .../common/locale/hu/LC_MESSAGES/django.po | 2 +- .../common/locale/id/LC_MESSAGES/django.mo | Bin 1394 -> 1394 bytes .../common/locale/id/LC_MESSAGES/django.po | 2 +- .../common/locale/it/LC_MESSAGES/django.mo | Bin 2294 -> 4188 bytes .../common/locale/it/LC_MESSAGES/django.po | 8 +- .../common/locale/nl_NL/LC_MESSAGES/django.mo | Bin 1050 -> 2179 bytes .../common/locale/nl_NL/LC_MESSAGES/django.po | 47 ++-- .../common/locale/pl/LC_MESSAGES/django.mo | Bin 3748 -> 3399 bytes .../common/locale/pl/LC_MESSAGES/django.po | 2 +- .../common/locale/pt/LC_MESSAGES/django.mo | Bin 1152 -> 1152 bytes .../common/locale/pt/LC_MESSAGES/django.po | 2 +- .../common/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2497 -> 4327 bytes .../common/locale/pt_BR/LC_MESSAGES/django.po | 65 +++--- .../common/locale/ro_RO/LC_MESSAGES/django.mo | Bin 1174 -> 1266 bytes .../common/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../common/locale/ru/LC_MESSAGES/django.mo | Bin 1940 -> 5199 bytes .../common/locale/ru/LC_MESSAGES/django.po | 2 +- .../common/locale/sl_SI/LC_MESSAGES/django.mo | Bin 598 -> 598 bytes .../common/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../common/locale/vi_VN/LC_MESSAGES/django.mo | Bin 1037 -> 1037 bytes .../common/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../common/locale/zh_CN/LC_MESSAGES/django.mo | Bin 1069 -> 1069 bytes .../common/locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../converter/locale/ar/LC_MESSAGES/django.mo | Bin 835 -> 835 bytes .../converter/locale/ar/LC_MESSAGES/django.po | 40 ++-- .../converter/locale/bg/LC_MESSAGES/django.mo | Bin 701 -> 701 bytes .../converter/locale/bg/LC_MESSAGES/django.po | 37 ++-- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 828 -> 828 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 40 ++-- .../converter/locale/da/LC_MESSAGES/django.mo | Bin 488 -> 488 bytes .../converter/locale/da/LC_MESSAGES/django.po | 37 ++-- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 2949 -> 2949 bytes .../locale/de_DE/LC_MESSAGES/django.po | 52 ++--- .../converter/locale/en/LC_MESSAGES/django.mo | Bin 641 -> 641 bytes .../converter/locale/en/LC_MESSAGES/django.po | 6 +- .../converter/locale/es/LC_MESSAGES/django.mo | Bin 2925 -> 2925 bytes .../converter/locale/es/LC_MESSAGES/django.po | 48 ++--- .../converter/locale/fa/LC_MESSAGES/django.mo | Bin 1250 -> 1250 bytes .../converter/locale/fa/LC_MESSAGES/django.po | 37 ++-- .../converter/locale/fr/LC_MESSAGES/django.mo | Bin 3092 -> 3092 bytes .../converter/locale/fr/LC_MESSAGES/django.po | 55 ++--- .../converter/locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../converter/locale/hu/LC_MESSAGES/django.po | 37 ++-- .../converter/locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../converter/locale/id/LC_MESSAGES/django.po | 37 ++-- .../converter/locale/it/LC_MESSAGES/django.mo | Bin 1117 -> 2937 bytes .../converter/locale/it/LC_MESSAGES/django.po | 76 +++---- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 791 -> 1496 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 64 +++--- .../converter/locale/pl/LC_MESSAGES/django.mo | Bin 3021 -> 3019 bytes .../converter/locale/pl/LC_MESSAGES/django.po | 52 ++--- .../converter/locale/pt/LC_MESSAGES/django.mo | Bin 753 -> 753 bytes .../converter/locale/pt/LC_MESSAGES/django.po | 37 ++-- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1237 -> 2986 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 92 ++++---- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 780 -> 811 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 44 ++-- .../converter/locale/ru/LC_MESSAGES/django.mo | Bin 974 -> 3784 bytes .../converter/locale/ru/LC_MESSAGES/django.po | 92 ++++---- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 559 -> 559 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 40 ++-- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 529 -> 529 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 37 ++-- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 686 -> 686 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 37 ++-- .../locale/ar/LC_MESSAGES/django.mo | Bin 2167 -> 2167 bytes .../locale/ar/LC_MESSAGES/django.po | 30 +-- .../locale/bg/LC_MESSAGES/django.mo | Bin 2670 -> 2670 bytes .../locale/bg/LC_MESSAGES/django.po | 27 ++- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2230 -> 2230 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 34 +-- .../locale/da/LC_MESSAGES/django.mo | Bin 552 -> 552 bytes .../locale/da/LC_MESSAGES/django.po | 27 ++- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3200 -> 4268 bytes .../locale/de_DE/LC_MESSAGES/django.po | 74 ++++--- .../locale/en/LC_MESSAGES/django.mo | Bin 1919 -> 1919 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 4125 -> 4125 bytes .../locale/es/LC_MESSAGES/django.po | 39 ++-- .../locale/fa/LC_MESSAGES/django.mo | Bin 3015 -> 3015 bytes .../locale/fa/LC_MESSAGES/django.po | 27 ++- .../locale/fr/LC_MESSAGES/django.mo | Bin 3165 -> 4171 bytes .../locale/fr/LC_MESSAGES/django.po | 74 ++++--- .../locale/hu/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../locale/hu/LC_MESSAGES/django.po | 27 ++- .../locale/id/LC_MESSAGES/django.mo | Bin 521 -> 521 bytes .../locale/id/LC_MESSAGES/django.po | 27 ++- .../locale/it/LC_MESSAGES/django.mo | Bin 2661 -> 4102 bytes .../locale/it/LC_MESSAGES/django.po | 90 ++++---- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 659 -> 2352 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 98 +++++---- .../locale/pl/LC_MESSAGES/django.mo | Bin 2635 -> 2635 bytes .../locale/pl/LC_MESSAGES/django.po | 37 ++-- .../locale/pt/LC_MESSAGES/django.mo | Bin 2312 -> 2312 bytes .../locale/pt/LC_MESSAGES/django.po | 31 +-- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1885 -> 4121 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 114 +++++----- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2324 -> 2324 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 38 ++-- .../locale/ru/LC_MESSAGES/django.mo | Bin 3235 -> 4886 bytes .../locale/ru/LC_MESSAGES/django.po | 84 ++++---- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 628 -> 628 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 30 +-- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 2096 -> 2096 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 27 ++- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2038 -> 2038 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 27 ++- .../locale/ar/LC_MESSAGES/django.mo | Bin 995 -> 995 bytes .../locale/ar/LC_MESSAGES/django.po | 16 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 998 -> 998 bytes .../locale/bg/LC_MESSAGES/django.po | 13 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 958 -> 958 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 16 +- .../locale/da/LC_MESSAGES/django.mo | Bin 850 -> 850 bytes .../locale/da/LC_MESSAGES/django.po | 13 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1434 -> 1434 bytes .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../locale/en/LC_MESSAGES/django.mo | Bin 743 -> 743 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 1438 -> 1438 bytes .../locale/es/LC_MESSAGES/django.po | 13 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 1181 -> 1181 bytes .../locale/fa/LC_MESSAGES/django.po | 13 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1528 -> 1528 bytes .../locale/fr/LC_MESSAGES/django.po | 13 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 855 -> 855 bytes .../locale/hu/LC_MESSAGES/django.po | 13 +- .../locale/id/LC_MESSAGES/django.mo | Bin 840 -> 840 bytes .../locale/id/LC_MESSAGES/django.po | 13 +- .../locale/it/LC_MESSAGES/django.mo | Bin 1051 -> 1439 bytes .../locale/it/LC_MESSAGES/django.po | 28 +-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 930 -> 1260 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 28 +-- .../locale/pl/LC_MESSAGES/django.mo | Bin 1527 -> 1525 bytes .../locale/pl/LC_MESSAGES/django.po | 20 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 906 -> 906 bytes .../locale/pt/LC_MESSAGES/django.po | 13 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1157 -> 1489 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 28 +-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 922 -> 953 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 20 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 1141 -> 1872 bytes .../locale/ru/LC_MESSAGES/django.po | 40 ++-- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 860 -> 860 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 881 -> 881 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 13 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 829 -> 829 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 13 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 2042 -> 2042 bytes .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 1487 -> 1487 bytes .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2100 -> 2100 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/da/LC_MESSAGES/django.mo | Bin 727 -> 727 bytes .../locale/da/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4913 -> 5187 bytes .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.mo | Bin 1731 -> 1731 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 3949 -> 5238 bytes .../locale/es/LC_MESSAGES/django.po | 12 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 4050 -> 4102 bytes .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 5155 -> 5428 bytes .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 727 -> 727 bytes .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.mo | Bin 714 -> 714 bytes .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.mo | Bin 3718 -> 5358 bytes .../locale/it/LC_MESSAGES/django.po | 6 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2001 -> 2783 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 39 ++-- .../locale/pl/LC_MESSAGES/django.mo | Bin 2785 -> 3045 bytes .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 2152 -> 2152 bytes .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3643 -> 5378 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 83 +++---- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2142 -> 2236 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 2662 -> 4086 bytes .../locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 806 -> 851 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 6 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 670 -> 670 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1791 -> 1791 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 1061 -> 1061 bytes .../locale/ar/LC_MESSAGES/django.po | 24 ++- .../locale/bg/LC_MESSAGES/django.mo | Bin 1319 -> 1319 bytes .../locale/bg/LC_MESSAGES/django.po | 25 ++- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1081 -> 1081 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 24 ++- .../locale/da/LC_MESSAGES/django.mo | Bin 749 -> 749 bytes .../locale/da/LC_MESSAGES/django.po | 21 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1591 -> 5013 bytes .../locale/de_DE/LC_MESSAGES/django.po | 112 +++++----- .../locale/en/LC_MESSAGES/django.mo | Bin 637 -> 637 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 4333 -> 4720 bytes .../locale/es/LC_MESSAGES/django.po | 35 +-- .../locale/fa/LC_MESSAGES/django.mo | Bin 1628 -> 1628 bytes .../locale/fa/LC_MESSAGES/django.po | 21 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1595 -> 5026 bytes .../locale/fr/LC_MESSAGES/django.po | 113 +++++----- .../locale/hu/LC_MESSAGES/django.mo | Bin 713 -> 713 bytes .../locale/hu/LC_MESSAGES/django.po | 21 +- .../locale/id/LC_MESSAGES/django.mo | Bin 696 -> 696 bytes .../locale/id/LC_MESSAGES/django.po | 25 ++- .../locale/it/LC_MESSAGES/django.mo | Bin 1537 -> 4713 bytes .../locale/it/LC_MESSAGES/django.po | 114 +++++----- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 766 -> 1831 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 68 +++--- .../locale/pl/LC_MESSAGES/django.mo | Bin 1134 -> 1134 bytes .../locale/pl/LC_MESSAGES/django.po | 24 ++- .../locale/pt/LC_MESSAGES/django.mo | Bin 1087 -> 1087 bytes .../locale/pt/LC_MESSAGES/django.po | 21 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1597 -> 4934 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 111 +++++----- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1179 -> 1179 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 27 ++- .../locale/ru/LC_MESSAGES/django.mo | Bin 1493 -> 5994 bytes .../locale/ru/LC_MESSAGES/django.po | 128 +++++------ .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 792 -> 792 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 24 ++- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 804 -> 804 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 21 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1016 -> 1016 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 21 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 737 -> 737 bytes .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 686 -> 686 bytes .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 746 -> 746 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.mo | Bin 551 -> 551 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4181 -> 4181 bytes .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 4557 -> 4557 bytes .../locale/es/LC_MESSAGES/django.po | 17 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 3882 -> 3882 bytes .../locale/fa/LC_MESSAGES/django.po | 13 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 4591 -> 4591 bytes .../locale/fr/LC_MESSAGES/django.po | 17 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 563 -> 563 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 522 -> 522 bytes .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.mo | Bin 855 -> 4230 bytes .../locale/it/LC_MESSAGES/django.po | 112 +++++----- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 726 -> 2594 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 82 +++---- .../locale/pl/LC_MESSAGES/django.mo | Bin 2483 -> 2483 bytes .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 705 -> 705 bytes .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3483 -> 4398 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 36 ++-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 708 -> 771 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 18 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 847 -> 1496 bytes .../locale/ru/LC_MESSAGES/django.po | 42 ++-- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 593 -> 622 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 16 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 609 -> 609 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 592 -> 592 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../documents/locale/ar/LC_MESSAGES/django.mo | Bin 5721 -> 5721 bytes .../documents/locale/ar/LC_MESSAGES/django.po | 2 +- .../documents/locale/bg/LC_MESSAGES/django.mo | Bin 6745 -> 6745 bytes .../documents/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 5160 -> 5160 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../documents/locale/da/LC_MESSAGES/django.mo | Bin 4944 -> 4944 bytes .../documents/locale/da/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 15926 -> 16121 bytes .../locale/de_DE/LC_MESSAGES/django.po | 8 +- .../documents/locale/en/LC_MESSAGES/django.mo | Bin 4825 -> 4825 bytes .../documents/locale/en/LC_MESSAGES/django.po | 2 +- .../documents/locale/es/LC_MESSAGES/django.mo | Bin 13280 -> 14666 bytes .../documents/locale/es/LC_MESSAGES/django.po | 20 +- .../documents/locale/fa/LC_MESSAGES/django.mo | Bin 9226 -> 9226 bytes .../documents/locale/fa/LC_MESSAGES/django.po | 2 +- .../documents/locale/fr/LC_MESSAGES/django.mo | Bin 16692 -> 16909 bytes .../documents/locale/fr/LC_MESSAGES/django.po | 2 +- .../documents/locale/hu/LC_MESSAGES/django.mo | Bin 5183 -> 5183 bytes .../documents/locale/hu/LC_MESSAGES/django.po | 2 +- .../documents/locale/id/LC_MESSAGES/django.mo | Bin 4843 -> 4843 bytes .../documents/locale/id/LC_MESSAGES/django.po | 2 +- .../documents/locale/it/LC_MESSAGES/django.mo | Bin 8682 -> 16100 bytes .../documents/locale/it/LC_MESSAGES/django.po | 8 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 5366 -> 8077 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 95 ++++---- .../documents/locale/pl/LC_MESSAGES/django.mo | Bin 7710 -> 7710 bytes .../documents/locale/pl/LC_MESSAGES/django.po | 2 +- .../documents/locale/pt/LC_MESSAGES/django.mo | Bin 5041 -> 5041 bytes .../documents/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 8574 -> 16283 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 163 +++++++------- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 5672 -> 5672 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../documents/locale/ru/LC_MESSAGES/django.mo | Bin 6695 -> 20807 bytes .../documents/locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 4983 -> 5012 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 6 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 2980 -> 2980 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 4579 -> 4579 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 1034 -> 1034 bytes .../locale/ar/LC_MESSAGES/django.po | 15 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 1026 -> 1026 bytes .../locale/bg/LC_MESSAGES/django.po | 12 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1019 -> 1019 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 15 +- .../locale/da/LC_MESSAGES/django.mo | Bin 490 -> 490 bytes .../locale/da/LC_MESSAGES/django.po | 12 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1353 -> 1353 bytes .../locale/de_DE/LC_MESSAGES/django.po | 15 +- .../locale/en/LC_MESSAGES/django.mo | Bin 847 -> 847 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 1374 -> 1374 bytes .../locale/es/LC_MESSAGES/django.po | 12 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 1385 -> 1385 bytes .../locale/fa/LC_MESSAGES/django.po | 12 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1409 -> 1409 bytes .../locale/fr/LC_MESSAGES/django.po | 12 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 937 -> 937 bytes .../locale/hu/LC_MESSAGES/django.po | 12 +- .../locale/id/LC_MESSAGES/django.mo | Bin 489 -> 489 bytes .../locale/id/LC_MESSAGES/django.po | 12 +- .../locale/it/LC_MESSAGES/django.mo | Bin 929 -> 1365 bytes .../locale/it/LC_MESSAGES/django.po | 33 ++- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 891 -> 1284 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 31 ++- .../locale/pl/LC_MESSAGES/django.mo | Bin 1448 -> 1446 bytes .../locale/pl/LC_MESSAGES/django.po | 19 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 948 -> 948 bytes .../locale/pt/LC_MESSAGES/django.po | 12 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1320 -> 1393 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 19 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 958 -> 983 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 19 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 1252 -> 1280 bytes .../locale/ru/LC_MESSAGES/django.po | 24 +-- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 15 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 747 -> 747 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 12 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 854 -> 854 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 12 +- .../events/locale/ar/LC_MESSAGES/django.mo | Bin 621 -> 621 bytes .../events/locale/ar/LC_MESSAGES/django.po | 12 +- .../events/locale/bg/LC_MESSAGES/django.mo | Bin 561 -> 561 bytes .../events/locale/bg/LC_MESSAGES/django.po | 9 +- .../events/locale/bs_BA/LC_MESSAGES/django.mo | Bin 644 -> 644 bytes .../events/locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../events/locale/da/LC_MESSAGES/django.mo | Bin 540 -> 540 bytes .../events/locale/da/LC_MESSAGES/django.po | 9 +- .../events/locale/de_DE/LC_MESSAGES/django.mo | Bin 1096 -> 1096 bytes .../events/locale/de_DE/LC_MESSAGES/django.po | 9 +- .../events/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../events/locale/en/LC_MESSAGES/django.po | 2 +- .../events/locale/es/LC_MESSAGES/django.mo | Bin 1066 -> 1066 bytes .../events/locale/es/LC_MESSAGES/django.po | 9 +- .../events/locale/fa/LC_MESSAGES/django.mo | Bin 1112 -> 1112 bytes .../events/locale/fa/LC_MESSAGES/django.po | 9 +- .../events/locale/fr/LC_MESSAGES/django.mo | Bin 1117 -> 1117 bytes .../events/locale/fr/LC_MESSAGES/django.po | 9 +- .../events/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../events/locale/hu/LC_MESSAGES/django.po | 9 +- .../events/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../events/locale/id/LC_MESSAGES/django.po | 9 +- .../events/locale/it/LC_MESSAGES/django.mo | Bin 613 -> 1081 bytes .../events/locale/it/LC_MESSAGES/django.po | 30 +-- .../events/locale/nl_NL/LC_MESSAGES/django.mo | Bin 517 -> 1124 bytes .../events/locale/nl_NL/LC_MESSAGES/django.po | 36 ++-- .../events/locale/pl/LC_MESSAGES/django.mo | Bin 1118 -> 1118 bytes .../events/locale/pl/LC_MESSAGES/django.po | 12 +- .../events/locale/pt/LC_MESSAGES/django.mo | Bin 1031 -> 1031 bytes .../events/locale/pt/LC_MESSAGES/django.po | 9 +- .../events/locale/pt_BR/LC_MESSAGES/django.mo | Bin 1072 -> 1072 bytes .../events/locale/pt_BR/LC_MESSAGES/django.po | 9 +- .../events/locale/ro_RO/LC_MESSAGES/django.mo | Bin 598 -> 598 bytes .../events/locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../events/locale/ru/LC_MESSAGES/django.mo | Bin 688 -> 1334 bytes .../events/locale/ru/LC_MESSAGES/django.po | 40 ++-- .../events/locale/sl_SI/LC_MESSAGES/django.mo | Bin 569 -> 569 bytes .../events/locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../events/locale/vi_VN/LC_MESSAGES/django.mo | Bin 558 -> 558 bytes .../events/locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../events/locale/zh_CN/LC_MESSAGES/django.mo | Bin 548 -> 548 bytes .../events/locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../folders/locale/ar/LC_MESSAGES/django.mo | Bin 1598 -> 1598 bytes .../folders/locale/ar/LC_MESSAGES/django.po | 39 ++-- .../folders/locale/bg/LC_MESSAGES/django.mo | Bin 1617 -> 1617 bytes .../folders/locale/bg/LC_MESSAGES/django.po | 36 ++-- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1472 -> 1472 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 39 ++-- .../folders/locale/da/LC_MESSAGES/django.mo | Bin 1326 -> 1326 bytes .../folders/locale/da/LC_MESSAGES/django.po | 36 ++-- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 2994 -> 2994 bytes .../locale/de_DE/LC_MESSAGES/django.po | 36 ++-- .../folders/locale/en/LC_MESSAGES/django.mo | Bin 1297 -> 1297 bytes .../folders/locale/en/LC_MESSAGES/django.po | 2 +- .../folders/locale/es/LC_MESSAGES/django.mo | Bin 3023 -> 3023 bytes .../folders/locale/es/LC_MESSAGES/django.po | 36 ++-- .../folders/locale/fa/LC_MESSAGES/django.mo | Bin 2305 -> 2305 bytes .../folders/locale/fa/LC_MESSAGES/django.po | 36 ++-- .../folders/locale/fr/LC_MESSAGES/django.mo | Bin 3146 -> 3146 bytes .../folders/locale/fr/LC_MESSAGES/django.po | 47 ++-- .../folders/locale/hu/LC_MESSAGES/django.mo | Bin 1400 -> 1400 bytes .../folders/locale/hu/LC_MESSAGES/django.po | 36 ++-- .../folders/locale/id/LC_MESSAGES/django.mo | Bin 706 -> 706 bytes .../folders/locale/id/LC_MESSAGES/django.po | 36 ++-- .../folders/locale/it/LC_MESSAGES/django.mo | Bin 1486 -> 3058 bytes .../folders/locale/it/LC_MESSAGES/django.po | 90 ++++---- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 858 -> 2610 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 93 ++++---- .../folders/locale/pl/LC_MESSAGES/django.mo | Bin 2955 -> 2955 bytes .../folders/locale/pl/LC_MESSAGES/django.po | 41 ++-- .../folders/locale/pt/LC_MESSAGES/django.mo | Bin 1466 -> 1466 bytes .../folders/locale/pt/LC_MESSAGES/django.po | 36 ++-- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1998 -> 2985 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 73 ++++--- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1473 -> 1544 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 48 ++--- .../folders/locale/ru/LC_MESSAGES/django.mo | Bin 1725 -> 1863 bytes .../folders/locale/ru/LC_MESSAGES/django.po | 48 ++--- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 770 -> 807 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 43 ++-- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1480 -> 1480 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 36 ++-- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1326 -> 1326 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 36 ++-- .../locale/ar/LC_MESSAGES/django.mo | Bin 759 -> 759 bytes .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 750 -> 750 bytes .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 764 -> 764 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.mo | Bin 624 -> 624 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1135 -> 1135 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.mo | Bin 599 -> 599 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 1121 -> 1121 bytes .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 1101 -> 1101 bytes .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1128 -> 1128 bytes .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 500 -> 500 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 490 -> 490 bytes .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.mo | Bin 596 -> 1134 bytes .../locale/it/LC_MESSAGES/django.po | 30 +-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 514 -> 935 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 30 +-- .../locale/pl/LC_MESSAGES/django.mo | Bin 1202 -> 1200 bytes .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 865 -> 865 bytes .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1124 -> 1124 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 11 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 719 -> 984 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 27 ++- .../locale/ru/LC_MESSAGES/django.mo | Bin 840 -> 1388 bytes .../locale/ru/LC_MESSAGES/django.po | 32 ++- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 570 -> 599 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 544 -> 544 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 757 -> 757 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../linking/locale/ar/LC_MESSAGES/django.mo | Bin 2695 -> 2695 bytes .../linking/locale/ar/LC_MESSAGES/django.po | 41 ++-- .../linking/locale/bg/LC_MESSAGES/django.mo | Bin 1692 -> 1692 bytes .../linking/locale/bg/LC_MESSAGES/django.po | 38 ++-- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2630 -> 2630 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 41 ++-- .../linking/locale/da/LC_MESSAGES/django.mo | Bin 499 -> 499 bytes .../linking/locale/da/LC_MESSAGES/django.po | 38 ++-- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4921 -> 4921 bytes .../locale/de_DE/LC_MESSAGES/django.po | 46 ++-- .../linking/locale/en/LC_MESSAGES/django.mo | Bin 2371 -> 2371 bytes .../linking/locale/en/LC_MESSAGES/django.po | 2 +- .../linking/locale/es/LC_MESSAGES/django.mo | Bin 5055 -> 5055 bytes .../linking/locale/es/LC_MESSAGES/django.po | 51 ++--- .../linking/locale/fa/LC_MESSAGES/django.mo | Bin 4174 -> 4174 bytes .../linking/locale/fa/LC_MESSAGES/django.po | 38 ++-- .../linking/locale/fr/LC_MESSAGES/django.mo | Bin 5080 -> 5080 bytes .../linking/locale/fr/LC_MESSAGES/django.po | 50 ++--- .../linking/locale/hu/LC_MESSAGES/django.mo | Bin 504 -> 504 bytes .../linking/locale/hu/LC_MESSAGES/django.po | 38 ++-- .../linking/locale/id/LC_MESSAGES/django.mo | Bin 493 -> 493 bytes .../linking/locale/id/LC_MESSAGES/django.po | 38 ++-- .../linking/locale/it/LC_MESSAGES/django.mo | Bin 2755 -> 5008 bytes .../linking/locale/it/LC_MESSAGES/django.po | 91 ++++---- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2727 -> 3137 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 59 ++--- .../linking/locale/pl/LC_MESSAGES/django.mo | Bin 4878 -> 4878 bytes .../linking/locale/pl/LC_MESSAGES/django.po | 48 ++--- .../linking/locale/pt/LC_MESSAGES/django.mo | Bin 2762 -> 2762 bytes .../linking/locale/pt/LC_MESSAGES/django.po | 38 ++-- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3925 -> 5042 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 64 +++--- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2745 -> 2808 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 47 ++-- .../linking/locale/ru/LC_MESSAGES/django.mo | Bin 3207 -> 3457 bytes .../linking/locale/ru/LC_MESSAGES/django.po | 52 +++-- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 570 -> 599 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 45 ++-- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1916 -> 1916 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 38 ++-- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2299 -> 2299 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 38 ++-- .../locale/ar/LC_MESSAGES/django.mo | Bin 583 -> 583 bytes .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 503 -> 503 bytes .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.mo | Bin 498 -> 498 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 732 -> 732 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 729 -> 729 bytes .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 767 -> 767 bytes .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.mo | Bin 500 -> 732 bytes .../locale/it/LC_MESSAGES/django.po | 24 +-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 517 -> 591 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 16 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../locale/pl/LC_MESSAGES/django.po | 12 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 502 -> 502 bytes .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 548 -> 776 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 24 +-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 639 -> 678 bytes .../locale/ru/LC_MESSAGES/django.po | 15 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 569 -> 569 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 512 -> 512 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 508 -> 508 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../mailer/locale/ar/LC_MESSAGES/django.mo | Bin 673 -> 673 bytes .../mailer/locale/ar/LC_MESSAGES/django.po | 12 +- .../mailer/locale/bg/LC_MESSAGES/django.mo | Bin 1492 -> 1492 bytes .../mailer/locale/bg/LC_MESSAGES/django.po | 9 +- .../mailer/locale/bs_BA/LC_MESSAGES/django.mo | Bin 662 -> 662 bytes .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../mailer/locale/da/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../mailer/locale/da/LC_MESSAGES/django.po | 9 +- .../mailer/locale/de_DE/LC_MESSAGES/django.mo | Bin 3231 -> 3231 bytes .../mailer/locale/de_DE/LC_MESSAGES/django.po | 35 +-- .../mailer/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../mailer/locale/en/LC_MESSAGES/django.po | 2 +- .../mailer/locale/es/LC_MESSAGES/django.mo | Bin 3414 -> 3414 bytes .../mailer/locale/es/LC_MESSAGES/django.po | 45 +--- .../mailer/locale/fa/LC_MESSAGES/django.mo | Bin 2490 -> 2490 bytes .../mailer/locale/fa/LC_MESSAGES/django.po | 9 +- .../mailer/locale/fr/LC_MESSAGES/django.mo | Bin 3296 -> 3296 bytes .../mailer/locale/fr/LC_MESSAGES/django.po | 21 +- .../mailer/locale/hu/LC_MESSAGES/django.mo | Bin 565 -> 565 bytes .../mailer/locale/hu/LC_MESSAGES/django.po | 9 +- .../mailer/locale/id/LC_MESSAGES/django.mo | Bin 603 -> 603 bytes .../mailer/locale/id/LC_MESSAGES/django.po | 9 +- .../mailer/locale/it/LC_MESSAGES/django.mo | Bin 635 -> 3197 bytes .../mailer/locale/it/LC_MESSAGES/django.po | 70 +++--- .../mailer/locale/nl_NL/LC_MESSAGES/django.mo | Bin 625 -> 1828 bytes .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 54 ++--- .../mailer/locale/pl/LC_MESSAGES/django.mo | Bin 2313 -> 2311 bytes .../mailer/locale/pl/LC_MESSAGES/django.po | 16 +- .../mailer/locale/pt/LC_MESSAGES/django.mo | Bin 1400 -> 1400 bytes .../mailer/locale/pt/LC_MESSAGES/django.po | 13 +- .../mailer/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2308 -> 3295 bytes .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 55 +++-- .../mailer/locale/ro_RO/LC_MESSAGES/django.mo | Bin 624 -> 663 bytes .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 14 +- .../mailer/locale/ru/LC_MESSAGES/django.mo | Bin 793 -> 2165 bytes .../mailer/locale/ru/LC_MESSAGES/django.po | 50 +++-- .../mailer/locale/sl_SI/LC_MESSAGES/django.mo | Bin 632 -> 632 bytes .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../mailer/locale/vi_VN/LC_MESSAGES/django.mo | Bin 585 -> 585 bytes .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../mailer/locale/zh_CN/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../mailer/locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../metadata/locale/ar/LC_MESSAGES/django.mo | Bin 2824 -> 2824 bytes .../metadata/locale/ar/LC_MESSAGES/django.po | 2 +- .../metadata/locale/bg/LC_MESSAGES/django.mo | Bin 1049 -> 1049 bytes .../metadata/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2322 -> 2322 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../metadata/locale/da/LC_MESSAGES/django.mo | Bin 1091 -> 1091 bytes .../metadata/locale/da/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 8507 -> 8602 bytes .../locale/de_DE/LC_MESSAGES/django.po | 12 +- .../metadata/locale/en/LC_MESSAGES/django.mo | Bin 2011 -> 2011 bytes .../metadata/locale/en/LC_MESSAGES/django.po | 2 +- .../metadata/locale/es/LC_MESSAGES/django.mo | Bin 6785 -> 8785 bytes .../metadata/locale/es/LC_MESSAGES/django.po | 30 +-- .../metadata/locale/fa/LC_MESSAGES/django.mo | Bin 6643 -> 6643 bytes .../metadata/locale/fa/LC_MESSAGES/django.po | 2 +- .../metadata/locale/fr/LC_MESSAGES/django.mo | Bin 9170 -> 8993 bytes .../metadata/locale/fr/LC_MESSAGES/django.po | 2 +- .../metadata/locale/hu/LC_MESSAGES/django.mo | Bin 705 -> 705 bytes .../metadata/locale/hu/LC_MESSAGES/django.po | 2 +- .../metadata/locale/id/LC_MESSAGES/django.mo | Bin 745 -> 745 bytes .../metadata/locale/id/LC_MESSAGES/django.po | 2 +- .../metadata/locale/it/LC_MESSAGES/django.mo | Bin 2435 -> 8599 bytes .../metadata/locale/it/LC_MESSAGES/django.po | 10 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 952 -> 2040 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 47 ++-- .../metadata/locale/pl/LC_MESSAGES/django.mo | Bin 5693 -> 5606 bytes .../metadata/locale/pl/LC_MESSAGES/django.po | 2 +- .../metadata/locale/pt/LC_MESSAGES/django.mo | Bin 2391 -> 2391 bytes .../metadata/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 5426 -> 8813 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 61 +++--- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2393 -> 2497 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../metadata/locale/ru/LC_MESSAGES/django.mo | Bin 2949 -> 7817 bytes .../metadata/locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 815 -> 844 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 6 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1847 -> 1847 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2114 -> 2114 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes .../mirroring/locale/ar/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../mirroring/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 464 bytes .../mirroring/locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 861 -> 861 bytes .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../mirroring/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../mirroring/locale/en/LC_MESSAGES/django.po | 2 +- .../mirroring/locale/es/LC_MESSAGES/django.mo | Bin 872 -> 872 bytes .../mirroring/locale/es/LC_MESSAGES/django.po | 17 +- .../mirroring/locale/fa/LC_MESSAGES/django.mo | Bin 458 -> 458 bytes .../mirroring/locale/fa/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/fr/LC_MESSAGES/django.mo | Bin 837 -> 837 bytes .../mirroring/locale/fr/LC_MESSAGES/django.po | 15 +- .../mirroring/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../mirroring/locale/hu/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../mirroring/locale/id/LC_MESSAGES/django.po | 9 +- .../mirroring/locale/it/LC_MESSAGES/django.mo | Bin 528 -> 831 bytes .../mirroring/locale/it/LC_MESSAGES/django.po | 18 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 546 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 16 +- .../mirroring/locale/pl/LC_MESSAGES/django.mo | Bin 522 -> 522 bytes .../mirroring/locale/pl/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/pt/LC_MESSAGES/django.mo | Bin 468 -> 468 bytes .../mirroring/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 482 -> 895 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 20 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 523 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../mirroring/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 993 bytes .../mirroring/locale/ru/LC_MESSAGES/django.po | 24 +-- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 478 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 472 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/ar/LC_MESSAGES/django.mo | Bin 620 -> 620 bytes .../apps/motd/locale/ar/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/bg/LC_MESSAGES/django.mo | Bin 549 -> 549 bytes .../apps/motd/locale/bg/LC_MESSAGES/django.po | 9 +- .../motd/locale/bs_BA/LC_MESSAGES/django.mo | Bin 636 -> 636 bytes .../motd/locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/da/LC_MESSAGES/django.mo | Bin 499 -> 499 bytes .../apps/motd/locale/da/LC_MESSAGES/django.po | 9 +- .../motd/locale/de_DE/LC_MESSAGES/django.mo | Bin 704 -> 1867 bytes .../motd/locale/de_DE/LC_MESSAGES/django.po | 47 ++-- .../apps/motd/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../apps/motd/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/es/LC_MESSAGES/django.mo | Bin 1806 -> 1806 bytes .../apps/motd/locale/es/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/fa/LC_MESSAGES/django.mo | Bin 664 -> 664 bytes .../apps/motd/locale/fa/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/fr/LC_MESSAGES/django.mo | Bin 680 -> 1777 bytes .../apps/motd/locale/fr/LC_MESSAGES/django.po | 45 ++-- .../apps/motd/locale/hu/LC_MESSAGES/django.mo | Bin 502 -> 502 bytes .../apps/motd/locale/hu/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../apps/motd/locale/id/LC_MESSAGES/django.po | 9 +- .../apps/motd/locale/it/LC_MESSAGES/django.mo | Bin 655 -> 1827 bytes .../apps/motd/locale/it/LC_MESSAGES/django.po | 50 ++--- .../motd/locale/nl_NL/LC_MESSAGES/django.mo | Bin 625 -> 1278 bytes .../motd/locale/nl_NL/LC_MESSAGES/django.po | 38 ++-- .../apps/motd/locale/pl/LC_MESSAGES/django.mo | Bin 703 -> 703 bytes .../apps/motd/locale/pl/LC_MESSAGES/django.po | 12 +- .../apps/motd/locale/pt/LC_MESSAGES/django.mo | Bin 599 -> 599 bytes .../apps/motd/locale/pt/LC_MESSAGES/django.po | 9 +- .../motd/locale/pt_BR/LC_MESSAGES/django.mo | Bin 664 -> 1799 bytes .../motd/locale/pt_BR/LC_MESSAGES/django.po | 48 ++--- .../motd/locale/ro_RO/LC_MESSAGES/django.mo | Bin 593 -> 664 bytes .../motd/locale/ro_RO/LC_MESSAGES/django.po | 16 +- .../apps/motd/locale/ru/LC_MESSAGES/django.mo | Bin 735 -> 2325 bytes .../apps/motd/locale/ru/LC_MESSAGES/django.po | 56 +++-- .../motd/locale/sl_SI/LC_MESSAGES/django.mo | Bin 570 -> 599 bytes .../motd/locale/sl_SI/LC_MESSAGES/django.po | 14 +- .../motd/locale/vi_VN/LC_MESSAGES/django.mo | Bin 539 -> 539 bytes .../motd/locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../motd/locale/zh_CN/LC_MESSAGES/django.mo | Bin 505 -> 505 bytes .../motd/locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 537 -> 537 bytes .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 560 -> 560 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/da/LC_MESSAGES/django.mo | Bin 454 -> 454 bytes .../locale/da/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 549 -> 549 bytes .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 535 -> 535 bytes .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 493 -> 493 bytes .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 493 -> 493 bytes .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.mo | Bin 455 -> 455 bytes .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 473 -> 473 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.mo | Bin 550 -> 550 bytes .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 458 -> 458 bytes .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 512 -> 512 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 513 -> 513 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 593 -> 593 bytes .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 468 -> 468 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 462 -> 462 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/ar/LC_MESSAGES/django.mo | Bin 1312 -> 1312 bytes .../apps/ocr/locale/ar/LC_MESSAGES/django.po | 42 ++-- .../apps/ocr/locale/bg/LC_MESSAGES/django.mo | Bin 992 -> 992 bytes .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 36 ++-- .../ocr/locale/bs_BA/LC_MESSAGES/django.mo | Bin 1324 -> 1324 bytes .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 42 ++-- .../apps/ocr/locale/da/LC_MESSAGES/django.mo | Bin 1218 -> 1218 bytes .../apps/ocr/locale/da/LC_MESSAGES/django.po | 40 ++-- .../ocr/locale/de_DE/LC_MESSAGES/django.mo | Bin 3800 -> 4293 bytes .../ocr/locale/de_DE/LC_MESSAGES/django.po | 62 +++--- .../apps/ocr/locale/en/LC_MESSAGES/django.mo | Bin 857 -> 857 bytes .../apps/ocr/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/es/LC_MESSAGES/django.mo | Bin 3254 -> 4155 bytes .../apps/ocr/locale/es/LC_MESSAGES/django.po | 58 ++--- .../apps/ocr/locale/fa/LC_MESSAGES/django.mo | Bin 2075 -> 2075 bytes .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 36 ++-- .../apps/ocr/locale/fr/LC_MESSAGES/django.mo | Bin 3888 -> 4346 bytes .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 57 ++--- .../apps/ocr/locale/hu/LC_MESSAGES/django.mo | Bin 710 -> 710 bytes .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 36 ++-- .../apps/ocr/locale/id/LC_MESSAGES/django.mo | Bin 690 -> 690 bytes .../apps/ocr/locale/id/LC_MESSAGES/django.po | 36 ++-- .../apps/ocr/locale/it/LC_MESSAGES/django.mo | Bin 1069 -> 4090 bytes .../apps/ocr/locale/it/LC_MESSAGES/django.po | 113 +++++----- .../ocr/locale/nl_NL/LC_MESSAGES/django.mo | Bin 1048 -> 1487 bytes .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 59 ++--- .../apps/ocr/locale/pl/LC_MESSAGES/django.mo | Bin 1744 -> 1744 bytes .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 43 ++-- .../apps/ocr/locale/pt/LC_MESSAGES/django.mo | Bin 1182 -> 1182 bytes .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 40 ++-- .../ocr/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2124 -> 4193 bytes .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 89 ++++---- .../ocr/locale/ro_RO/LC_MESSAGES/django.mo | Bin 1306 -> 1357 bytes .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 47 ++-- .../apps/ocr/locale/ru/LC_MESSAGES/django.mo | Bin 1593 -> 5561 bytes .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 117 +++++----- .../ocr/locale/sl_SI/LC_MESSAGES/django.mo | Bin 773 -> 773 bytes .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 39 ++-- .../ocr/locale/vi_VN/LC_MESSAGES/django.mo | Bin 766 -> 766 bytes .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 36 ++-- .../ocr/locale/zh_CN/LC_MESSAGES/django.mo | Bin 1308 -> 1308 bytes .../ocr/locale/zh_CN/LC_MESSAGES/django.po | 36 ++-- .../locale/ar/LC_MESSAGES/django.mo | Bin 1254 -> 1254 bytes .../locale/ar/LC_MESSAGES/django.po | 31 ++- .../locale/bg/LC_MESSAGES/django.mo | Bin 1300 -> 1348 bytes .../locale/bg/LC_MESSAGES/django.po | 32 ++- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 1171 -> 1171 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 31 ++- .../locale/da/LC_MESSAGES/django.mo | Bin 488 -> 488 bytes .../locale/da/LC_MESSAGES/django.po | 28 +-- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1878 -> 1878 bytes .../locale/de_DE/LC_MESSAGES/django.po | 28 +-- .../locale/en/LC_MESSAGES/django.mo | Bin 975 -> 975 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 1679 -> 1792 bytes .../locale/es/LC_MESSAGES/django.po | 36 ++-- .../locale/fa/LC_MESSAGES/django.mo | Bin 1487 -> 1487 bytes .../locale/fa/LC_MESSAGES/django.po | 28 +-- .../locale/fr/LC_MESSAGES/django.mo | Bin 1877 -> 1877 bytes .../locale/fr/LC_MESSAGES/django.po | 28 +-- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/hu/LC_MESSAGES/django.po | 28 +-- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/id/LC_MESSAGES/django.po | 28 +-- .../locale/it/LC_MESSAGES/django.mo | Bin 1871 -> 1872 bytes .../locale/it/LC_MESSAGES/django.po | 32 ++- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 1513 -> 1965 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 47 ++-- .../locale/pl/LC_MESSAGES/django.mo | Bin 1188 -> 1288 bytes .../locale/pl/LC_MESSAGES/django.po | 37 ++-- .../locale/pt/LC_MESSAGES/django.mo | Bin 1280 -> 1280 bytes .../locale/pt/LC_MESSAGES/django.po | 28 +-- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 1453 -> 1863 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 45 ++-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 1157 -> 1328 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 41 ++-- .../locale/ru/LC_MESSAGES/django.mo | Bin 1416 -> 2286 bytes .../locale/ru/LC_MESSAGES/django.po | 65 +++--- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 559 -> 854 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 49 ++--- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 710 -> 710 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 28 +-- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 1074 -> 1074 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 28 +-- .../rest_api/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes .../rest_api/locale/ar/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../rest_api/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 464 bytes .../rest_api/locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 582 -> 582 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../rest_api/locale/en/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/es/LC_MESSAGES/django.mo | Bin 556 -> 556 bytes .../rest_api/locale/es/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fa/LC_MESSAGES/django.mo | Bin 510 -> 510 bytes .../rest_api/locale/fa/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/fr/LC_MESSAGES/django.mo | Bin 586 -> 586 bytes .../rest_api/locale/fr/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../rest_api/locale/hu/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../rest_api/locale/id/LC_MESSAGES/django.po | 9 +- .../rest_api/locale/it/LC_MESSAGES/django.mo | Bin 578 -> 578 bytes .../rest_api/locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 595 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 18 +- .../rest_api/locale/pl/LC_MESSAGES/django.mo | Bin 554 -> 554 bytes .../rest_api/locale/pl/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/pt/LC_MESSAGES/django.mo | Bin 520 -> 520 bytes .../rest_api/locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 514 -> 596 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 16 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 523 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../rest_api/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 693 bytes .../rest_api/locale/ru/LC_MESSAGES/django.po | 22 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 478 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 472 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 604 -> 604 bytes .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 532 -> 532 bytes .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 626 -> 626 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.mo | Bin 488 -> 488 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1054 -> 1054 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 1018 -> 1018 bytes .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 557 -> 557 bytes .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1095 -> 1095 bytes .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 451 -> 451 bytes .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.mo | Bin 519 -> 1086 bytes .../locale/it/LC_MESSAGES/django.po | 32 +-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 507 -> 774 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 24 +-- .../locale/pl/LC_MESSAGES/django.mo | Bin 1141 -> 1139 bytes .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 520 -> 520 bytes .../locale/pt/LC_MESSAGES/django.po | 9 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 572 -> 1065 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 30 +-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 577 -> 577 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 12 +- .../locale/ru/LC_MESSAGES/django.mo | Bin 668 -> 1335 bytes .../locale/ru/LC_MESSAGES/django.po | 36 ++-- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 559 -> 559 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 535 -> 535 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 524 -> 524 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../sources/locale/ar/LC_MESSAGES/django.mo | Bin 2591 -> 2591 bytes .../sources/locale/ar/LC_MESSAGES/django.po | 30 +-- .../sources/locale/bg/LC_MESSAGES/django.mo | Bin 1571 -> 1571 bytes .../sources/locale/bg/LC_MESSAGES/django.po | 27 +-- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2375 -> 2375 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 30 +-- .../sources/locale/da/LC_MESSAGES/django.mo | Bin 2148 -> 2148 bytes .../sources/locale/da/LC_MESSAGES/django.po | 27 +-- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 7590 -> 9553 bytes .../locale/de_DE/LC_MESSAGES/django.po | 90 ++++---- .../sources/locale/en/LC_MESSAGES/django.mo | Bin 2019 -> 2019 bytes .../sources/locale/en/LC_MESSAGES/django.po | 2 +- .../sources/locale/es/LC_MESSAGES/django.mo | Bin 8186 -> 8713 bytes .../sources/locale/es/LC_MESSAGES/django.po | 70 +++--- .../sources/locale/fa/LC_MESSAGES/django.mo | Bin 7372 -> 7372 bytes .../sources/locale/fa/LC_MESSAGES/django.po | 39 ++-- .../sources/locale/fr/LC_MESSAGES/django.mo | Bin 8366 -> 10371 bytes .../sources/locale/fr/LC_MESSAGES/django.po | 96 ++++----- .../sources/locale/hu/LC_MESSAGES/django.mo | Bin 1472 -> 1472 bytes .../sources/locale/hu/LC_MESSAGES/django.po | 27 +-- .../sources/locale/id/LC_MESSAGES/django.mo | Bin 1808 -> 1808 bytes .../sources/locale/id/LC_MESSAGES/django.po | 31 +-- .../sources/locale/it/LC_MESSAGES/django.mo | Bin 2591 -> 9560 bytes .../sources/locale/it/LC_MESSAGES/django.po | 204 +++++++++--------- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 3127 -> 3997 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 78 +++---- .../sources/locale/pl/LC_MESSAGES/django.mo | Bin 1317 -> 1855 bytes .../sources/locale/pl/LC_MESSAGES/django.po | 51 ++--- .../sources/locale/pt/LC_MESSAGES/django.mo | Bin 2494 -> 2494 bytes .../sources/locale/pt/LC_MESSAGES/django.po | 33 +-- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 6087 -> 9719 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 114 +++++----- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2378 -> 2557 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 46 ++-- .../sources/locale/ru/LC_MESSAGES/django.mo | Bin 3660 -> 7565 bytes .../sources/locale/ru/LC_MESSAGES/django.po | 129 +++++------ .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 653 -> 690 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 34 +-- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1632 -> 1632 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 27 +-- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2107 -> 2107 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 27 +-- .../locale/ar/LC_MESSAGES/django.mo | Bin 589 -> 589 bytes .../locale/ar/LC_MESSAGES/django.po | 12 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 513 -> 513 bytes .../locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 606 -> 606 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../locale/da/LC_MESSAGES/django.mo | Bin 499 -> 499 bytes .../locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 1503 -> 1503 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 1544 -> 1544 bytes .../locale/es/LC_MESSAGES/django.po | 9 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 842 -> 842 bytes .../locale/fa/LC_MESSAGES/django.po | 9 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 1608 -> 1608 bytes .../locale/fr/LC_MESSAGES/django.po | 9 +- .../locale/hu/LC_MESSAGES/django.mo | Bin 504 -> 504 bytes .../locale/hu/LC_MESSAGES/django.po | 9 +- .../locale/id/LC_MESSAGES/django.mo | Bin 546 -> 546 bytes .../locale/id/LC_MESSAGES/django.po | 9 +- .../locale/it/LC_MESSAGES/django.mo | Bin 1500 -> 1542 bytes .../locale/it/LC_MESSAGES/django.po | 26 +-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 559 -> 1047 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 32 +-- .../locale/pl/LC_MESSAGES/django.mo | Bin 1585 -> 1583 bytes .../locale/pl/LC_MESSAGES/django.po | 16 +- .../locale/pt/LC_MESSAGES/django.mo | Bin 1089 -> 1102 bytes .../locale/pt/LC_MESSAGES/django.po | 13 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 849 -> 1576 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 46 ++-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 560 -> 838 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 27 ++- .../locale/ru/LC_MESSAGES/django.mo | Bin 698 -> 1397 bytes .../locale/ru/LC_MESSAGES/django.po | 38 ++-- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 515 -> 515 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 504 -> 504 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../storage/locale/ar/LC_MESSAGES/django.mo | Bin 547 -> 547 bytes .../storage/locale/ar/LC_MESSAGES/django.po | 12 +- .../storage/locale/bg/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../storage/locale/bg/LC_MESSAGES/django.po | 9 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 570 -> 570 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 12 +- .../storage/locale/da/LC_MESSAGES/django.mo | Bin 464 -> 464 bytes .../storage/locale/da/LC_MESSAGES/django.po | 9 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 534 -> 534 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../storage/locale/en/LC_MESSAGES/django.mo | Bin 378 -> 378 bytes .../storage/locale/en/LC_MESSAGES/django.po | 2 +- .../storage/locale/es/LC_MESSAGES/django.mo | Bin 502 -> 502 bytes .../storage/locale/es/LC_MESSAGES/django.po | 9 +- .../storage/locale/fa/LC_MESSAGES/django.mo | Bin 458 -> 458 bytes .../storage/locale/fa/LC_MESSAGES/django.po | 9 +- .../storage/locale/fr/LC_MESSAGES/django.mo | Bin 528 -> 528 bytes .../storage/locale/fr/LC_MESSAGES/django.po | 9 +- .../storage/locale/hu/LC_MESSAGES/django.mo | Bin 467 -> 467 bytes .../storage/locale/hu/LC_MESSAGES/django.po | 9 +- .../storage/locale/id/LC_MESSAGES/django.mo | Bin 461 -> 461 bytes .../storage/locale/id/LC_MESSAGES/django.po | 9 +- .../storage/locale/it/LC_MESSAGES/django.mo | Bin 526 -> 526 bytes .../storage/locale/it/LC_MESSAGES/django.po | 9 +- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 483 -> 541 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 16 +- .../storage/locale/pl/LC_MESSAGES/django.mo | Bin 522 -> 585 bytes .../storage/locale/pl/LC_MESSAGES/django.po | 19 +- .../storage/locale/pt/LC_MESSAGES/django.mo | Bin 533 -> 546 bytes .../storage/locale/pt/LC_MESSAGES/django.po | 13 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 482 -> 544 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 16 +- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 523 -> 570 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 19 +- .../storage/locale/ru/LC_MESSAGES/django.mo | Bin 603 -> 639 bytes .../storage/locale/ru/LC_MESSAGES/django.po | 20 +- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 536 -> 536 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 12 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 478 -> 478 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 9 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 472 -> 472 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 9 +- .../apps/tags/locale/ar/LC_MESSAGES/django.mo | Bin 2952 -> 2952 bytes .../apps/tags/locale/ar/LC_MESSAGES/django.po | 21 +- .../apps/tags/locale/bg/LC_MESSAGES/django.mo | Bin 1763 -> 1763 bytes .../apps/tags/locale/bg/LC_MESSAGES/django.po | 15 +- .../tags/locale/bs_BA/LC_MESSAGES/django.mo | Bin 2343 -> 2343 bytes .../tags/locale/bs_BA/LC_MESSAGES/django.po | 18 +- .../apps/tags/locale/da/LC_MESSAGES/django.mo | Bin 2159 -> 2159 bytes .../apps/tags/locale/da/LC_MESSAGES/django.po | 15 +- .../tags/locale/de_DE/LC_MESSAGES/django.mo | Bin 3906 -> 4022 bytes .../tags/locale/de_DE/LC_MESSAGES/django.po | 26 ++- .../apps/tags/locale/en/LC_MESSAGES/django.mo | Bin 2129 -> 2129 bytes .../apps/tags/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/es/LC_MESSAGES/django.mo | Bin 4091 -> 4091 bytes .../apps/tags/locale/es/LC_MESSAGES/django.po | 18 +- .../apps/tags/locale/fa/LC_MESSAGES/django.mo | Bin 3274 -> 3274 bytes .../apps/tags/locale/fa/LC_MESSAGES/django.po | 15 +- .../apps/tags/locale/fr/LC_MESSAGES/django.mo | Bin 4217 -> 4329 bytes .../apps/tags/locale/fr/LC_MESSAGES/django.po | 30 +-- .../apps/tags/locale/hu/LC_MESSAGES/django.mo | Bin 624 -> 624 bytes .../apps/tags/locale/hu/LC_MESSAGES/django.po | 15 +- .../apps/tags/locale/id/LC_MESSAGES/django.mo | Bin 587 -> 587 bytes .../apps/tags/locale/id/LC_MESSAGES/django.po | 15 +- .../apps/tags/locale/it/LC_MESSAGES/django.mo | Bin 3742 -> 4101 bytes .../apps/tags/locale/it/LC_MESSAGES/django.po | 39 ++-- .../tags/locale/nl_NL/LC_MESSAGES/django.mo | Bin 2357 -> 3035 bytes .../tags/locale/nl_NL/LC_MESSAGES/django.po | 51 +++-- .../apps/tags/locale/pl/LC_MESSAGES/django.mo | Bin 3022 -> 3022 bytes .../apps/tags/locale/pl/LC_MESSAGES/django.po | 20 +- .../apps/tags/locale/pt/LC_MESSAGES/django.mo | Bin 1532 -> 1532 bytes .../apps/tags/locale/pt/LC_MESSAGES/django.po | 15 +- .../tags/locale/pt_BR/LC_MESSAGES/django.mo | Bin 2659 -> 4106 bytes .../tags/locale/pt_BR/LC_MESSAGES/django.po | 51 +++-- .../tags/locale/ro_RO/LC_MESSAGES/django.mo | Bin 2432 -> 2916 bytes .../tags/locale/ro_RO/LC_MESSAGES/django.po | 50 ++--- .../apps/tags/locale/ru/LC_MESSAGES/django.mo | Bin 2707 -> 4968 bytes .../apps/tags/locale/ru/LC_MESSAGES/django.po | 80 +++---- .../tags/locale/sl_SI/LC_MESSAGES/django.mo | Bin 862 -> 891 bytes .../tags/locale/sl_SI/LC_MESSAGES/django.po | 22 +- .../tags/locale/vi_VN/LC_MESSAGES/django.mo | Bin 2306 -> 2306 bytes .../tags/locale/vi_VN/LC_MESSAGES/django.po | 15 +- .../tags/locale/zh_CN/LC_MESSAGES/django.mo | Bin 2096 -> 2096 bytes .../tags/locale/zh_CN/LC_MESSAGES/django.po | 15 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 3112 -> 3112 bytes .../locale/ar/LC_MESSAGES/django.po | 23 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 3579 -> 3579 bytes .../locale/bg/LC_MESSAGES/django.po | 20 +- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 2765 -> 2765 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 23 +- .../locale/da/LC_MESSAGES/django.mo | Bin 2487 -> 2487 bytes .../locale/da/LC_MESSAGES/django.po | 20 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3785 -> 3851 bytes .../locale/de_DE/LC_MESSAGES/django.po | 32 ++- .../locale/en/LC_MESSAGES/django.mo | Bin 2387 -> 2387 bytes .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.mo | Bin 3925 -> 3925 bytes .../locale/es/LC_MESSAGES/django.po | 23 +- .../locale/fa/LC_MESSAGES/django.mo | Bin 3524 -> 3524 bytes .../locale/fa/LC_MESSAGES/django.po | 12 +- .../locale/fr/LC_MESSAGES/django.mo | Bin 4169 -> 4254 bytes .../locale/fr/LC_MESSAGES/django.po | 35 ++- .../locale/hu/LC_MESSAGES/django.mo | Bin 457 -> 457 bytes .../locale/hu/LC_MESSAGES/django.po | 12 +- .../locale/id/LC_MESSAGES/django.mo | Bin 487 -> 487 bytes .../locale/id/LC_MESSAGES/django.po | 12 +- .../locale/it/LC_MESSAGES/django.mo | Bin 2813 -> 3889 bytes .../locale/it/LC_MESSAGES/django.po | 65 +++--- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 3909 -> 3993 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 31 ++- .../locale/pl/LC_MESSAGES/django.mo | Bin 3453 -> 3989 bytes .../locale/pl/LC_MESSAGES/django.po | 46 ++-- .../locale/pt/LC_MESSAGES/django.mo | Bin 3751 -> 3751 bytes .../locale/pt/LC_MESSAGES/django.po | 22 +- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 3306 -> 3879 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 43 ++-- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 2833 -> 3690 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 58 +++-- .../locale/ru/LC_MESSAGES/django.mo | Bin 3571 -> 5069 bytes .../locale/ru/LC_MESSAGES/django.po | 71 +++--- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 526 -> 598 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 21 +- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 2514 -> 2514 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 20 +- .../locale/zh_CN/LC_MESSAGES/django.mo | Bin 2391 -> 2391 bytes .../locale/zh_CN/LC_MESSAGES/django.po | 12 +- 1344 files changed, 7874 insertions(+), 7960 deletions(-) diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.mo index a4b8f27cb2fa6599937115aa0a0831c4f7d43b45..b9f8dfab007a6ad694f1bb28665553a23e6c54a8 100644 GIT binary patch delta 84 zcmcc5cAsrSHlwkjp{|j!f`O5hsgbUMiGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6s nfv%B-f`Pe}vC-stjFppBn4)-m67$ka6Vri85{o9+GCcwS+>{t^ delta 84 zcmcc5cAsrSHlwkDiLQ~kf}x3(fu*j2iGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6M nv96J!f{~$>f$`*djFmh-iFxUziRnP;#G=V!Owp6;m>vQE;dU5e diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index 6d2fb25fc1..61c00a6c9a 100644 --- a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:32+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.mo b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.mo index 7741daa0b518de8ea292e5ccc81d329121585d03..74502f8b6edc543755877c7c2bdc77b90728aa61 100644 GIT binary patch delta 525 zcmaKnJ4?e*6vt0%tF^5TA`YT>Clw)(q`v4@e1R5P929hlHN;41!94pDR>7S zg&S}PeuBjVFYprl31gSH3?dx85FaB#%mhIfz!TI7#7|OUE@@FBlhG}UWt4o*-pglM z*0k)OTOD_%{^xi|3)`m6Fne-89$GW?f|oz1V~QfFF(#|=DOHjuWjUNqNvrySX_@() zG_TouoT;)hEh)03&N6u>9#frN-;wj~+lVH$oUyMNXxTEHq~F-Q;&*P@t+>a$#rOqp z@rGN5Yy1{jmH0pPI`MN}M@Nk}-3r=E-dLSsw#InVDftTn{0!H1e#x&z>#vgf1*cGz A!~g&Q delta 239 zcmX@g@tw8)o)F7a1|VPqVi_Rz0b*_-t^r~YSOLT=K)e!&MSyr6ls*ikLE<-n7^MC# z5ce}OFuVlPAn{5j1_omwT?eGqfb=FH%>kru0%?#rkAO5#IY^3uff-Cf906j241fVv zAcJY*Te-=GjB1k;8U45oOmvOR6%0+R3@j(_VwB}JFxE9PR4_8MGBBR}h_QypCowO* ZG%-EZN+BtIax7Eyf$`*djMMmi67$ka6VrjxNyYI_j+2dX=a(Q)7a2Z*T`7Gz{twfNY}u`zKTp>su_V<>!N|bSOxMsr l*T_P_z}(8%XyTj7$wiD&JU)qe>7|M3Kou#8lTR~R005`S7!3db delta 82 zcmZo>X=a(Q)7Zd7*T`JK(8S8XQrE!5zKTp>su_V<>!N|bSOxM6z k*T_)8$k58bc;cH%9-qX#^wPw1plnLw*e#9eIU ze)XB3HVWTx9Dm~#EHK7-oJE<;M>)5Jvi}@8s@|eZ`VQ~nr;~aYQx(X&@iI;$?^MjA zS_$dd7;jj4D;>YG(rxlMSVj&lACwlJN*-YNn_DHdCeJIOnnsCA>GZQ#o zSau>mDC!x1$#p_K>6ps8(Kn;xbhvVyj@B6VOceh~IPrXPu64rkN>!(1ih9K?+`hB3 hm)y7dZkfO=uSRaE>XnRl%KINxgZOExFRrHMj{v%RbhH2f delta 541 zcmXZY&r1S96u|M>)U>QjErZC~s7sW!YEdo`B^D6|9l9CRMw<$1;ExV<@Ep-0mi~jF zTM%7?F8u*{s8e_dy40;h5JB{vbl~l0-^}dHd;8f{>#Wv&_6x!2AqI#$B1mj0JQ$B? z#~R8#&nWkOU>CYtgy_IN?8Q-RMIGh(63*cUw&4l-(L&CviYs26Ox&T04=68uLpQ!R z^DhjM|DZf*%qGM&MMN<`{>n$vZydyKM, 2015 +# Tobias Paepke , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:17-0400\n" -"PO-Revision-Date: 2016-10-28 07:32+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-10-31 18:56+0000\n" +"Last-Translator: Tobias Paepke \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +58,7 @@ msgstr "Berechtigungseinträge" #, python-format #| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "" +msgstr "Berechtigungen \"%(permissions)s\" zur Rolle \"%(role)s\" für \"%(object)s\"" #: models.py:64 msgid "None" diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/en/LC_MESSAGES/django.mo index fcbdea9b769db41fa08c03707cee41fce5deaaa1..68dfeacb7c37f4ea76e7236552a7614c8ecb2622 100644 GIT binary patch delta 24 fcmdnbx}SA}6(hHyp{|j!f`O5hsnKRv#wtbtQg8+e delta 24 fcmdnbx}SA}6(hHSiLQ~kf}x3(f#qgb#wtbtQs4#^ diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po index 16b07d6841..25d5608a7d 100644 --- a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2012-02-02 18:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/es/LC_MESSAGES/django.mo index 8e8df2efe10fa26a82523e5ee4e5a271999761d7..03fc79ac7410362b5d56f86ff23ff17776e8103f 100644 GIT binary patch delta 564 zcmZwDze@sP7{KxOJiAP-Pz#I_4l&9>@K+=@NlQdQK|>8e76yiPa_1K0)MnGsP@6V}s=5)WwN6H37z2Jj0@ zXz0KBB}_42MLF;YPif|)zaAM-YLa{u6PU*^Zea*(C>J?KgZj$lMLNB}B3`2uen;8( ziLycGT2e5INsOa3zJfm7z(w3fdQlyeMz8wok4T@2`>0Vu{+7?JYdJ0AcC<)HYRHhi zej?nx(=u9Vtzy@!j#IS`9Wy>X+xVL%ow(VwOxvneWJQ$JzGchQ+C8Z3HA%QVPdkvw vq_R0Poh{B~-L@X{XVR%`!A#E=bKS1K=`nw+SpSu1lie(Upk9)@o*KKoJ-d(1<70o zouq@{qPv4GexG>o^0|Atd-syp)v`HSM!~Hx)`=ZrMs$cv!-KKF0H09zyrAy;#1_^) zktS~926nNE1?u|&9^)CV;1$N`ka{C|U{WJ7!vr5uFMP)kKmONWn6mysE!6Wx#x!w& zx_{1N8%yls8%9{Gh^*lj>IdwhHaNf*_sft;LE;?s!W-0scc=#@s27&l!v$)?-&jYF zYV;r>YJ+Xm{3+6((66)!t)+SWTiTG;6gM`zCUO%KYwB-ktp*WKpG{`m(7z6Cp6(wd bSzg$_Tl$@bJxpysv00H%E5U{5?yD!i;`A)T diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po index dd2fa4edb1..f860b997e1 100644 --- a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07: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/acls/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.mo index 6fbbbc73a671058b4bfc0205411f083f98282f62..fee31706ca85b9b507c6737c6cb58766ede7fa06 100644 GIT binary patch delta 85 zcmaFL@swkO1e39$p{|j!f`O5hsgbUMiGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6s ofv%B-f`Pe}vC(92rmD%8n4)-m67$ka6Vri8(h@goGg~nN0OY|JrT_o{ delta 85 zcmaFL@swkO1e39WiLQ~kf}x3(fu*j2iGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6M nv96J!f{~$>f$?N-rYatv#Ju#<#B`u^TH@p*OwpTlm@OFr;E)%Y diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po index f476bd8714..febe4e197c 100644 --- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:32+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.mo b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.mo index a755307dbe70243d5f4fd57590954390e503c6d0..14b6e009b1082f8f71d3af86d95d639b57d15ba5 100644 GIT binary patch delta 262 zcmZ3-+rv9yPklEd1A{R$0|Ofa1H*n61_oImeGEve0_i6}S`bKcu`)0S0BIQ@Ee@o0 zfiyReb_LR6Kspde+X3keAPrK#97u!I?F7=&K>8w(<^|GkfwV4={tcvoh(VK$K@Mz? zKG1fMfHjad1k#Q`S^`KHZ;oWtVB$73)HO0zFfg(*HJaSRENf_Jplf8IU|?=#Y@}@f z1YACe#U;8SMTvREIf*6tMOF$y`AMloCHX+QII$=*fASyZ;K?y8Q9M40dFiEz>8Vx< MX+@j2vixKO0EWaZCIA2c delta 296 zcmeC-UB^3NPyJd(1_onh1_m|;28M?$3=FbB`UQ|y1=4J+3=D!mS_eoA0BJiQEe@pp zfiyReP6yIrK)M)6+X3k=APrJ~5=ev8-3HRqK>9O~<^|IHKudIiv@DPY3Nd)IG01@p z3WN&80%=2_L^6<;0Mb)8M>1+KaT}QE8ks8?nphcFPVQlr4K^^=H8NB%GPE)<);0hF zE}z8W65WuZ#Ju91#FG3XD+T9_qRirw{DO>B1!oV(&@k5!1)F5Jm|k*5Vrf}wi9>pB nVrGtBa(=Ge7|M3sa6VUMU!<{qBl=r`N0SP1gtof diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po index 98f00c19f5..b01b356a0d 100644 --- a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:32+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.mo index a5ab62e6fdb8234a7ad29860b1063c2a4f76bf4d..d196323791fdca3755272e9410c1c73211c84ddd 100644 GIT binary patch delta 82 zcmeBR>0p_#)7a2Z*T`7Gz{twfNY}u`zKTp>su_V<>!N|bSOxMsr l*T_P_z}(8%XyTii$)$`@JU)qe>7|M3KouFKlg}|)0RXG`7&-s| delta 82 zcmeBR>0p_#)7Zd7*T`JK(8S8XQrE!5zKTp>su_V<>!N|bSOxM6z k*T_)8$k58bc;cHH9-qX#^wPw1pln9z$j@0j%;EEdT%j diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po index 0348274e39..77708a7b47 100644 --- a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:32+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.mo b/mayan/apps/acls/locale/id/LC_MESSAGES/django.mo index cafa4fd8bfef51e93b4236710d2134d2f672cf77..b346c5c89323b49a192193022e40ffce774ab52d 100644 GIT binary patch delta 82 zcmX@ie3*GcyRo66u92~VfsvJ|k*fdN;5ziv=!S!Qu&ex9yNVo9o%f{}rtnXaLM lu91a;fw`5j(ZpS~lU*32czhD`(n}N5fhsanCeLM50|2;k7sUVo delta 82 zcmX@ie3*GcyRm_Zu93Ndp^24&rLKXAfdN;5ziv=!S!Qu&ex9yNVo9o%f{}rtsV-33 j$V9=w)XLCw;;vdApTxZM(!_M2Y-Y-2Gsfu2^B7eDy)PHV diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po index e30547cf1c..f1d098200f 100644 --- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:32+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.mo b/mayan/apps/acls/locale/it/LC_MESSAGES/django.mo index 2f2547059d2ad9eb774ac78e3ad8d8c5646e49a7..0d1cb734a60c4fac89239c412dc287f9df0974bb 100644 GIT binary patch literal 1802 zcma)+OK%)S5XYMk5?CGy;US(<5fRxIntkOVYmAYXwF4V@jWLVQv}bzPje4d>-92_} zxcVdHz?lo;#tDflhzmJ#MsVR9a3L4|HM`zjCppkk@2{)7s=BJSYyP-${+_^i1@kS; zUohXsG*93M<4^EB_!syx_&3OU55O0|*Uky?9Jm0oj~n0x@D9l5pMuNa7vMACH{eU) zw;=ob5xfZA2MPQgEO7y20XY%Jh*l|*e4ITt?I~Ylt9!l zuV6lp$#IBIchiebk|^&fv3YRTkkLLoev^jQ#dK|Ys9>Pg8SzMT4x~16&nPOC%e42} z=3cBTqk@`%aBbyhU3=C{=T%8MMLOSCP6wO}oy|y6f!#ci-TP7{p)NL39oUN(A32$` z-uz{~+?T_lPBfdyD!aPaQip6&alCgn<7skRHdkVMF7~-KUA?wAchi!;O2HDUruc-( zTPPEY<6yBNc5qPr%xlg3Eci!FcJ(-3FSecKq@!LM?JCFRjHxe=WKJ9F{m*JUs<19Z zeLvD^^kF&j(ZI%3+x}z_b)Av{`q8=!DyDX`bt`JMqV{!aw&R=asClE=gkrR#4mA5c zqt}eCH>ur0IAhiHImdm{tCgT8c$rLN2hqr9T`GnVVgM6PGa+9<UGLvn z@&>iwBT1>!)pJGDX-XHykJ0j0)fBrn!M2_lSpm6nH_;QF66M#&$MP6|8Eg6i+|x#r z=*m1%#>nYn+G;&>dZ%R*$@+-p=kG{4g>J%sN~ttv!Hz~MKqzGDl<1=_=piEh;?M ZeW>F@-Nza;H~-IQSNjrg6lJbb{|_k#-N^s| delta 531 zcmX}nze~eF6bJCvHm$aeEoxQ#Q4At3T1bC@7zYtugbrGYAWkQQ8jLx}B}_C zpg6cXxjBg7|KO%z7yk%H{a%bdc=_C~clUBuxXOMV5lqc%ZFa~O&3{}A#yuhKQc>O6w zG==pSI1k^UYW6#}h~jC?XW<}Rg{q-VI0<*)I6R8?Ph!tunmYJn4Ah_8K)f4ukGrw? zdl9-M^b(x`|1lJgP!=_wi{}GSHTV~*DUu(FKwc*sCGOd@ZTrWL5DxbQwYY1`ZfY-Y zHY&AcquQ{{71>Xft7g4Ys~WYcW!4u>M6St1P-*+j6D|w5Zy7CqVEX}wg82@YTUuLh xGOrV|j%^uEAaAvOsihxfGPAZ|3lVzEh~CE7p;pLUPP>i>nd@}B%vj%O(hq7sOu_&F diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po index 2971e635a5..1a1ce39e76 100644 --- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:17-0400\n" -"PO-Revision-Date: 2016-10-28 07:32+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-10-30 21:18+0000\n" +"Last-Translator: Marco Camplese \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +57,7 @@ msgstr "Voci di accesso" #, python-format #| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "" +msgstr "Permessi \"%(permissions)s\" del ruolo \"%(role)s\" per \"%(object)s\"" #: models.py:64 msgid "None" diff --git a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.mo index 81f4aa2c97f205ebfdd7b9e504a46e5e19a24791..e95ea65909eb568e98ace94c2d0b5951858005ca 100644 GIT binary patch delta 695 zcmZwC&r1|x7{KuvciU1^$;~iPdQl=nHg;wWWQoWih#dPt;h{^t>f18AvokR>?!|+r z=;Cea5Ofj$fnX1Hu$y5AFGA<2ONVY9B&bW@$2BVGg=aqR`@F;RKF@C7*Z#GSgZbwc zYls*nwuvz!u=%h)VIDu@N&JHH-%sqv;V#QMj^|KnOk)9WpxocV8GMM{_yUW#iPT%O zUb8t$Viy&DKzVQV2)ryIKdSA2!q_)5#=Dys|5ik|HM1D6_ze>$%<%Up2e<#s(kd+c0{8)fq5uE@ delta 553 zcmXZYKP&@L9Ki8++ES`Y>wh#ZVWFv9Tk+>2LM#nUV_+hY6HQY&C+QzX7K4cCVz(Jg zSlNsQ2F98!HCYTSzQ5MX{qA%3yZ3(Y_pa9Q6g;Yiy%&nnO$-tDM3mUnxG|p5i!Ug1 z-caU!Vh8%0lxoL5?7>lNMib@xBF^9{w&E#9&_(JUsVg2@NZg~2k0={{U;u0X@81~b z{THRsm`AAxnnBx)zbZsXGk!w;Ru>^nDEC|&(ZcSH7LinaaGrYI z$la@!(A>1=EMQE=lhb-)(lln>swbK?Qt@O$PbN$w6*CxZ8LL!|uN5t)WLxF^qNy)e zO67v1FWTFsGS^, 2016 # Justin Albstbstmeijer , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:17-0400\n" -"PO-Revision-Date: 2016-10-28 07:32+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-10-28 12:43+0000\n" +"Last-Translator: Evelijn Saaltink \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -57,7 +58,7 @@ msgstr "Authorisaties invoer" #, python-format #| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "" +msgstr "Permissies \"%(permissions)s\" voor gebruikersrol \"%(role)s\" voor \"%(object)s\"" #: models.py:64 msgid "None" diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.mo index a448871dc60aa312ab2769dc73a14013ba5dc307..f958e6b8ed9eb6429a10f882deb2bd6aff7e831c 100644 GIT binary patch delta 262 zcmZ3&+sr#*PyI1Q1_onh1_n+B28LfO5SoRRfk6<+=L6CrKw1Gxn*wQ3Am0l}0}(?4 zR6Gqx+X4C2Kw1Du?*h^wb*F)}6p(%hr1^mKA0RCTq`BD`7=TtWD6uifF>nJJ>QDh= zAZ-HVTL5X00lAwa88w)=4GndTj1>%wtW1q2_b|&E8XD*tStuBoTNxW^8vp^9PhxS2 zZb(sLUU5!hNq&))LQsBEYEel(kSl!LG)okZPhwtrX<~Y+l|n(z<}EBA F7y(P#D`fxx delta 295 zcmZqXUBWwIPyKU71_onh1_n+B1_o(X2(1dF1%Z5hAT0u<9iem>kQN29nWDIT67$ka6Vri83MS8Inh5~9)ff8! delta 84 zcmdnNwu5a$7o)L(iLQ~kf}x3(fu*j2iGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6M nv96J!f{~$>f$`+MjI}&IiFxUziRnP;f|ALWOwp4UGED~n*0~sC diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index 789667760c..97b4a0cef4 100644 --- a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/acls/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: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:32+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.mo b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.mo index 89de4968eab061b8ecf1db1e7102c7d53539a5c7..48edbdd0999cc922ff0f87a1a378a6690d401731 100644 GIT binary patch literal 1828 zcma)+zi%T&6vr1h4luuu1Em0IbRxP~X#MLBh&CkP#0~_-!2}bDiks{{JA-z2Rx`6s za+C-PdXTQBp`k?3qN72gq(DMKK*4`-4K#e;uAOX-ATi49XMVhSzx-Z)y>#I-594Xf zXEDFWd=4|d2Oo^zzzg8-;AQYnkmddc9|ITe^}I*Gt03#R4qgP`1o{4La2dP-J_OzZ zp8~%CS>HF{1K^LK0Dl76-W~8^@Gr0nUc9e7e*^TfAAqdyL-1Sp^6~6`?f%lg4R8_n zH^58aCm{QC3tRxd1ljI)v-2OoSF!&YWV;Ip;u-LHko{Z%9|VVB9efYOpZ5_yEdMFk z13#ag{{ptL{{ws+ybNP-(?dALo^!?eICoECax6SJ_W5`M3)anpedWQqxLm&D?*(*qhk>(>&`zEV{HPlcydX2pyV)3^fI`>s`jK+1 z#d@zBnX+8f*j8%u@mPh5pU5J*hPOk9{Gwoab~fUZ;C6IM-mv0(Wi75OE>$em?G@p) zK-P$Fn0$mZ@wRjp2i`6&iceMQRL@oW?0gvE#R{w^|VN zcWJ6v?_F~3mqn)&Tx-A3!l-Ra>--V2ZDZ-U4!W^QNo*QYPFnGb7ACXJ~F@(SQBqvK^Y2C=1Dz1yA1Lv}!**rWvY&bTe#&pCAnnqh`ls3(T zWA-UZY%`uIY-aBL_1$K@HrN{UPqWi*v}zluX8ipA=r}{@j*eV2i=|3eM0g;LCAa$S zXwzRlm1Co0GJZb|b)?csAeQ%)JMldbg{|5!&W()yO>Ghzh%_skNo*UjWanv=fk+IhbePgIIBnZf`HS0)0j7tQVENzrpC^2|_35iC;K zex*8;XW1!*BAuf$Cj1uvR5(I3GFq|hM7-P4Q&~14FN)~T&&+A?JCq*eN!3bqeNI1$ h2)@dU;xoO5T;A1^G%;|q>iz$FxTkE6D!)08{~vT^>>dCB delta 554 zcmXxfze~eF6bJCrrnUa4#VSq;S)8Pr)S?)tsujc{QbiF5IpeiGh>7G9lrAoAj-jiQ zh`5M@lZ&8}tE1@Z;-BE)_qFMR$0wKE-TUTd_%?m5*muER@NkWOk3YynXMhW*=pvYd zkB|nw!9Mr_>B3J)gMJ_d_>12sFqPI>n1$mIBidoGrCljD%UC*I^g_Cj(kIb0WB^S? ze@K;yzIyhSR)r%1!OF)n&`T>7#nxRF)@st0!VPq8+d`=sw&}ToZ3+KGDkVKvv8v~Y zsF~OwG>ZAcf^HTqV=?+pOq#}AzF_JF(=z6!4b(t|t02GQb5}V$@O(?JdPl+!JgB%Y zy=YCdvlZ^vLtYn_ei|GuSED=aAR0}!w#(s#DC#~}Y*(s~JF?k5{tsF5XpjH^ 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 698844159b..718565702a 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po @@ -4,13 +4,14 @@ # # Translators: # Translators: +# Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:17-0400\n" -"PO-Revision-Date: 2016-10-28 07:32+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-11-17 22:31+0000\n" +"Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,7 +39,7 @@ msgstr "Excluir" #: links.py:35 #| msgid "View ACLs" msgid "New ACL" -msgstr "" +msgstr "Nova ACL" #: managers.py:85 msgid "Insufficient access." @@ -56,7 +57,7 @@ msgstr "Entradas de acesso" #, python-format #| msgid "mission \"%(permission)s\" granted to %(actor)s for %(object)s." msgid "Permissions \"%(permissions)s\" to role \"%(role)s\" for \"%(object)s\"" -msgstr "" +msgstr "Permissões \"%(permissions)s\" do papel \"%(role)s\" para \"%(object)s\"" #: models.py:64 msgid "None" @@ -77,13 +78,13 @@ msgstr "Visualizar ACLs" #: views.py:78 #, python-format msgid "New access control lists for: %s" -msgstr "" +msgstr "Nova lista de controle de acesso para: %s" #: views.py:109 #, python-format #| msgid "Default ACLs" msgid "Delete ACL: %s" -msgstr "" +msgstr "Apagar ACL: %s" #: views.py:151 #, python-format @@ -92,20 +93,20 @@ msgstr "listas de controle de acesso para: %s" #: views.py:162 msgid "Available permissions" -msgstr "" +msgstr "Permissões disponíveis" #: views.py:163 msgid "Granted permissions" -msgstr "" +msgstr "Permissões outorgadas" #: views.py:222 #, python-format msgid "Role \"%(role)s\" permission's for \"%(object)s\"" -msgstr "" +msgstr "Permissões do papel \"%(role)s\" para \"%(object)s\"" #: views.py:242 msgid "Disabled permissions are inherited from a parent object." -msgstr "" +msgstr "As permissões inativas foram herdadas de um objeto precedente." #~ msgid "New holder" #~ msgstr "New holder" diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.mo index c67de251f2a548274b3d00d4948168a9e6106499..022af94d80b39166aef5493b7d078f21dcbd0f4d 100644 GIT binary patch delta 359 zcmXAjF-yZh7>2J&OtnT75hsTe!9@-(7i}eUDRvPG)s8wyh-V0d1afKDt~!Z?f|I|% z|Dl7wLDa!N;OOG}#TOo)`|iH)?%v!VcmBTVEEuu^cEB}Q1J8i+0UYoNw!k-V!7rd0 ztM$L{!PK`4ufqE7l5dob!b+rwf58wW5w(1&U89PYrEum|73xT6U@ zgt7_sQt0w!K%cX~5@<3w85uT+V{HtNi@Yj}jAyB-3>)gq)|Gzvx(j??sDMiq9w{LY zrR5Ti2wiq delta 294 zcmey&c80C~o)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}-~fcPX3ivaOCAm#+($58%TAPtgd zVua{p2ht#UVIX}Rh-HD89ms#m#K0g1q~8K*0U*u73^vb=K@`XUY0v`FTtM0cNb>+` zdms(e3kEeslTDQ-DT-)H6im5rU}KMyMeAK_X5BPW z4^4XDBZVH?9!pzs;DqFcL=8>iT=)ZKg~X9tFL3A53(vdjI5sUK&Hi@g{d(Sao&34K z=PJW`5&L!QE$lb2KYs`hEDiR6F-SgtfaLc#_zbx3VaA>UUj|(d^yi7d<4dwZ-RG0>Z=DLsqa_840seI{l`J7 z{~1^SzW`qYFM}8ngIxA3Hu;ht&FXn<>VX#Zy1Smk3-wG3;mO+HB59@tIqikk6D`#5 z)7WSU10Or7*l4LFl;Wi@h-Bz<-&4_pFL@=DHt%g41p++LbzEelXI#&BXMMqILRLMc zyf9E~T=*gqEpU`g@{D_mJjM0I3#RqHVOd6@pPL2yNWm}%OcRdAj5y;_-Y!4WC=7D* zsNG+9*Tl-4bX8;&F)QV}5q-s(a8}4D1eGhj5Dvjy-JKIgQMgr@>-caG**70WH9MbQ zSXjtK6z)~T*<2~C=4Bcv^Hu7`5ap`M`>iB-SL{x`bxY)FFSf8 zUeb5;2FIhRx8vpbJh&NO;(ARt<0V{NfLEg(MfWf#e?i;{vhKL=Sf8zCP*ThivCQP@fa7QVouiL!VPz-(_&HJU2PC6SGE5SVu7{~Q#h-$d7cnj{3>;rnBL@%dJH HQp5fQVVuU_ delta 420 zcmYk0&r1S96vxNibu~1CjD*NokU%JN{SndLBnkqFpi|UEwpI4f3XXf}lG>q5bQ!!Q z{Ru@_NZ59*pqTv!>d-m*7y8cDp$DJ$nVC29-ds(bM33Jml^#Jv!7SJZF>nDyJOKqf zgDLO^#=z&_{tFg$DfIg;0*iVAPD+HNU{PO|30Z^a0^XW+t-S;uVzWu(c^GxML>Svx=OO`Q_7Tj-C_E&4S2H*{xr zFA*|@oJQV9&LEv`0eJ`c40#**5_uDuAe~MkUEf=zoBgh=e?Wdm|A>Aa^X3X650P(> zGsshGt}GbaQ_pUH@<71Efph$fAa+!mi=3(>S|~?)JEWeihwAcl%zj z)%7hyR^u3qp|O%ytCXg~*#9SKPw9xxo)-Zd1pE~qlSU#eE#@|*8T5K07O11VIHW?h zl?2iToe5)vl7{RG7>@OAtqvfzteLP~(5@QM7C+{aHa1!vZwGRvEo+&+NZ8t-Z&+7F z)N4QQvULsIqMmJV3lXgb;bRttthz{pYP4Ks!BP;QknO;saC86Bg->Wui<@S!SQmH}(N3xkK?+=R?(A`%&h1;9N4`HC4lCBp z5e)U48uvdNKa1AN=sO(Vrg-H#UpLa4@C^510%^ZK}VcQ zo{W^Hi85B@oNN@7K=ZNGN$@|m>#CTw>dX7rP=bVNkv{Py>()1|Yp~ z;Fq75I(aUmKevI2u93Ndp^24&<>c>-vfKv7x<-ZyMut`f#*^ily7+w(^U_Nb(^IV! YigV(FJtwbVik>XYoWSZ-lv>3A0J$R>qyPW_ 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 4e6ece399a..336dac372c 100644 --- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:17-0400\n" -"PO-Revision-Date: 2016-10-28 07:32+0000\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-11-17 08:58+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" #: apps.py:14 links.py:31 msgid "ACLs" -msgstr "" +msgstr "Pravice" #: apps.py:22 links.py:40 models.py:36 msgid "Permissions" -msgstr "" +msgstr "Pravice" #: apps.py:26 models.py:38 #| msgid "Roles" @@ -42,15 +42,15 @@ msgstr "" #: managers.py:85 msgid "Insufficient access." -msgstr "" +msgstr "Nezadosten dostop" #: models.py:44 msgid "Access entry" -msgstr "" +msgstr "Vstopna točka" #: models.py:45 msgid "Access entries" -msgstr "" +msgstr "Vstopne točke" #: models.py:48 #, python-format @@ -64,15 +64,15 @@ msgstr "Brez" #: permissions.py:7 msgid "Access control lists" -msgstr "" +msgstr "Seznami za nadzor dostopa" #: permissions.py:10 msgid "Edit ACLs" -msgstr "" +msgstr "Uredi dostopne pravice" #: permissions.py:13 msgid "View ACLs" -msgstr "" +msgstr "Preglej dostopne pravice" #: views.py:78 #, python-format @@ -88,7 +88,7 @@ msgstr "" #: views.py:151 #, python-format msgid "Access control lists for: %s" -msgstr "" +msgstr "Dostopne pravice za %s" #: views.py:162 msgid "Available permissions" diff --git a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.mo index 7ac8130dfff5e31016d647136fcdd571afc36d0e..aed8c992d9587d4e6dddb0c340c8eab0ddfa9438 100644 GIT binary patch delta 85 zcmbQhGJ$2nPGdtuT_a-!10yR_BV7X%0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPGhIUi oT_Xzx19K~5qls_2C$}?3@%tp^rI#kA167n|#)tV$e!yq|0RGS!djJ3c delta 85 zcmbQhGJ$2nPGbWTT_bY^LlY|lOI-sK0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPGhG8? oT_ZyUBSR|#|JNr$(z_bkjBY6`H delta 63 zcmZo;Z)4xEo{`(YMAyh%!O+CYz;f~~Mp=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"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:11 msgid "Appearance" @@ -45,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -229,9 +227,7 @@ msgstr "First time login" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"You have just finished installing Mayan EDMS, " -"congratulations!" +msgstr "You have just finished installing Mayan EDMS, congratulations!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -256,9 +252,7 @@ msgstr "Password: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Be sure to change the password to increase security and to disable this " -"message." +msgstr "Be sure to change the password to increase security and to disable this message." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.mo index 1dd64db8a5e9dd3ae96e7e928f505dd8bd3da772..34c948f58e5faec292720230e7083e8c7e6eb305 100644 GIT binary patch delta 45 zcmX>gctCK25ev7Wp{|j!f`O5hsnKLxmL-$lu|)CsB<7`;CZ?xaDI}$Dc4w_*1^_gn B4bT7p delta 45 zcmX>gctCK25ev70iLQ~kf}x3(f#qadmL)tsiFxUziRr0U3Q6gcAFxDk_F%1G1^_OJ B4bA`n diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po index aec68f64fb..63259b1e47 100644 --- a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -228,8 +227,7 @@ msgstr "Логване за първи път" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"Вие приключихте инсталирането на Mayan EDMS, поздравления!" +msgstr "Вие приключихте инсталирането на Mayan EDMS, поздравления!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -254,9 +252,7 @@ msgstr "Парола: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Моля променете паролата, за да повишите нивото на сигурност и да " -"деактивирате това съобщение." +msgstr "Моля променете паролата, за да повишите нивото на сигурност и да деактивирате това съобщение." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.mo index fe22e67cb469e0f168763d5a19dcbf4276265b25..8c10fab49a65957031360465bed8777bc4428d36 100644 GIT binary patch delta 48 zcmaDU^ipVp2`jgup{|j!f`O5hsnKM6)_s$C*`oM;67$ka6Vp?z6q1VLog6o(u`x3P E0A3*u00000 delta 48 zcmaDU^ipVp2`jgOiLQ~kf}x3(f#qa-)_wdwiFxUziRr0U3Q5KBPL7lRutslAXJcXp E0Bj--`Tzg` 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 de90dd9303..7121197157 100644 --- a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:11 msgid "Appearance" @@ -45,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -229,8 +227,7 @@ msgstr "Prijava - prvi put" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"Upravo ste završili instalaciju Mayan EDMS, čestitamo!" +msgstr "Upravo ste završili instalaciju Mayan EDMS, čestitamo!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -255,9 +252,7 @@ msgstr "Pasvord: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Ne zaboravite promijeniti pasvord da pojačate sigurnost i onemogućite dalje " -"prikazivanje ove poruke." +msgstr "Ne zaboravite promijeniti pasvord da pojačate sigurnost i onemogućite dalje prikazivanje ove poruke." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.mo index afa20c7a594e7f5d96e7c8f243441cd363ab0efd..177a1872ad647ef33291e9d258dad26b64e7c0e4 100644 GIT binary patch delta 44 zcmdnMx`B0rB_p??p{|j!f`O5hsnKK?#)XqVF-GzDB<7`;CZ?xaDWoJ$_GU^203Emu AWB>pF delta 44 zcmdnMx`B0rB_p?iiLQ~kf}x3(f#qZu#)UjSiFxUziRr0U3Mq+`pD;#G_F+l^02hS~ AVgLXD diff --git a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po index 7ace77c320..96cb58ceb2 100644 --- a/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:17-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.mo index 53585f1273b0af234c906e288ceaa13e80652ffb..8e2fa89b1388d8a633421c17d82bacad08ae9a96 100644 GIT binary patch delta 48 zcmbQLJXLvvF&DR?p{|j!f`O5hsnKLRt^;MQdW E095A=vH$=8 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 c4f9c7e9fc..3af714c734 100644 --- a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -45,19 +44,15 @@ msgstr "Serverfehler" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren " -"gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Es kam zu einem Fehler. Der Fehler wurde per E-Mail and die Administratoren gemeldet und sollte bald behoben werden. Vielen Dank für Ihre Geduld." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" -"Wenn Sie Hilfe brauchen, können Sie den Fehler über folgende Kennung " -"referenzieren: " +msgstr "Wenn Sie Hilfe brauchen, können Sie den Fehler über folgende Kennung referenzieren: " #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -185,9 +180,7 @@ msgstr "Kein Ergebnis" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von " -"%(total_pages)s)" +msgstr "Gesamt (%(start)s - %(end)s von %(total)s) (Seite %(page_number)s von %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -235,9 +228,7 @@ msgstr "Erstanmeldung" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"Herzlichen Glückwunsch! Sie haben die Installation von Mayan EDMS erfolgreich abgeschlossen. " +msgstr "Herzlichen Glückwunsch! Sie haben die Installation von Mayan EDMS erfolgreich abgeschlossen. " #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -262,9 +253,7 @@ msgstr "Passwort: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Bitte ändern Sie das Passwort, um die Sicherheit zu erhöhen und diese " -"Nachricht zu deaktivieren." +msgstr "Bitte ändern Sie das Passwort, um die Sicherheit zu erhöhen und diese Nachricht zu deaktivieren." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.mo index 3a664af1881d6b466b6c591a63a65a978dcd2e6d..21eaaf8a16f9acc1b4baa8fa1e5f6db91cbca6d9 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|(ZuPG0Z_mPLI3~& delta 21 ccmeyx^owai54VAdu93Ndp^24&<;3Za0Z|$UO#lD@ diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po index bf5ff19193..48ee2e6dd8 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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-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.mo b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.mo index fea7e49fb736811cf417107a03022be39b2f13bb..4a86c3f7e34b1f77549c2cb2716cf8be54bb0417 100644 GIT binary patch delta 1554 zcmY+^L1-LR9LMpO8jVRzjjg8EHpxqCldkP)yd}Jdd03I`*-?xj{!0e1+QCw>W{fa1Z{~8Q;bB>6!_A087Zn9O6*M zqxc9mP`^8me9VU&-o;C(4Udt&hp>zNC3>1=bapf+%K+&}Ox?5r<4^&qi->CEtA>H%s$!9^^xj zOBP(ooJtoLV`t}lS`X9LlhxOHE_d~p%f-q8J5`yTsa)LIJKSHMDpsDhQ%}uKmsjU{ zSGrrz2euYeqcF9Njjf+_oU>8FDoX()fsNDbKRXUn?=l;@Sho_Tc6n`OWA{zYSDn|H zh17eu82QXuGE?<#*_G^bK3Ir?%#sqDHSB1euk1exO6EwMJD&ue8M1op7K3W+R(~4^ GyZ!;-qR$ur delta 1204 zcmXxjPe>GD7{~Evb@I>dnx_5PGHtd}*KFI_ZI)a+bP)ohROpWfHDM!2s6dGRKx~IV zh=d}7C@K`X)y1U_*(Ex32m)bmMnQ)l5TQ#@1l#vFO%Lz;er9K9=6&DinORI$I!m8h zo%=@k^zHOF5wpWMUdupSam?1?RjkJnHsCBa;vJ0QLma_pco2VLC+4`h4o6Y9SbV-aic z7Dk!h<~Yy;9-vnC7<=$Jc3~y_|2NXC$`Hpowxb=jF=VkFH{ns#bw#AvG{Xj*!IO9s zwSg6kGrz5J(2c*4W-j@aDO43a%%hLPIE^%W%`iu~-l29l%Jy~sROnRbIi%SP!z5nE zLHvZJUJjDvOE(@t)$}-S#z{PcmrxVDMD1`1x8X9j;womain=aCdX)M+>Uqad85zSS zJdHFvA1D8s=o-IN%e$xt&7*3xj7nVvm630#1+3v7ba>ic%%J`sM@@JJb>9Wl#5b^j zv*_a6@ch>%@~<1eb3$+H4?KY_ya=k%S=@-1QSZWSRHhb@&Ds*GMDKAwe!wBDq82j5 zuBcED%8cex?56AbgzB&0`rz}^aXVe_gEFJl>(f+dLM>7+n@9g2T96i-4o@h9Dvv^6 z(pLHo{UB2G9(s=M(o4JpK`5Mayan EDMS, " "congratulations!" -msgstr "" -"You have just finished installing Mayan EDMS, " -"congratulations!" +msgstr "You have just finished installing Mayan EDMS, congratulations!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.mo index 643903eb904406bfa2b041201adcba17ad268747..529f22eb4428b5cc6f186b3a34de4f6e2db19350 100644 GIT binary patch delta 45 zcmaE*{7QL)F&DR?p{|j!f`O5hsnKLRt|OEAxubY|67$ka6Vp?z6w-<|XK**M0RTM$ B4d4I( delta 45 zcmaE*{7QL)F&DRiiLQ~kf}x3(f#qa7t|L4?iFxUziRr0U3TZ`?8M&i3XL2{P0RTcC B4c-6% diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index 45dfc81057..229486e259 100644 --- a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:11 @@ -45,20 +44,15 @@ msgstr "Erreur du serveur" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Une erreur vient de se produire. Elle a été signalée aux administrateurs du " -"site par courriel et devrait être résolue rapidement. Merci de votre " -"patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Une erreur vient de se produire. Elle a été signalée aux administrateurs du site par courriel et devrait être résolue rapidement. Merci de votre patience." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" -"Si vous avez besoin d'assistance, vous pouvez faire référence à cette erreur " -"grâce à l'identifiant suivant :" +msgstr "Si vous avez besoin d'assistance, vous pouvez faire référence à cette erreur grâce à l'identifiant suivant :" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -186,9 +180,7 @@ msgstr "Pas de résultats" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Total (%(start)s - %(end)s surof %(total)s) (Page %(page_number)s sur " -"%(total_pages)s)" +msgstr "Total (%(start)s - %(end)s surof %(total)s) (Page %(page_number)s sur %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -210,9 +202,7 @@ msgstr "Démarrage" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" -"Avant d'utiliser pleinement Mayan EDMS, les éléments suivants sont " -"nécessaires :" +msgstr "Avant d'utiliser pleinement Mayan EDMS, les éléments suivants sont nécessaires :" #: templates/appearance/home.html:57 msgid "Space separated terms" @@ -238,14 +228,11 @@ msgstr "Première connexion" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"Vous venez de finaliser l'installation de Mayan EDMS, " -"félicitations!" +msgstr "Vous venez de finaliser l'installation de Mayan EDMS, félicitations!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" -"Connectez-vous en utilisant les informations d'identification suivantes :" +msgstr "Connectez-vous en utilisant les informations d'identification suivantes :" #: templates/appearance/login.html:26 #, python-format @@ -266,9 +253,7 @@ msgstr "Mot de passe : %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Assurez-vous de modifier votre mot de passe pour accroître la sécurité et " -"pour ne plus avoir ce message." +msgstr "Assurez-vous de modifier votre mot de passe pour accroître la sécurité et pour ne plus avoir ce message." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.mo index 924b0804c3c697618a177a8fec66ad9dc3e30977..7a32ce29ecefd4c976e373aa051d1dbb35ad3afd 100644 GIT binary patch delta 44 zcmeyw`iXTz03)}dp{|j!f`O5hsnO(U#wC+^n4)-m67$ka6Vp?z6f#ODr!w^d04UrI AjsO4v delta 44 zcmeyw`iXTz03)}7iLQ~kf}x3(f#u|A#w9#HiFxUziRr0U3K^x7|1m~SPGjl;05zlz AivR!s diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index a2829dc700..06fbd23627 100644 --- a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.mo index b7f21aad49494e9f22fe4bd9eb65addd6ea83f6a..75374861db57e9616e228978d02e493f99d79685 100644 GIT binary patch delta 42 ycmbQoGLL1#A#OuMT_a-!10yR_qlssiPOfK+;_*q$OD|1KPqk9WOqqOx(G3730S+<% delta 42 ycmbQoGLL1#A#MW`T_bY^LlY|l%ZX=~^7tg?rI#kAr&=jwrc5qmjGlax(G>tAx(+Y^ diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index 7853356a02..3c79b46fc8 100644 --- a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:11 @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.mo index 7148938f78da11e50e07d18c1ec7891ba9282ffc..236150fbbc5cde6f0f731158bc1e78d6815a81f0 100644 GIT binary patch literal 4341 zcmb7`O^h5z6~`+OlCXgg0{MUhC?~9U7w^n|*iM{TJ7#UKlLar??2e5rft;G2nwc`) zRYOB0z!zNF4GZgb-Xn$^i~Jzy%=%4hV&uK#GLqTaH2eUia+o*dSzD z)AQ@m3kliCA=N}8r}ha3*Qfa z4=3Ooa2@^)F2N>)J_#?w+u*mLjDG>%1%Ch!!B*hRcn#hSZ)5NQct7Np zdK}9Alkh`u9r8-`EEGE|+<-%PCwv_~0RISO{M+y#yawL`@5Lw?_W+c69)V)tG@OEu z!AW=t%JXkPhN^GF55N~8KlNk&7U0Y9UicR%{jNcN>K*>R3Ezcc_t$aahvE0&1^6TFv8LHldKP86$fHKbuI6=n$2+H%9M(v-E z_$&Bj?*9f>8eq_;XtyC#r~=BkufdPO=inju6Da=p1C;f?0maX6!;ivSK3K=?J}7=T z26=@#31z;|LmA(O;_r*_890DUpxoe}>9U!;9ILF3ixhfv=03Oo;AgEHUU z7{jG{7|y^&DD!*?R=R{@_YfX|5uSptLh=ija zU89;??3bg#DKQY8h%K@YMFX;rBnEOwEFa_)ABm1+O^x!phg5fRbaHoO7Jwhj~uX+rymWhiLILoDxg%tN2*-pq4wK zEYxyRxZtB&?rs^M*sfak!S7_D zDwj~_5$t30rJGx}}n%SYfa%OF_ zdg!fX7T(nhX&Sbj@3+*c(xqMP%dBJbmY$sMNc&RVo{8$TSe&ZU!S`IA?NWDbY70wq zxRbm7pwI^sE|>J;{K7(mzoU91Fd<9X2+`y&G}UQV#E>)9NO@D}T((Iu6HjulFfNUl zRhh8+K&^CLG2T{j)ZRN&HJU%zNqgL`fUc`9U9t#++1T+i8Dt@idEL>wIbSodsoGc!9nw>_I%Zq=T*@)o`2%=O;X zZg0kxTJoOMM~m!<1O2 zMdZ?3wNCuC4+X9(eV1mfp>Y@O>T29e8w3G)bv1)*UcGa9XcCmM*qqnrTw;B+YSV1- zhia1n$hYWOEnIE7zDJ{KGvxWstnQTfnz6b4YH1_xMa!6#gi@4+aUD?{uWG7I-Xf|V zvK6FbfiI%kEIXMiK$0M7)gIvMsmL(v5q|yBrd};}@8xzFB#g3Eb-s{WTtHdRlYJivp_v+6Vz&F=2U{dBWu$1F1NeWohY zYPxtpiA)^2R_l3?4A5BZHb&OA#xmB#Miu48TI{=S<5by?jdp11iS?)3jVhP0y2cq) z)RL_8XhRauVLiXtI=a}HKQcd0$Hs=;a^i*Ye)Eqv7LVwK`PSj1hvqpZ&Y4&=+N9=) ziIRcVP<+s*O*Tv|N%VLo?PfA+H?!okebH4j3E2~j_WhE`HQLr>EktTkhi0b-MKNs6 z&24XQH<6@|u4k{vh`GE@i1{3O#rTHpW^pbZO)}?-xtWQz)wPvJpapHXYY~$E|KY1e=tFhvf&?Q7IeXQe(J!4y%#(G-jCT*N0 zOU0JSoiEH3H#^2D^)2TtgPnWc%{WOfx_I<;Iut7VGZRa{n8IhVmWB+mx5;SvfN z@zz~OManwPP@Yn=U*k}hHf6?|Mo*%n(Ale3jkXM;$hp*2&#IIXMzyXlg=9TqLrDKo>XyBya5808{UtjYQk-B8}8{DMp z>Sqb;ECo~#%iwg5cyqR_HhL6}st$(v(ffTB1pR`d6=9MGbwpYPy?% zV?eSJ;8e;U0^F~JRKRo#71%s6^_KIVT@<0IpUg3cZ&J2twJI98rrG2( zHfLAwmPB$Sdt28fu?~4vyzGB3ibQ*_sMQ5g;&)?7-0yWmNhI~{4VQ1m!mxF8DVfot z6h8Lq>zk{LRxK9{t*zd4@;z1U1vI~_T3NpB^>|Y$nWoadsY_!ujE`DLK73{(+yk@v ZDKd`KM;yr_Mg>wv{*MBwcC`}JzX9xln^FJ( delta 926 zcmY+BO=wd=5XUFlw8={vYqV;r#1|ppS7;K`79%P_FU1n7sUOhOCfTM>lee;OQ>d4K z2R(=fS-goSJyK>~rsw-d8qUcE1SH@jYeZNf&u_mb@g>J3dmt&QwezWHp zx*kaFwxtnXH=r9*2PkB(#?RT!_{~JIQYg>4rAoDU)?RS3#WRI+$t{vA>*U+fJOG4Ewr=YMwjn%j+o{ zB&ScJExHUnovx?cyAnzB$5r#TY?%`Q{q3~H, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-09-24 10:35+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 msgid "Appearance" -msgstr "" +msgstr "Aspetto" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" @@ -40,23 +40,23 @@ msgstr "Scusa ma la pagina richiesta non è disponibile" #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" -msgstr "" +msgstr "Errore del server" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "C'è stato un errore. Questo è stato riportato all'amministratore del sito via e-mail e dovrebbe essere risolto presto. Grazie per la pazienza.." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" +msgstr "Se hai bisogno di assistenza, ti puoi riferire a questo errore con questo numero:" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "About" +msgstr "Informazioni" #: templates/appearance/about.html:62 msgid "Version" @@ -65,19 +65,19 @@ msgstr "Versione" #: templates/appearance/about.html:64 #, python-format msgid "Build number: %(build_number)s" -msgstr "" +msgstr "Build numbero: %(build_number)s" #: templates/appearance/about.html:88 msgid "Released under the Apache 2.0 License" -msgstr "" +msgstr "Rilasciato sotto la licenza Apache 2.0" #: templates/appearance/about.html:100 msgid "Copyright © 2011-2015 Roberto Rosario." -msgstr "" +msgstr "Copyright © 2011-2015 Roberto Rosario." #: templates/appearance/base.html:43 msgid "Toggle navigation" -msgstr "" +msgstr "Cambia navigazione" #: templates/appearance/base.html:72 msgid "Anonymous" @@ -89,19 +89,19 @@ msgstr "Dettagli utente" #: templates/appearance/base.html:87 msgid "Success" -msgstr "" +msgstr "Riuscito" #: templates/appearance/base.html:87 msgid "Information" -msgstr "" +msgstr "Informazione" #: templates/appearance/base.html:87 msgid "Warning" -msgstr "" +msgstr "Attenzione" #: templates/appearance/base.html:87 msgid "Error" -msgstr "" +msgstr "Errore" #: templates/appearance/base.html:116 msgid "Actions" @@ -109,7 +109,7 @@ msgstr "Azioni " #: templates/appearance/base.html:117 msgid "Toggle Dropdown" -msgstr "" +msgstr "Apri dropdown" #: templates/appearance/calculate_form_title.html:7 #, python-format @@ -119,7 +119,7 @@ msgstr "Detaglio per: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format msgid "Edit: %(object)s" -msgstr "" +msgstr "Modifica: %(object)s" #: templates/appearance/calculate_form_title.html:12 msgid "Create" @@ -137,7 +137,7 @@ msgstr "Conferma la cancellazione" #: templates/appearance/generic_confirm.html:27 #, python-format msgid "Delete: %(object)s?" -msgstr "" +msgstr "Cancella: %(object)s?" #: templates/appearance/generic_confirm.html:47 msgid "Yes" @@ -163,7 +163,7 @@ msgstr "Salva" #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "Presentare" +msgstr "Conferma" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 @@ -173,20 +173,20 @@ msgstr "Annullare" #: templates/appearance/generic_list_horizontal.html:21 #: templates/appearance/generic_list_subtemplate.html:108 msgid "No results" -msgstr "" +msgstr "Nessun risultato" #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" +msgstr "Totale (%(start)s - %(end)s di %(total)s) (Pagina %(page_number)s di %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 #, python-format msgid "Total: %(total)s" -msgstr "" +msgstr "Totale: %(total)s" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" @@ -194,19 +194,19 @@ msgstr "Identificatore" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "" +msgstr "Home" #: templates/appearance/home.html:21 msgid "Getting started" -msgstr "" +msgstr "Iniziare" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" +msgstr "Prima di usare completamente Mayan EDMS hai bisogno di:" #: templates/appearance/home.html:57 msgid "Space separated terms" -msgstr "" +msgstr "Parole separate da spazi" #: templates/appearance/home.html:59 msgid "Search" @@ -214,7 +214,7 @@ msgstr "Cerca" #: templates/appearance/home.html:60 msgid "Advanced" -msgstr "" +msgstr "Avanzato" #: templates/appearance/login.html:10 msgid "Login" @@ -222,42 +222,42 @@ msgstr "Login" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "" +msgstr "Primo login" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" +msgstr "Complimenti!, Hai finito di installare Mayan EDMS" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" -msgstr "" +msgstr "Accedi con le seguenti credenziali:" #: templates/appearance/login.html:26 #, python-format msgid "Username: %(account)s" -msgstr "" +msgstr "Nome utente: %(account)s" #: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "Email: %(email)s" #: templates/appearance/login.html:28 #, python-format msgid "Password: %(password)s" -msgstr "" +msgstr "Password: %(password)s" #: templates/appearance/login.html:29 msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" +msgstr "Ricordati di cambiare la password per aumentare la sicurezza e disabilitare questo messaggio." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" -msgstr "" +msgstr "Accedi" #: templatetags/appearance_tags.py:16 msgid "None" diff --git a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.mo index fcdee11935edd1054b72b665a58eb1d6886520ed..aa2466015269383e0f8743d5aaabfb9886ef49cb 100644 GIT binary patch delta 48 zcmaE?^jK+wF&DR?p{|j!f`O5hsnKLRuJe;+xuf`f67$ka6Vp?z6!LQ7{d_i;ald5+ E0BK+kUjP6A delta 48 zcmaE?^jK+wF&DRiiLQ~kf}x3(f#qa7uJimpiFxUziRr0U3VAv4em;|VxT80hbH8B) E0B(p6S^xk5 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 4f88b21e6e..273d18e733 100644 --- a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Justin Albstbstmeijer , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Justin Albstbstmeijer \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -45,20 +44,15 @@ msgstr "Server fout" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Er heeft een fout plaatsgevonden. Dit is gerapporteerd via email aan de " -"beheerders van deze site en zou snel verholpen moeten worden. Bedankt voor " -"uw geduld." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Er heeft een fout plaatsgevonden. Dit is gerapporteerd via email aan de beheerders van deze site en zou snel verholpen moeten worden. Bedankt voor uw geduld." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" -"Als u hulp nodig heeft, kunt u naar deze fout refereren via de volgende " -"identifier:" +msgstr "Als u hulp nodig heeft, kunt u naar deze fout refereren via de volgende identifier:" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -186,9 +180,7 @@ msgstr "Geen resultaten" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Totaal (%(start)s - %(end)s van %(total)s) (Pagina %(page_number)s van " -"%(total_pages)s)" +msgstr "Totaal (%(start)s - %(end)s van %(total)s) (Pagina %(page_number)s van %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -210,9 +202,7 @@ msgstr "Beginnen" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" -"Voordat u volledig gebruik kunt maken van Mayan EDMS heeft u het volgende " -"nodig:" +msgstr "Voordat u volledig gebruik kunt maken van Mayan EDMS heeft u het volgende nodig:" #: templates/appearance/home.html:57 msgid "Space separated terms" @@ -238,8 +228,7 @@ msgstr "Eerste aanmelding" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"U heeft de installatie volbracht Mayan EDMS, gefeliciteerd!" +msgstr "U heeft de installatie volbracht Mayan EDMS, gefeliciteerd!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -264,9 +253,7 @@ msgstr "Wachtwoord: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Pas het wachtwoord aan om de beveiliging te verbeteren en om deze melding " -"uit te schakelen." +msgstr "Pas het wachtwoord aan om de beveiliging te verbeteren en om deze melding uit te schakelen." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.mo index 85da255e2f5b7e0cde69870af6d736ccff88a3be..692170a67308d87bc07a9f7c5ef90f7620141055 100644 GIT binary patch delta 499 zcmXZXze~eV5Ww*(t*ItW{Q)jkrCRDDLX%q14jsfX2nsHOLx-9{DGqiJhbXADI7!gO zP3R&HN(KK2aT8r!GYD=@B1ON4g~$8cyX5Y@JIl3lcQ3IZiit!6BBqEuSt5P-iYa_Y zKFJ3r@e9}S2j_8>pC<7X4Q!+Kxy4a@LwkOsq%D%+JYh>9BLs^irqDxeR7cG> zkQ!;?AYLF#+H5{{P%q4+X@)bX4_?L+u3#LGQR|wRz)REzUZn$(Ji$E)^$qm_-JS_< zB@_#Ff-x-PH0lJKz5G6E-4TY^M6DYi`X6K#*Em;@CFg9zc)dVSAb3D+5TQ=|iTd(y z)JeMNVUenSJnXdMH-_anb8azPaLXk(te8vjz1ntoVjhIHwUP3wb-z*dYvt_jPG`%? F8-M;)Iz0dY delta 501 zcmXZXze@sP7{Kx8Ft5Dx><2VeW@ykNXq;3A5e-ceQ8YD#$Z-V`F5%!HBt+VHLoIEA z&=7$X^hZQXLoIFL5VSRg*!Mx3iy(8Lz%Irlh;&zQwm)Oy3|=OZ}9e%6tiOc1P+n8Pj9gUYD+ z3Q{Xg9K|bSNsE_{kEj>U#CUK4wc$<7;Wmcw9JQ{ALwJqa;7zP1GEdMZp?;t?&>LuS zE1@{36HH?sQ>YUh4Dwafx;h5fM6HXD^#@7g4*PXvNx*9yZBXf)*3D;Df;DR+Tsrbfhe6${MhnFg|Fr0P`9%3R=vw=2 H&rX^Dc#}I_ diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po index bdc8f3a17c..cd6198e81a 100644 --- a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po @@ -1,25 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: -# Wojciech Warczakowski , 2016 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:11 msgid "Appearance" @@ -47,19 +45,15 @@ msgstr "Błąd serwera" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Wystąpił błąd. Wiadomość o tym została przekazana do administratorów i " -"wkrótce problem zostanie rozwiązany. Dziękujemy za cierpliwość." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Wystąpił błąd. Wiadomość o tym została przekazana do administratorów i wkrótce problem zostanie rozwiązany. Dziękujemy za cierpliwość." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" -"Jeśli potrzebujesz pomocy, możesz odwołać się do tego błędu poprzez " -"następujący identyfikator:" +msgstr "Jeśli potrzebujesz pomocy, możesz odwołać się do tego błędu poprzez następujący identyfikator:" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -187,9 +181,7 @@ msgstr "Brak wyników" msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" -"Razem (%(start)s - %(end)s z %(total)s) (Strona %(page_number)s z " -"%(total_pages)s)" +msgstr "Razem (%(start)s - %(end)s z %(total)s) (Strona %(page_number)s z %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 @@ -262,9 +254,7 @@ msgstr "Hasło: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Aby poprawić bezpieczeństwo i usunąć ten komunikat, nie zapomnij zmienić " -"hasła." +msgstr "Aby poprawić bezpieczeństwo i usunąć ten komunikat, nie zapomnij zmienić hasła." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.mo index 9327dbb050dc10fb592ce6f6e1f101e18d99d6ef..ae5be274c101d565eb23db2a6953af1bc2447434 100644 GIT binary patch delta 44 zcmdlXutQ+Ob{1|!LtP_d1p^~1Q=`d;Se8yMVU6PUNz6+xO-xU?u; B4&VR) diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index b319c95c5a..f78cdfeeae 100644 --- a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:11 @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -253,9 +252,7 @@ msgstr "Senha: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Certifique-se de que altera a senha para aumentar a segurança e que desativa " -"esta mensagem." +msgstr "Certifique-se de que altera a senha para aumentar a segurança e que desativa esta mensagem." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.mo index e58c0fc5ea9dbfe3655c39147352048be4a370c0..000377ce15a485075ec7c08ab7f2f21432b9a9de 100644 GIT binary patch literal 4467 zcma)-prV2rQBfiI5J;4S1O!Be?mxXjsb%=+b^LJs^m?V<1b+tK41WRN0$+eP!r#Cd z_y@QO{|b-8CWAf*FT)$)*Px95HoOTw2JeDTPrm;VzKi!4;Xe2>ycyoW;M?IoNR#>~ zl=jo`9dH%0r1~_JeOR~#hw!a%1aE`Chcf;j@F08{z7gKarexf0Q0BP<%Km2IA$SZP zfR~_r{|aQN`Z|0Y{0`(#J+GZTISifPv1z3?J@2tEoKs{R6hi4Fe_Mc&6zf{gzWq)Gi4O26l! z$o&HR6#Okb1rM_L9JEmSeGAIC$Dr8fNhtlEhcf>w@ZIn~@V)Tnw<~oEyc2#Ho`lIh za6j)B%6wmhvafGI{?vE*8NeqXQ>ht@Abzk9ioRM<>~I>&d=`qnE<@4t=b-fe68s4K z0hIM$n0)^m6nXv$W!%3e?bk8+N#1AR`{4ah=F6b$?=t)X3{dR)ZzyqcBa>W!2cgXO zd45C>--NR6lTgP08j3u>gJQQA;R*N>T!H&>0?~(qm@WAbNHWgK1DEVu))x8XI?OG$ zkV|BhOMF@UT&@PU>_yfSTS^?tUL=k%bGpPQEt((Tz8L=baL0^S@y}c zlij6B{6}Qd+zZ@t-NB6s_gttt>GT6obl2o=ao@u|&;228(b@EMjF&sP4{@XN6f5t6 zYOzz+m0HXySNf>9>lqrfE2|CP=F~V|A>9)m5ppf$@Ew238MEj91Fg zm1gI&U`?c-&FbK)Ep2@I&~?#tav9*FE^LgZZ<|cmE17SrtaWC*?$vp|rE7+-m@VFy z&aJGckKS5lVXa=7=j9dW`)zfmc6nF(y6D)@)(2)g@_uRjJ{Q$l*>SGUmcHjgu}$5z zxvea(!>!=@gGwLFcs#Bb=8qg{@N=(TE13{c*2-vtE1T*p5;5dl8YwH4oy#_>=HhAE zD&z9Vw$c{1Kd7aytEPLZrGkEKeIiz&^!-x@X00^L#S^Vbi&_ey4C=fKvC@?*tj^26 z^XlWast{Ml%7hBL++P+}EqAT2T+i8{mV3Jj!VZpp$bC397G_Ha+q1#aG}gS8RrIDa zd$p=CCh;t)K?y4Q1=V?jN%p>V7rj`Bd-UHZjfvco;*(YQgH(&VwN9xVA| zE3wY2$fLJv75i&nR;aG_U0%mNG_9g-zna$48b-jqx|%^Yq%{|ZCc`rpn)CVrmsuaJ zS~r{g;I-KRgiU%T!PUC!dwf)_mmzE&)}0z%Gd9@I);6MEe3@-!Wi6h?<~rhWEY(!& ztRh}LBow4$g)X96uRDdSK$hXsYGZ(|4@HJqkK>OQZR+J}yDivZDQ1*Vk%gnHtTx@k zc?`$IWr)c*wju73VkZvLZe%C!DkFIhRle2K8${q|lIw}F16!}KQbts5l>I)Tb}p2| zZh6ITzk9Rk`eUAJj}n1sl-yF{rAf$U8kPEAt_iB1D0zSeok!|C7oXjZ$K7FLmQ2h zOOUQ{4lim;);Zdc#B;ZvUufUE(3rnxex8nvHM{9V3$N*SHsQ79|5MB9ztVgLRdO`h=0!kEP$OFk>Rn5(Vt z>$qxX?`@sdnpw^3VDiR!l2&YMKTNOj1SJ?C9fQtV6^J?k@P)LE(kIhM@OKrLP3G$-gy(1tYN2Zn$PMw_}orb%m` zjmV5ziXtDoHsU**d?mXW%AS|9S2S6#vQg$lot6PIX-&DA@*=%iW}|2IFxZUJiTAT= zzjh2HpN@W2*icR;7`ogb(GT&l|4{`^*sg!mPkQNUme-Mi1a7w^bl4L9?J6Ef)+A0N z&9A3IIwnrjxjlt&Tp{xT!iqxnmPBf#+0$DsrL;GlAFf#@i9ZUYLjlf@ev-MQh)4n! zQI3nCH>Tsib^FcTjXp;uDI(mYGgVA0VqaYAHm;%4Gn*u1mwm%NkaiP3+{YB!P`YE+{qP5qS-`#Hir~JzCGzA~qu46rVg7YlL zuh&(A#l`qifm$$?OkDgPL3JM}o$u^VYCRpS%_&B$s->;M1& delta 1218 zcmYk)%Wq6k9Ki9@>hv)~Tkp4Cv`8p3^@_ZyqA6s1y_!zSE}Ew~*AuooNgM(z16Y^8m_*8dde(td&M_#T(y_do5b zN;fFQr4~}9F~E7a8fD>KxB~a0?CAu`dkJ!>DwQmF9#^8rE_{Yu>I;=@@EhjvC(gzW zCT~<#PRq?yItnNY^`e|~9NDBgg_4o8xE~*5GuAWfO|q3iy3_*($+$;U^86_t!k4x7 zB042=T{sihVT$$DPHyI7FV4UcF2j>3C%cYvf_pd(AEKo6Im*KCunRw;oVbovBtwlT z+=u1b z^JhqcCSxJBd{zk=E78XKfA0RPWh1gniRlzsu!AC*_#3jQglt|uorHYT#T3?@%;pl5 zAB{avhNN76aES~>e#Uy$uheqssYQU2Qc0tPWI;|Y>6X;X=aE#Z;;^kGs#r>ljhre* zHacCl73V)S4El?yj#R9}MEjqqzF@bBT@oawtb;K-Y9h7AmbK~~(NSWK86Eq#jj#OO zrhebrQt*QMW7&3tiGZ6o-);3lkgX zgF!p2+t@`9-ep~Cx`4P`l ztX*X+VT4otIyzn{tAWs8XgxBMW2uAT*vU|)awjUrg}$Y&u)?lYLriU5FrowP#>0ub gHgI}8jG06otPGcRLaHve7yXC!tIhh988tlk4O?Qm>;M1& 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 1d328d34e7..8255aa7b29 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-11-17 22:36+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:11 msgid "Appearance" -msgstr "" +msgstr "Aparência" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" @@ -32,27 +32,27 @@ msgstr "Você não tem permissões suficientes para essa operação." #: templates/404.html:5 templates/404.html.py:9 msgid "Page not found" -msgstr "Pagina não encontrada" +msgstr "Página não encontrada" #: templates/404.html:11 msgid "Sorry, but the requested page could not be found." -msgstr "Desculpe, mas a página solicitada não pôde ser encontrado." +msgstr "Desculpe, mas a página solicitada não pôde ser encontrada." #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" -msgstr "" +msgstr "Erro de servidor" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Houve um erro. Os administradores da página foram informados por e-mail e deverão corrigir em breve. Obrigado pela paciência." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" +msgstr "Se você precisar de ajuda, você pode fazer referência a este erro através do seguinte identificador:" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" @@ -65,19 +65,19 @@ msgstr "Versão" #: templates/appearance/about.html:64 #, python-format msgid "Build number: %(build_number)s" -msgstr "" +msgstr "Número de compilação: %(build_number)s" #: templates/appearance/about.html:88 msgid "Released under the Apache 2.0 License" -msgstr "Lançado sob a licença Apache 2.0 14" +msgstr "Lançado sob a licença Apache 2.0" #: templates/appearance/about.html:100 msgid "Copyright © 2011-2015 Roberto Rosario." -msgstr "" +msgstr "Todos os direitos reservados © 2011-2015 Roberto Rosario." #: templates/appearance/base.html:43 msgid "Toggle navigation" -msgstr "" +msgstr "Ativar/desativar navegação" #: templates/appearance/base.html:72 msgid "Anonymous" @@ -89,19 +89,19 @@ msgstr "Detalhes do usuário" #: templates/appearance/base.html:87 msgid "Success" -msgstr "" +msgstr "Sucesso" #: templates/appearance/base.html:87 msgid "Information" -msgstr "" +msgstr "Informação" #: templates/appearance/base.html:87 msgid "Warning" -msgstr "" +msgstr "Advertência" #: templates/appearance/base.html:87 msgid "Error" -msgstr "" +msgstr "Erro" #: templates/appearance/base.html:116 msgid "Actions" @@ -109,7 +109,7 @@ msgstr "Ações" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" -msgstr "" +msgstr "Mostrar/esconder menu" #: templates/appearance/calculate_form_title.html:7 #, python-format @@ -137,7 +137,7 @@ msgstr "Confirmar Exclusão" #: templates/appearance/generic_confirm.html:27 #, python-format msgid "Delete: %(object)s?" -msgstr "" +msgstr "Excluir: %(object)s?" #: templates/appearance/generic_confirm.html:47 msgid "Yes" @@ -145,14 +145,14 @@ msgstr "Sim" #: templates/appearance/generic_confirm.html:49 msgid "No" -msgstr "não" +msgstr "Não" #: templates/appearance/generic_form_instance.html:39 #: templates/appearance/generic_form_instance.html:46 #: templates/appearance/generic_form_subtemplate.html:51 #: templates/appearance/generic_multiform_subtemplate.html:43 msgid "required" -msgstr "exigido" +msgstr "requerido" #: templates/appearance/generic_form_subtemplate.html:71 #: templates/appearance/generic_multiform_subtemplate.html:65 @@ -163,7 +163,7 @@ msgstr "Salvar" #: templates/appearance/generic_list_subtemplate.html:31 #: templates/appearance/generic_multiform_subtemplate.html:65 msgid "Submit" -msgstr "Submeter" +msgstr "Enviar" #: templates/appearance/generic_form_subtemplate.html:74 #: templates/appearance/generic_multiform_subtemplate.html:69 @@ -173,20 +173,20 @@ msgstr "Cancelar" #: templates/appearance/generic_list_horizontal.html:21 #: templates/appearance/generic_list_subtemplate.html:108 msgid "No results" -msgstr "resultados" +msgstr "Nenhum resultado" #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" +msgstr "Total (%(start)s - %(end)s de %(total)s) (Página %(page_number)s de %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 #, python-format msgid "Total: %(total)s" -msgstr "" +msgstr "Total: %(total)s" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" @@ -194,15 +194,15 @@ msgstr "Identificador" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "inicio" +msgstr "Início" #: templates/appearance/home.html:21 msgid "Getting started" -msgstr "" +msgstr "Iniciando" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" +msgstr "Antes de começar a usar Mayan EDMS você precisa do seguinte:" #: templates/appearance/home.html:57 msgid "Space separated terms" @@ -214,22 +214,21 @@ msgstr "Pesquisa" #: templates/appearance/home.html:60 msgid "Advanced" -msgstr "" +msgstr "Avançada" #: templates/appearance/login.html:10 msgid "Login" -msgstr "Login" +msgstr "Iniciar sessão" #: templates/appearance/login.html:21 msgid "First time login" -msgstr "Primeiro login" +msgstr "Primeiro início de sessão" #: templates/appearance/login.html:24 msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"Você acaba de terminar de instalar Maia EDMS , parabéns!" +msgstr "Você acaba de terminar de instalar Maia EDMS , parabéns!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -254,13 +253,11 @@ msgstr "Senha: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Certifique-se de alterar a senha para aumentar a segurança e para desativar " -"esta mensagem" +msgstr "Certifique-se de alterar a senha para aumentar a segurança e para desativar esta mensagem." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" -msgstr "" +msgstr "Entrar" #: templatetags/appearance_tags.py:16 msgid "None" 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 b11558cf3273832825a1e7d8f85248c1814ab926..c8b033d399a73d72853f5b93a9281d1dbc93d307 100644 GIT binary patch delta 1526 zcmZ{jU2GLa6vxMY+%2tAsnV)^IG`;hw!ke#l5MH2{lFRuhD)evG&*UrVC|Ck_!HuY3!T~Pi8<)XOtUm(rh?^MN!Oy@B@C)z>@N1C2 zy9f4xzk!@{CybbiE|3%G0r!A?x&1iE36($(@x=lrMHtHY#`}#8A+CWB!+ss)0Jn1c zH#vU4_cm}5{1(+*2JwgzjBH=P!0Q0ih%e4!G7qkUT-pH)%;zyY z29AT+5~skYz}LaY!MDI?z$+j-{1oK(KLcvV9WdQqO_CV3^x4gM1f00P%>AG5Fw(eEkc^3Ec;~z(2u$a1)~QL54v7exw8S z=YW$iu!9-!W$=9d!W|G5Z1iy_$WB?<2@5-C;S04PoHz$#*$VB0?uKrGZV0#SS!kpG zkK|T9>C;fe6x*N@%BM#14dIgQ$md*MZUHCHmy65J!tKB{Xk0*E^B;v<-e?Tc+h zP%%+XGAkwm=bF^Wixeh?0|dUyi2MByn}Dx1ZRsHyz!dTg0?6i4il}q*hv8 zBN-)C9gCx6E!@h~Dr2c4UP@{tW-An19cnUSHb$m3Wpxr`o@QaF1MN;XUn=NoEOqR@ zZ}z=X76g>0uDj)kH?K?#hwfy{y^dmWaOj{sFytQ^axb**oERP~9+t&}esTD@1CaJ( zDz$^BjEd7p*~Iv=WGPg!&g7)gsU@&%jyV6>Af3+@j9)l@URq~}t z-Z*)}y;?Y3n4+|9$lWZwJ%9V%Sm_uJDkPPxXO@)Atd8`u`e%u6e-cZZSQTljEDcC& zsGMn%sgj`z=&Ng5W~R2bY7=EBBH!)t2HqsKytXQ)h(FV^j!K#AU%i-1DyUtsw)!6p z`u`5?A47{cj$8D$?k?eLWEW7KYPd8iMabEyjcy<@au>Z@?Ko!|81#wU;kKiN2Yqnw Rw9R-E5gEI->b`7y?{6e$9aaDU delta 891 zcmXxiPiWIn9Ki86+uF5LH>+!%n~;Of$&4hm&ROO~=U`fCsmkyVNVa7q&^3@`J9uz6 z!GmCVD2ON7Nd@sHc<>^qXBh~>2437nJc$=U{Qlbb=*uVX*W~wmf3i{7$gOSVl8+Sa z5PgK6>{03%{y=FDcPN#{HfHb%)^Htn;;;DsKe&f+BGHZKu)uf-2hheWp2Gup8Bbk2{e%$N@Efqqa=KaNAX1*|BO=j3);99j|X^Z7vlm-zQZUJzl1!ZuHY%0!zw<& zUh1n&Za%Ww@11~BugES1-f;2o9m>kb$R-wXA5Nh>SHpui7smsXh1^5gf%_=$J;M|D zGXDRo#Hp_~xsff|#v{nIIxmbOA!T71CsDRA#2ntmF>E70^_Ghievk6}2fT`Y?SjT~;qU@xOJxqjceY<9 zCf`^-jthJjgKB>qkh7L1XQ)>bi#ne?J3QkBVPr(!vTHQ`hSyTFi*76OmOMAmpORWH zq$c%xYD#aXzFoIUX7RLPm&(=|(<)h3wpKOk?y47he#@M8BDZW5EqlVWPMSsADB5Lf zV%(x-D^3`hR|BUNHl4^1%0}IvcZ0~s&, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-04-17 13:14+0000\n" +"Last-Translator: Stefaniu Criste \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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:11 msgid "Appearance" @@ -45,8 +44,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -57,7 +56,7 @@ msgstr "" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "" +msgstr "Despre" #: templates/appearance/about.html:62 msgid "Version" @@ -90,19 +89,19 @@ msgstr "detalii utilizator" #: templates/appearance/base.html:87 msgid "Success" -msgstr "" +msgstr "Succes" #: templates/appearance/base.html:87 msgid "Information" -msgstr "" +msgstr "Informație" #: templates/appearance/base.html:87 msgid "Warning" -msgstr "" +msgstr "Alertă" #: templates/appearance/base.html:87 msgid "Error" -msgstr "" +msgstr "Eroare" #: templates/appearance/base.html:116 msgid "Actions" @@ -120,11 +119,11 @@ msgstr "Detalii pentru: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format msgid "Edit: %(object)s" -msgstr "" +msgstr "Modifică %(object)s" #: templates/appearance/calculate_form_title.html:12 msgid "Create" -msgstr "Creati" +msgstr "Creează" #: templates/appearance/generic_confirm.html:6 #: templates/appearance/generic_confirm.html:13 @@ -195,15 +194,15 @@ msgstr "ID" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "" +msgstr "Acasă" #: templates/appearance/home.html:21 msgid "Getting started" -msgstr "" +msgstr "Să începem" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" +msgstr "Înainte de a putea utiliza Mayan EDMS în totalitate, trebuie sa faceți următoarele:" #: templates/appearance/home.html:57 msgid "Space separated terms" @@ -229,8 +228,7 @@ msgstr "Prima autentificare" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"Tocmai ați terminat de instalat Mayan EDMS, felicitări!" +msgstr "Tocmai ați terminat de instalat Mayan EDMS, felicitări!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -244,7 +242,7 @@ msgstr "Utilizator: %(account)s" #: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "Email: %(email)s" #: templates/appearance/login.html:28 #, python-format @@ -255,13 +253,11 @@ msgstr "Parola: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru " -"a dezactiva acest mesaj." +msgstr "Asigurați-vă că pentru a schimba parola pentru a spori securitatea și pentru a dezactiva acest mesaj." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" -msgstr "" +msgstr "Înscriere" #: templatetags/appearance_tags.py:16 msgid "None" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.mo index 784128fa71e68c2dcf9968b8aaf0a490451f562e..c78354810cbbefb2817e2e8cc5594a3475d32c06 100644 GIT binary patch literal 5549 zcmai$UvOMi9mfxfs8La>{1gA2ift3=-Ry>xKih6QElnj3g-jY?c*2|Alg)+Qdzbqs zB_j{eQlK`pv{Po#8LG$(jxSCUvLv)ks^bf9-YY&Zj{2mIPrRrzzA)qGckXVog$g&h z`@QGf^EQ@N?iL@bln1 zU?2Dga18tlxDzZO^eyl)@EY(qDDp3X*MhHrw}HRxynh$`D&s$aH-hhjUjeT{cr$n- z$dtMpl=(g2m%%X*mFkC}*kQnNumyer{2h1`_VhUXM{CcM~Z4+zN_) z{opq6PH+qOC@AlbfrzRfgI@$sgZ!&={FJ~q!0W;HKw0-b$iMmzKhJ?5fMWNv1o1lX zEcg)k1}J`g0Ls4C65OreEuhHn>);PSNzFL81AGX40GtC6ReuII;n?3hRuEyzM@H$Y|9ROwC1I4ZxQ0zDjehn;Qq~v`Bl>F4e`@s;Dxc(OWCio7B zN$MZqcfo&yV*kwqSK>1QZUTP<%04GSvG*sS#H$TH46cE9gEz4F25=0tdcnUj4#8dE z!;n<=KMU5u-+&UwevIA@?glI1ouWhPLN3vRT6>AlatW6uPjWfjY;Soo07@MSha{fR!Cp7>D{+uq?cf$0?%)=# z%XNDWHaFt0Tu{n#N9sr}iI4cGxreyrx|Lh<(R)Dwn={Fm#G=4G$UV$m@dnbb=R(q?l7x-OaTxgZ-CO#N zObkT320JrqBn*R49q_^^*0I+#x)IbpUwz-iG4ARpcEgyw+#58F8m$>W_NF`&s?n*9 z0Feieb@;vAPBz_H9hxZ<8m98d8_}X?JooZwYHxkVvKsYqr|AkIc#e{(DX;3GP`6Cj z^w1$hxzAc>e@U2Fcv*ThG_YH`ji{{d5BSHFC~3qIkG@f3W$JkNq}B8jgSeg&b=+S3NwZZMSY)FHGX8&A$Nu!SX-S2!WmXt$JHUP?!!@aC&WP%_!{VxU@u(rRLw zSZ|9EGd{%6l@|19+?@+eE08owsfgmpi;Z?`P0uHBY#fABs;|Pm@HMPs)?Xpr_}a`L8}%V_Pb->o$=~WE z)AZ)ptrBdXTG}XthfF9GQxChL53kfCCQ^^kAZmfXE!NYdRvSM^>eIb^lnNxG^p*gY zS|?4!BHGzMp4wuLjXc`_bsHC)f%DW8WhGI8a>i384E8|y?P{m2>d zt3izfl=WScUc7E>S%*pASR)DDhI4=(6qU8#vcsq{yi@0om41IqsaUC$^wzCf9*dhR zrIOyGi<;$(cUOkGuXa_2<$@sJ2u4c9$24e zU(|GU?y9iE9zDbcw-4;>Q|T+|YW8fprqZ)%JAFHQCOeWYrYqSgnOI9NabHMRnK;7h z3)vjctbIv9rqhf0#2KKSy&GS)A)#<;9XL7XwjpYCH2-*iPSKzOAheB(YCp$2{ZJ z>~zbLywZTo>>XVKWL|_r4Bw6e~FCJ){+2ibJ zgPNTnq_1JdvTQBxsr2=Z7762A@4;eE*Dy)@!bUE8*QoU8m?vhQ$FUXEt_SY&WiR15 z$;qD4*^AaC*4x#qvT+I@iM`}EJJH+2KXQ~IsxLs!1%f^=_DLic*#M^(ML~K|h`E>@ zV-B-;lsu7J$viKQBE&j7L4bv(tUs@ro44s?nMz-^e395wNUyLFDX{)Mi*7XYOyX7g zGJ9VTY7=Uq=_*^kC2Y$%dXZJfvpJg=SjdpKZLvg*qBIb;SrGnOmJ%I8a8zog9>RH-~wF9KvNqD+@N|sO9R+tAn?+jASd?>o*-EBynzC%aAg-bYbOr^gd zP)DTwQs82fgXM&5ot^1?K~n{%@ufrk%lf$ODH`D=T*^J~_#|v3&uE&rT+1uwlbVB# zntVwJ9TE%Zg#TipC8y2LqOB9&W7%uAz^Q*JZ5tLXp=TZbNg~p=4WP`l@v!IHBw>_j z(jm|>-zmDzcj{6n;Oi~u3c^@m)BPsG)>)wf+_2xeD;|$AXL;j*%i;JVY4<0KhX(6j^q;#H-zRyne7TFb!*}b31yx-c! z)%$(UgD(ddV)(jkpnMyc{rKk8J$iJG4SY7_s9`HD4>IYbz$MGM;T#;`f6iK|3OPuu u(xO(R-lbdFHi%yNZk?y4e(bRwUH04AB^oCuigmNHb=tOkgpKTZO8pOjcKUn( delta 976 zcmXxi?MoCv9Ki8O?^5qP?;+DJ%eK%YOuDnP=s-b>K++yO!xzeMG3tLq_eZdnb`(PxM;~_K2JA(z z5aVK)%62+NkvW7!58g#J;R9^KC&m5`s22W+aa=C8Lky~kAgnS}W*oFgm z1aDwD>x-{cYFYU^s-6C2c4d&!4^czaUPQHX7n^Ve)ds`mLTp0~6SyBY;(6SP5>@6i zco^TJN+8H_23TLzP-(yhY{qVkU=G#5t2lrXYw!o|#1dY%<1SR0r;!}Q1?x-2~$+IDx=jX{71zG zcU(Arb+zgrQwgjFr`jZ{i!F7ODpV$-bI38ROjdMetjt*2%4OvjPoKQz-Qu+k-7(}Z zZ?x{9X=feHG1G=NYK@o~(S6#;IOecv*z*0_9@$uy^r!T5hDaH@J#kDeKKp7C?}D-3$A-n$F=OY%Ty bQm%wf$&2B7xfnhvk4GZ1qk2p(Re$;itJANj diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index 1bcc3b230f..b3fcb7f110 100644 --- a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po @@ -1,28 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-07-14 11:22+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:11 msgid "Appearance" -msgstr "" +msgstr "Внешний вид" #: templates/403.html:5 templates/403.html.py:9 msgid "Insufficient permissions" @@ -42,23 +40,23 @@ msgstr "Извините, но запрашиваемая страница не #: templates/500.html:5 templates/500.html.py:9 msgid "Server error" -msgstr "" +msgstr "Ошибка сервера" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." +msgstr "Тут какая-то ошибка. Её нужно сообщить администрации сайта по электронной почте, и она будет исправлена. Спасибо за терпение." #: templates/500.html:14 msgid "" "If you need assistance, you may reference this error via the following " "identifier:" -msgstr "" +msgstr "Если вам нужна помощь, вы можете сослаться на эту ошибку по следующему идентификатору:" #: templates/appearance/about.html:8 templates/appearance/about.html.py:57 msgid "About" -msgstr "" +msgstr "Инфо" #: templates/appearance/about.html:62 msgid "Version" @@ -67,19 +65,19 @@ msgstr "Версия" #: templates/appearance/about.html:64 #, python-format msgid "Build number: %(build_number)s" -msgstr "" +msgstr "Версия сборки: %(build_number)s" #: templates/appearance/about.html:88 msgid "Released under the Apache 2.0 License" -msgstr "" +msgstr "Выпущено под лицензией Apache 2.0" #: templates/appearance/about.html:100 msgid "Copyright © 2011-2015 Roberto Rosario." -msgstr "" +msgstr "© 2011-2015 Roberto Rosario, все права защищены." #: templates/appearance/base.html:43 msgid "Toggle navigation" -msgstr "" +msgstr "Переключение навигации" #: templates/appearance/base.html:72 msgid "Anonymous" @@ -91,19 +89,19 @@ msgstr "сведения о пользователе" #: templates/appearance/base.html:87 msgid "Success" -msgstr "" +msgstr "Успех" #: templates/appearance/base.html:87 msgid "Information" -msgstr "" +msgstr "Информация" #: templates/appearance/base.html:87 msgid "Warning" -msgstr "" +msgstr "Предупреждение" #: templates/appearance/base.html:87 msgid "Error" -msgstr "" +msgstr "Ошибка" #: templates/appearance/base.html:116 msgid "Actions" @@ -111,7 +109,7 @@ msgstr "Действия" #: templates/appearance/base.html:117 msgid "Toggle Dropdown" -msgstr "" +msgstr "Переключение выпадающего списка" #: templates/appearance/calculate_form_title.html:7 #, python-format @@ -121,7 +119,7 @@ msgstr "Подробности: %(object)s" #: templates/appearance/calculate_form_title.html:10 #, python-format msgid "Edit: %(object)s" -msgstr "" +msgstr "Редактировать: %(object)s" #: templates/appearance/calculate_form_title.html:12 msgid "Create" @@ -139,7 +137,7 @@ msgstr "Подтвердить удаление" #: templates/appearance/generic_confirm.html:27 #, python-format msgid "Delete: %(object)s?" -msgstr "" +msgstr "Удалить: %(object)s?" #: templates/appearance/generic_confirm.html:47 msgid "Yes" @@ -175,20 +173,20 @@ msgstr "Отменить" #: templates/appearance/generic_list_horizontal.html:21 #: templates/appearance/generic_list_subtemplate.html:108 msgid "No results" -msgstr "" +msgstr "Нет результатов" #: templates/appearance/generic_list_subtemplate.html:12 #, python-format msgid "" "Total (%(start)s - %(end)s out of %(total)s) (Page %(page_number)s of " "%(total_pages)s)" -msgstr "" +msgstr "Всего (%(start)s - %(end)s из %(total)s) (Страница %(page_number)s из %(total_pages)s)" #: templates/appearance/generic_list_subtemplate.html:14 #: templates/appearance/generic_list_subtemplate.html:17 #, python-format msgid "Total: %(total)s" -msgstr "" +msgstr "Всего: %(total)s" #: templates/appearance/generic_list_subtemplate.html:51 msgid "Identifier" @@ -196,19 +194,19 @@ msgstr "Идентификатор" #: templates/appearance/home.html:8 templates/appearance/home.html.py:12 msgid "Home" -msgstr "" +msgstr "Начало" #: templates/appearance/home.html:21 msgid "Getting started" -msgstr "" +msgstr "Приступая к работе" #: templates/appearance/home.html:24 msgid "Before you can fully use Mayan EDMS you need the following:" -msgstr "" +msgstr "Вам кое-что понадобится, прежде чем вы начнёте полноценно использовать Mayan EDMS:" #: templates/appearance/home.html:57 msgid "Space separated terms" -msgstr "" +msgstr "Поисковые запросы через пробел" #: templates/appearance/home.html:59 msgid "Search" @@ -216,7 +214,7 @@ msgstr "Поиск" #: templates/appearance/home.html:60 msgid "Advanced" -msgstr "" +msgstr "Дополнительно" #: templates/appearance/login.html:10 msgid "Login" @@ -230,8 +228,7 @@ msgstr "Первое время входа в систему" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"Вы только что закончили установку Mayan EDMS, поздравляем!" +msgstr "Вы только что закончили установку Mayan EDMS, поздравляем!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -245,7 +242,7 @@ msgstr "Имя пользователя: %(account)s" #: templates/appearance/login.html:27 #, python-format msgid "Email: %(email)s" -msgstr "" +msgstr "Адрес электронной почты: %(email)s" #: templates/appearance/login.html:28 #, python-format @@ -256,13 +253,11 @@ msgstr "Пароль: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Обязательно измените пароль для повышения безопасности и отключения этого " -"сообщения." +msgstr "Обязательно измените пароль для повышения безопасности и отключения этого сообщения." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" -msgstr "" +msgstr "Вход" #: templatetags/appearance_tags.py:16 msgid "None" diff --git a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.mo index d33b8538f88acc0c2bcb029e09d2064a9cb47abb..4aeea11ec00626dba25a71b50b3d464873e27f88 100644 GIT binary patch delta 45 zcmdnMvVmp75^h67T_a-!10yR_qlxP`O)g}N;`d3+OD|1KPqk7g&WR89oP3Hg4FFEO B4?6$= delta 45 zcmdnMvVmp75^e(%T_bY^LlY|l%ZckZ@%tp^rI#kAr&=i#=fnqlPEKHqo_v}y6#!3K B4>kY* 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 4fbd11e125..bad58f7e75 100644 --- a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:11 msgid "Appearance" @@ -45,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.mo index 4e9eed41f6143003a1632c332fde7085b1f764df..6ae170c99b30e5458d504bf502deada98bbd6f20 100644 GIT binary patch delta 48 zcmdnUw~=qdGG=Z=LtP_d1p^~1Q=`cnnKw@^VTt1RNz6+xO-xUjwP81 E0CSWNtpET3 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 fc41e66636..54ea773fe8 100644 --- a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:11 @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 @@ -228,9 +227,7 @@ msgstr "Đăng nhập lần đầu" msgid "" "You have just finished installing Mayan EDMS, " "congratulations!" -msgstr "" -"Bạn đã cài đặt xong Hệ thống quản lý tài liệu điện tử Mayan EDMS. Xin chúc mừng bạn!" +msgstr "Bạn đã cài đặt xong Hệ thống quản lý tài liệu điện tử Mayan EDMS. Xin chúc mừng bạn!" #: templates/appearance/login.html:25 msgid "Login using the following credentials:" @@ -255,9 +252,7 @@ msgstr "Mật khẩu: %(password)s" msgid "" "Be sure to change the password to increase security and to disable this " "message." -msgstr "" -"Bạn nên thay đổi mật khẩu để tăng tính bảo mật và để không nhìn thấy lời " -"nhắc này nữa." +msgstr "Bạn nên thay đổi mật khẩu để tăng tính bảo mật và để không nhìn thấy lời nhắc này nữa." #: templates/appearance/login.html:45 templates/appearance/login.html.py:54 msgid "Sign in" diff --git a/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.mo index 714d6c663b1e154ffd82515bef49a45d997d1050..f1b389e29bffb750dabc37bc9acdc11ab3ba7d21 100644 GIT binary patch delta 48 zcmca9bW>==|JNr$pVT<1UoUMon E0F3hxb^rhX diff --git a/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po index 2ee8a069a5..8a737fffeb 100644 --- a/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:11 @@ -44,8 +43,8 @@ msgstr "" #: templates/500.html:11 msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." +"There's been an error. It's been reported to the site administrators via " +"e-mail and should be fixed shortly. Thanks for your patience." msgstr "" #: templates/500.html:14 diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.mo index 9eccb952343fa8242886c16f4ca3d17e8b27aa35..3523fb774320ed9977071a5215ec0d07db9e1554 100644 GIT binary patch delta 45 zcmcb}evy4c1|zqjp{|j!f`O5hsnO(O#?_OxnWA`n67$ka6Vp?z6cURzw=nrK0su8! B4V(Y~ delta 45 zcmcb}evy4c1|zqDiLQ~kf}x3(f#u|4#??GNiFxUziRr0U3W-INWtpNkw=(%K0suK} B4VnM| diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index b1db823363..20ed425425 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:17 settings.py:7 msgid "Authentication" diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.mo index 0dcc3d0ca3849ef4bf7228fd9acad3de52fef6cc..51c2d9a4071b6dc742a008e00661c1d45a54edb3 100644 GIT binary patch delta 44 zcmZ3%wt{Vg9wWD*p{|j!f`O5hsnKLh#&wgwFh=qCB<7`;CZ?xaDI}#&_GP*a02+G@ A%K!iX delta 44 zcmZ3%wt{Vg9wWDbiLQ~kf}x3(f#qaN#&tYCiFxUziRr0U3Q6gcpD{*H_G7vQ02DqA A$p8QV diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po index 355891979e..ffae6ef143 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 diff --git a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.mo index 8c12f5efb82f6fe2e797bb263b37c3e197c1a50c..7e6cdb88d10fb9ae2a819f7866b11a222faa376f 100644 GIT binary patch delta 47 zcmZo=Z)M+*!N_fBsB2`bU|?irYBaf+@x)|rrYL@&#Ju#<#Pn1vg{0zmC&$T4m>vQE DJdX~$ delta 47 zcmZo=Z)M+*!N_f3qHAQXU}$1xU^%&%@dUq5VqSV_VtT5TLQ-+OljCG7rs&B_nH~TD DKKu^0 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 8b9cf0e0d1..b9f85634ee 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:17 settings.py:7 msgid "Authentication" diff --git a/mayan/apps/authentication/locale/da/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/da/LC_MESSAGES/django.mo index b027caeff8d4e4f0500628c537808ebf829be5e6..a406f7aafe589b2d068ec7140679fb2f9c0de7a8 100644 GIT binary patch delta 42 ycmeyy{Ed0SGHyddT_a-!10yR_qlp_=PtIhF;_*q$OD|1KPqk7=Nt}F$(F6cDoDOIJ delta 42 ycmeyy{Ed0SGHwGCT_bY^LlY|l%ZVFT^Y|p@rI#kAr&=kbBu\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 diff --git a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.mo index f35fd54941fe71a7244129bc52796d10dd8b2ca2..95d0e165459516619fb24b756571807e538ed9de 100644 GIT binary patch delta 48 zcmeC>?&aRFn2FoaP}j&?&aRFn2FoKMAyh%!O+CYz;g0BrUU#wiFxUziRr0U3Mr}aF0PYvnWHz~VBX3I E0AxWAmH+?% 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 dbeaf69b18..b250609dfa 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -35,9 +34,7 @@ msgstr "Passwort" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass " -"das Passwortfeld Groß- und Kleinschreibung unterscheidet." +msgstr "Bitte geben Sie Ihre E-Mailadresse und ein Passwort an. Beachten Sie, dass das Passwortfeld Groß- und Kleinschreibung unterscheidet." #: forms.py:26 msgid "This account is inactive." @@ -55,9 +52,7 @@ msgstr "Passwort ändern" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-" -"Mail-Adresse" +msgstr "Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername, E-Mail-Adresse" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.mo index 3a664af1881d6b466b6c591a63a65a978dcd2e6d..21eaaf8a16f9acc1b4baa8fa1e5f6db91cbca6d9 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|(ZuPG0Z_mPLI3~& delta 21 ccmeyx^owai54VAdu93Ndp^24&<;3Za0Z|$UO#lD@ diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po index bf98a7e4c2..4c301cf244 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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-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.mo b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.mo index 817cad60933a7c272479fb3562443af07c6fd0f6..8f5caa87a82c675f6a75fdbc2891d31dc011ec2d 100644 GIT binary patch delta 45 zcmZ3+y^MRqVkT}wLtP_d1p^~1Q=`f2m=;ZrWsc(UNz6+xO-xU\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 @@ -34,9 +33,7 @@ msgstr "کلمه عبور" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"لطفا از ایمیل و کلمه عبور معتبر جهت ورود استفاده کنید. درضمن کلمه عبور case-" -"sensitive است." +msgstr "لطفا از ایمیل و کلمه عبور معتبر جهت ورود استفاده کنید. درضمن کلمه عبور case-sensitive است." #: forms.py:26 msgid "This account is inactive." diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.mo index 18daa81f2acd985ecbb3d793eaaf51c0f8b259ff..f0be360e41246776aa47fc53db9953f014208aa1 100644 GIT binary patch delta 45 zcmbQmJ&Sw8VkT}wLtP_d1p^~1Q=`f2m<~^_V~*nSNz6+xO-xUe4Y6)BLF^c B4(R{@ delta 45 zcmbQmJ&Sw8VkT|_6I~;71w#`n1Ix+lm=5#!B<7`;CZ?xaDWnxmE?|z{e1rKABLF^7 B4(9*> diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po index 2152f894a7..9a9551c9b2 100644 --- a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 settings.py:7 @@ -35,9 +34,7 @@ msgstr "Mot de passe" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Veuillez entrer un courriel et mot de passe valide. Noter que le mot de " -"passe est sensible à la casse." +msgstr "Veuillez entrer un courriel et mot de passe valide. Noter que le mot de passe est sensible à la casse." #: forms.py:26 msgid "This account is inactive." @@ -55,9 +52,7 @@ msgstr "Changer le mot de passe" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Contrôle du mécanisme utilisé pour identifier l'utilisateur. les options " -"sont: nom d'utilisateur, courriel" +msgstr "Contrôle du mécanisme utilisé pour identifier l'utilisateur. les options sont: nom d'utilisateur, courriel" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.mo index c2d534579c7f476d82bb492bbafc9002e8152d2a..4705a4e2564250c649bd323bcfe09d9d179bff6d 100644 GIT binary patch delta 42 ycmZo_#-N+%y>v;hDUeGRDq delta 42 ycmZo7|M3sa6UZrIX_rqbDC@v<3haZ4IXY diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index 6a51ff7b77..18a79070d1 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.mo index ed29088be5aaba645b00fc8d1457adc72adc7bd9..831f8fb384c9839144848ded56d7dad0ada5a849 100644 GIT binary patch delta 44 zcmaFQ_MUCSB1UdQLtP_d1p^~1Q=`di8P`wFWQyYPNz6+xO-xU\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 @@ -34,8 +33,7 @@ msgstr "Password" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Silahkan tuliskan alamat email yang benar. kolom Password Case-Sensitive" +msgstr "Silahkan tuliskan alamat email yang benar. kolom Password Case-Sensitive" #: forms.py:26 msgid "This account is inactive." diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.mo index 0ba289c6b27a7085d17a0cb2d6e7fda638cfc5ac..b2c2dbdc310166be41ecdf0a784309d9d637cd03 100644 GIT binary patch delta 694 zcmZXQF>4e-6vrof7n58dF~KGz;wu6glH2TEG;l`><*5&`A z@5m7M7lc>?H^6m}z&@COVg4Ps2z~_bfuF!-@ESY=zkpldS|r2)_yi1R0}#4XA?iXr zz`;8B7Tg8H;CnC#-+)2*77W5)!2$RUdj2()e$-On1BTSK&DUOxXG+TCaE@=>(iKW-+SX8S26o$k@`eu8M6 zvh&S1mUEY}H?~W!*rtYhtcy%KNhdngar(cGb^3gyS!Ho*ba@#K${*1gMDo#?M_8jg ztQ}5ab>?(}{iJ}_xx$i^@g2WtsVw+SE5C-uUS(=B!7fxt8+^~C!u7{hA!9m~WQriJ o$eG;Sbzj=r>n;2UXwUyKrN&z6y()jzUN(lxF}^R^mwWZrKl7-h6aWAK delta 421 zcmYL^KTE?v9EPt=YHR&dkt%8xZg6WOX{pqP4wg28kT_U7s306R)Id!nx#$>hcREDe zoSf7}@FVyMoE${Au6_gGtB5Z=c`kR!n_q_6_e}gTt6mdi94vz#m;w(#<`d+=7m(-Q zAO)rqgp9#?I0F~p19%l)gk!h_-@-TG736V$r2OuOFnVHghlMPl;fIstvYO3WuF z^r}{=(Q?($>*6U{Xsm1chE~yOxsIKpj$|zsa&0eQUN~Uf4-C51wJf^Rv`yMD?dG<% z*=)CW%}z%wDBVd5pNv@FF{sPMKsgj|N=f9@IdQ4lE0M?Ov5z4*XVf`m?tuP}Cx)t- Nc0I, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2015-08-20 19:09+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-09-24 09:36+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 msgid "Authentication" -msgstr "" +msgstr "Autenticazione" #: forms.py:17 msgid "Email" @@ -34,13 +34,11 @@ msgstr "Password" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Inserisci una corretta email e password. Si noti che il campo password è " -"case-sensitive." +msgstr "Inserisci email e password corretti. Si noti che il campo password è case-sensitive." #: forms.py:26 msgid "This account is inactive." -msgstr "Questo account è inattivo" +msgstr "Questo account è disattivato" #: links.py:13 msgid "Logout" @@ -54,7 +52,7 @@ msgstr "Cambiare la password" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" +msgstr "Controlla il meccanismo utilizzato per autenticare l'utente. Le opzioni sono: username, email" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.mo index ba8947d6451cb4568e09f800aa31ac95f5705f67..41fb75b73f4451b17475d03c409df58f4a8c57d3 100644 GIT binary patch delta 48 zcmbQlJ&Ak6VkT}wLtP_d1p^~1Q=`f2n9fh`Wsc(aNz6+xO-xUHq)$ delta 48 zcmbQlJ&Ak6VkT|_6I~;71w#`n1Ix+ln9lS2B<7`;CZ?xaDdgqE`}s_+VUFJXoOv}P E0BP6{, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Justin Albstbstmeijer \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 @@ -35,9 +34,7 @@ msgstr "Wachtwoord" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Vul het juiste email adres en wachtwoord in. Houd er rekening mee dat het " -"wachtwoord-invulveld hoofdlettergevoelig is." +msgstr "Vul het juiste email adres en wachtwoord in. Houd er rekening mee dat het wachtwoord-invulveld hoofdlettergevoelig is." #: forms.py:26 msgid "This account is inactive." @@ -55,9 +52,7 @@ msgstr "Pas wachtwoord aan" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Beinvloed de manier waarop gebruikers worden geauthenticeerd. Opties zijn: " -"gebruikersnaam, email" +msgstr "Beinvloed de manier waarop gebruikers worden geauthenticeerd. Opties zijn: gebruikersnaam, email" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.mo index 76c59e2ab7b2dc9e25f72b76735e1e6ba5325e4f..d9dcf936db36b35a53dd4ab6f5d0815175887e4d 100644 GIT binary patch delta 182 zcmeys^@?jkN$68X28K{31_l8J1_o;u1_oXr?E|DkfOHg)mIBi2fix?SJ_V%Nf%F9+ z%?6}z0BIK>eIH0m0%;YXB5fdTxAEjHMs7nxT_a-!10yR_qsi--6jh8A49%@fOtlSw zfXgSbxI{OkC^4@%C$S{I$VwqRKdU4)d-7MN>dCdtQ9M40dFiEz>8Vx<1v#6qF*7nU Lm1a%8%Q6`NIN&I1 delta 187 zcmaFG^?_?bN$7J%28K{31_l8J1_oOe1_oXr?FXbofOHIymIBfnfix?SJ_Dq=f%GLH z%?70J0cjT?{S-(`0%> QvgMa2=4GZ%zRofk031as$^ZZW diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index 0fa038196f..4380048603 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po @@ -1,24 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-03-22 17:45+0000\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:17 settings.py:7 msgid "Authentication" @@ -44,7 +43,7 @@ msgstr "To konto jest nieaktywne." #: links.py:13 msgid "Logout" -msgstr "Wylogowanie" +msgstr "Wyloguj" #: links.py:16 msgid "Change password" @@ -54,9 +53,7 @@ msgstr "Zmień hasło" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" -"Kontroluje mechanizm uwierzytelniania użytkownika. Opcje: nazwa użytkownika, " -"email" +msgstr "Kontroluje mechanizm uwierzytelniania użytkownika. Opcje: nazwa użytkownika, email" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.mo index 0ef3c1013ba3413563ac015c21d7714dea9d2ff2..940c4fd966b76fee71d09a00336a8cf2b9e0d1c9 100644 GIT binary patch delta 150 zcmbQvzJz^3jO{K)28LiD=4D`D;A3WB&;ZghKw20`y8>wzARP&$S%GvMkd_3}DL`5k zNY`zg$-&5NXsBystYBbdWok5e4WplGW?o`)NoHB9c1C<|VqR%#PGWpfeoAp>PFbQu mNl{{6ab{X-#bhC-n90>lQQSU>dFiEz>8Vx<1(Po`9RUDiKqBM- delta 138 zcmZ3&KAn9+jO|)R28LiD=4D`DU}R=s&;Zi>Kw20`TL5VmAngOBS%GvQkd_3};Xqmy zNEdFL$-&5NV4`beu3%_lWnejZ4Wpk#Mtp8!UTJDhVti44N^xdRS)xOFZenK6WO=3- a9-qX#^wPxiR4avolF3y}(UTuB9RdKSV;#W& diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po index 0a0bdce7c6..bcbdebfa09 100644 --- a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: -# Manuela Silva , 2015 +# Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" -"Last-Translator: Manuela Silva \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Last-Translator: Manuela Silva \n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:17 settings.py:7 diff --git a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.mo index 3b9563e1d899608a8ce1fbaadf3e966971cfc5f2..d5aa336217f5bca2c83ab97084554c16fe4a7f46 100644 GIT binary patch delta 648 zcmYL_K}#D!7>37gP%q_cc4`)OXTr>^-i-gi z!_uP%@lfck6vc}dbMfGB=np7G`~f}moeixY`_03?`^`J^?(eBT)#1;_lV1dC8a;B)X0^oD039&v%iA9M-sf>)q7egp9-_yL4(83ZWHUj*lr`zqiAwD-KL zp%4%8Rz>?m%4+AXFO^Gr>=La+r_X9f(txeq(&V zHw37rPFn--WQmQ8N=b1hmq=zDBTb1%BJkJiKv|>O46p0iDOG^>|fW*_48P(_jFeOWQyG&E`9~uGhGD9c?WkG zxQ`oei%umR=58Ey^mTNiMLTuUupuTZRiFQ5Wzs%r8B`+x#~S~`un#-lZZMJCd~|FQ hU8lAsJ%Hn>v}EBMkTbdZA_?NE|(m#ABwK$qa) z3zQD(po>r7V~FA^g1dv?75w1GFWmp~-Q92QE1SF(ja!1ugEioTMQ{&P-a!F;05$&s zGa#=KG7B%kS-1qB!W-}^oWN!H4xWHlpn5``kWDp*@qa?b_%N{W0IT9B_yT@`Rnazv z>u?)J$24lcN(Nxt^aAQK|51;b1FDZS2Q27wI$}~@hQcS!SO^|OG?rY@=WA_6Td-bkvNx~%&J4@btV&uu!2&JVijm423f>gD_};(`gvsN}(br8ma+9~?bGl>h($ 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 2d3c95868e..3da0560694 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2015-08-20 19:09+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-11-10 19:28+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:17 settings.py:7 msgid "Authentication" -msgstr "" +msgstr "Autenticação" #: forms.py:17 msgid "Email" @@ -34,9 +34,7 @@ msgstr "Senha" msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" -"Por favor, indique um e-mail e senha corretamente. Note-se que o campo de " -"senha diferencia maiúsculas de minúsculas." +msgstr "Por favor, indique um e-mail e senha corretamente. Note-se que o campo de senha diferencia maiúsculas de minúsculas." #: forms.py:26 msgid "This account is inactive." @@ -54,7 +52,7 @@ msgstr "Alterar a senha" msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" +msgstr "Controla o mecanismo usado para autenticar o usuário. As opções são: nome de usuário, e-mail" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.mo index c56a6cf2137705c1d295ddea2f72e8c2b323f046..1020060a2f5398fbf881b063e2d3d5a69a9410e4 100644 GIT binary patch delta 47 zcmaFO_L^-&1|zqjp{|j!f`O5hsnO(O#$A(bnWFf867$ka6Vp?z6pHfWgZw8?W4a0e DUmXv5 delta 47 zcmaFO_L^-&1|zqDiLQ~kf}x3(f#u|4#$EhAiFxUziRr0U3Pt(xLH?6\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:17 settings.py:7 msgid "Authentication" diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.mo index d3015d1b7934f8f6cd22ea66e8c15ab20fc2cdb3..a0b7b1afc7c1c970c047a21395a7d0bfcebc2854 100644 GIT binary patch literal 1768 zcmb7EO>f*p7&cJ87F1|&NFco&s1k_1_9iXGiBmzEN|hQCg)I`?rryb}k=I_$jGIR4 zAs@6wN>NcHq+C!BxgjAfX+qK_+57<{#s{v5KfsM2z%$d0?p2PeV(~LKtv#hhgbHF!%1e^xCKoh?Rd=dBq@Fm~|@D<>Xz%PMM zfNufMK5tn=zyaWS%$t~o-#BAg?*Q)s{|0UVF9FvfYIJ|YqXhgN_&V@U;5zUxpozPW zr0)X{fJjx;0Vsy?fi#8A3&58#jmMMYRV<7?(sswknQHJvMIlpBnphJJmee`5n3VIW zs96(fqC^@?LKHQ5h~r2$DU-ZLDkXNz#s+qUL(?szB#8;`7h4Hy@*(0)7RA;?CIr$I z`~56rWb53TEJALi^)yq~OwYnh%$ei_78k@QOra2}t{$zZTDi1aI1vai?d&$*DO-lr+Hz!I9gI`vs;mbX%&>?v7~YW62tUE0;ur_#)H)t(T% z=(~NDDRisidY5d^vn#{oR{V<<+Z}OT1lqIwc4Tx<#V&v8rUW5G4q)rA&{QT&c7w_+A0qo!3tauwXH zUb8PB$C-?CT-cLInAW1C?$hO4k?NcENo1v&I1?Zs2)zgE#>?pm2pM5EvdDEm``zd?jDj+xh^{-TZ64tDot1ejo3TEWNIG^u9U7 zayfrU`VeP}x}*2`h%d0+eBNtMfq5^Ym zy#>m4zC`)AMJdm~G*uqp*U?W4ZvMc?{dY@FO>*>)q1WJ4kz2#Nm@T0I99fGBkPeNy#AVm>g(v~R diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index fa4b0b42c0..9568210c61 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po @@ -1,28 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2015-08-20 19:09+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-07-14 02:03+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:17 settings.py:7 msgid "Authentication" -msgstr "" +msgstr "Аутентификация" #: forms.py:17 msgid "Email" @@ -30,13 +28,13 @@ msgstr "Email" #: forms.py:20 msgid "Password" -msgstr "" +msgstr "Пароль" #: forms.py:24 msgid "" "Please enter a correct email and password. Note that the password field is " "case-sensitive." -msgstr "" +msgstr "Пожалуйста, введите правильный адрес электронной почты и пароль с учетом регистра." #: forms.py:26 msgid "This account is inactive." @@ -48,13 +46,13 @@ msgstr "Выход" #: links.py:16 msgid "Change password" -msgstr "" +msgstr "Изменить пароль" #: settings.py:11 msgid "" "Controls the mechanism used to authenticated user. Options are: username, " "email" -msgstr "" +msgstr "Управление механизмом, используемым для аутентификации пользователя. Возможные варианты: имя пользователя, адрес электронной почты" #: views.py:39 msgid "Current user password change" diff --git a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.mo index f7f7f3a5eaa41cb3391fd9923264f94f31fbb938..a04f021c5a9a0e3b9ea587cb646598919886ea31 100644 GIT binary patch delta 45 zcmbQiGJ|D8JGY^su92~VfsvJ|(Zor6CdV;G@%tp^rI#kAr&=i#=fnqlPTtO#2mn3_ B4zK_K delta 45 zcmbQiGJ|D8JGX&}u93Ndp^24&<-|#Q__$=bK-+NC;Ku+Pu{_p002MN B4yynF 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 2e0a3894fd..89677c28c8 100644 --- a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:17 settings.py:7 msgid "Authentication" diff --git a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.mo index 429e9c8735cefdecdad7dc50962144a44b509acd..172985ecf6038fb1a8437d3989f94c6b5892387d 100644 GIT binary patch delta 47 zcmeyw`iXUeHY2y8p{|j!f`O5hsnKLJ#=Vo7nWFf867$ka6Vp?z6v{H=!~7=4Fiish DO9c*G delta 47 zcmeyw`iXUeHY2xziLQ~kf}x3(f#qZ~#=ZPLiFxUziRr0U3T2t`VSbZ8F-A|0Wts{A DS(p!2 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 7713524c21..13bba07ce4 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 diff --git a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.mo index be01c00cb1692afd6f7b05d3e9a062b2e78e17dd..7ac66ee335e64fe0f4a1427e14e3457ab7a69d6e 100644 GIT binary patch delta 47 zcmeyw{)v6V8%AzJLtP_d1p^~1Q=`e>8MjZ~#}viylbDxYnwXwyrBIa-@9Z~OocT5Y Dj~5V# delta 47 zcmeyw{)v6V8%Aye6I~;71w#`n1Ix+Z8MpKMB<7`;CZ?xaDO6>|JNr#u%M?9Xg83Ez Diog(q diff --git a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po index 7ce91de492..87d660ec9d 100644 --- a/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2015-08-20 19:09+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:17 settings.py:7 diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.mo index f0fec8ed276bca7838911c425a4a97b307f6440a..aa5d21016f822cc4e82040886621a4447f2d0794 100644 GIT binary patch delta 45 zcmew$_(5>P6&7woLtP_d1p^~1Q=`fESr$(2WsTzTNz6+xO-xUP6&7v-6I~;71w#`n1Ix+xSr+p6B<7`;CZ?xaDI^w6u4j$j{G64O831PH B4@m$3 diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po index 7ecfbc5606..f83ae4b596 100644 --- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:31 links.py:30 msgid "Checkouts" @@ -49,10 +47,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "مستخدم" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,6 +61,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -117,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -178,6 +180,9 @@ msgstr "Check out details for document: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -185,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -246,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.mo index 17d66cf664d06b52a794b409956c84176160d425..c7fd7497edba7bdb0b89456a3fb5c41776f6b4ca 100644 GIT binary patch delta 45 zcmeAc?H1i|g@xPDP}j&bazhYg;0suz6 B4<7&k diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po index cf134311b6..46d957229a 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -48,10 +47,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Потребител" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -60,6 +61,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -116,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -177,6 +180,9 @@ msgstr "Данни от проверката на документ: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -184,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -245,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.mo index 2f8fb623ff29e822f104ede6b941d3cf4dca53a4..2a001d3520fefc86871963638c7cda11254782c0 100644 GIT binary patch delta 48 zcmcaAcvW!26&7woLtP_d1p^~1Q=`fES@um{%NoV+lbDxYnwXwyrI1t{@8r0djqN-W E0Fj6g9smFU delta 48 zcmcaAcvW!26&7v-6I~;71w#`n1Ix+xS@!Y!B<7`;CZ?xaDI^ugJ2_6C!y3Jro$VYG E0F9s!82|tP 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 290d4b2fa3..50b87dbc94 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:31 links.py:30 msgid "Checkouts" @@ -49,10 +47,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Korisnik" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,6 +61,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -117,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -178,6 +180,9 @@ msgstr "Odjavni detalji za dokument: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -185,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -246,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/da/LC_MESSAGES/django.mo index ebb183db10761547d03abfba4461870d7b76d9fc..2204e3016d67b296c12d7bb36b9d76969c1196c8 100644 GIT binary patch delta 42 ycmaFG{EB(P5^h67T_a-!10yR_qlxPmPL5@a;_*q$OD|1KPqk7=Nu0cm(F6c7Tn;J# delta 42 ycmaFG{EB(P5^e(%T_bY^LlY|l%Zck3^7tg?rI#kAr&=kbBu@5cjGnxm(HH~FQHc|*9gO|%cnjCmE8%lRP|R~gfb_whMwN*S{bcVjK?$3}b;t8p4P z;5mE&zr^+U1M2-dNq-6JjF~l$xv1ws-7}>Dt@twigZM0dhPsbVj5d2jM{ie2>t<#x=&Q#a>iG z1Gp21Q6-*3z5gxhu>FE6?LDNr=66(L%cw2*3k&!!Qt0BG+H#%0VyJwYKv^qzuNWH> zb&|E$`UfbK+>5kUni5l}0!oVWS4_%99ZZF)poJ=QR&>r3wI}&ehC1oWSO-I)eRF6k zllJug(CV9$j!LS7)kf34vKwX>O`*S}DzPK>S3RtiX?s^Y zg(!4Ff5I*-rG6@_bb`~^!=ZZ7NOI(oXY@tX98*1^KC?*-0b&rY7P z&MRTD+df(B?k&-tx8a_+Gkr4tD*Z;yfR`VOyfNk*wI}*tTlgN)i_<>#kR zACSekDHxMur-c(EsElu513tnOu3{U0MLpObFh<2`MNXL%lB?-PieS=s5(jXJYR+SZ z<4&?yLg!EwxrqthZ!9}1%`=SQyNVxi564B+4OQXtyav=4b))7FVHci2B|eAz%mN!- ze^_xD)uOkU#Sd6e2_5Ra7wana<4%rG;Vzs;z3^_u=g7V04eEhwsI~JMUHpwoB+kW7 z>_Am+7&UJaRk1s@)Sv2@1x_fD2dL6MMh~AN6)g2j4^Wj9ZfRRiVh8(bkM38rGop+w z41E;EE4_@IOdUhf!BA_H>c4uXV4ai}pfcBb&=;#;>ajwtP_nAXW+++xE3|IZBJwS* ze*Gg9s^Vs-760SVC2wY8+V$*4^}1d6AGIS+ojv9Zt=xBB`|N1on*9@4jr3-E`u4f$ zOtyE>z6!R4`+NG*ZeKdvyWbXrjj>_x!r0Wb=MH;U@>3T*+Z;L{%jGA=XY%7?S$A}7 j>XoBy!fyMw(ZiL>7HE7rk!3MQ{HDxFcvB 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 eb566786d4..ff0679ef72 100644 --- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po @@ -1,23 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Berny , 2015 +# Berny , 2015-2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:08+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-05-20 21:40+0000\n" +"Last-Translator: Tobias Paepke \n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -46,23 +45,26 @@ msgstr "Dokument bereits ausgebucht" #: forms.py:28 msgid "Document status" -msgstr "" +msgstr "Dokumentenstatus" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Benutzer" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "" +msgstr "Ausbuchungszeit" #: forms.py:46 msgid "Check out expiration" -msgstr "" +msgstr "Ausbuchungsende" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" -msgstr "" +msgstr "Neue Versionen erlaubt?" #: forms.py:52 msgid "Yes" @@ -117,6 +119,7 @@ msgid "Block new version upload" msgstr "Hochladen neuer Versionen sperren" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "Ausbuchungsende muss in der Zukunft liegen." @@ -142,7 +145,7 @@ msgstr "Dokumente ausbuchen" #: permissions.py:19 msgid "Check out details view" -msgstr "" +msgstr "Ansicht der Ausbuchungsdetails" #: views.py:59 #, python-format @@ -178,15 +181,17 @@ msgstr "Ausbuchungsdetails für Dokument %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s " -"trotzdem zwingend eingebucht werden?" +msgstr "Sie haben dieses Dokument ursprünglich nicht ausgebucht. Soll Dokument %s trotzdem zwingend eingebucht werden?" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Dokument %s einbuchen?" @@ -248,11 +253,11 @@ msgstr "Einheit" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.mo index 605451f643029421b6664387108c9b1d6daba08a..fe5f421a48df8d14c098f058b8395efc18dc9944 100644 GIT binary patch delta 24 gcmX>ra8_W$1Qu>XLtP_d1p^~1Q=`qZSvD~P0AE7~C;$Ke delta 24 gcmX>ra8_W$1Qu=s6I~;71w#`n1Ix{`SvD~P0AI5QGXMYp diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po index 5c33733b5e..5c879101f7 100644 --- a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2012-07-10 15:47+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.mo index a8f5164905911601767d7a4922553b3a6eff1018..ee5710166d3e4591eef0c3b5e84826b2c0bfdd97 100644 GIT binary patch delta 1293 zcmZA0TS!zv7{Kva-E`eF%Uc)I#ySEF4|gv%5l67S=<7 zT{uQj2t5T6^pNxrMOF_%Z$Z>sRzx7B5D4`Y_5aSEr#_hdo!K+9^UXK24=QJ?hNnt` zHxyyemeVc-lxoA796pH8xk|O-7hHl>L8TU9GnQZ{F2kc(h#6drBe)XpU&WxObzmz_|DTj+P;0=$Uwehla1ePp6~jPk>8umC@!%=?ZZtj$wu4H~!> z4`3CZ#u~hhrL3=>@gNJlMcLUmluUnPHHP!EiPd8<{cbGBW4IcVxCU>bEHLT6|A#az zl#0xuY#>azmSPpk{7onu?Ls;3UL2MMukau{dxtXcD@sX!qf{Wk!OFrKi?9v1V;9P} zQCx*LeV?MH|H<#mBuS_iy+lwd*i}URD|s;aLUwWn<QBq=#-`3FcWq^+Y# zQuQ>6TAEae`{(@w43z3f$mS@97jjqRo=KGS@*$a%n0KafF(l+1HI1Y6b_ia`1*`F& zrId29*3;zpI4$oUfcKY_O00F`xj*MyDKl<6Iuo~s+}*(*_hE1qZCim(q*FQ-@3$tV zgD(U5+DVzIwBz2*8!5AfbjC_L@x*|mP1{ZkS+RDvCjUueLxT}*)RAb*#;6f#ibTTu z_8R-GOk9Q<9cIdE(a}glv(XSSqMLPOQ%h5mTNFCwj)jgCcAEozX|siz+&#XH!E_pl3JVJm*dcKn5UPh<7g`#Vqx zWH4fi#*ENuV`2=o;(6SIFR=rcuoG8NFZS0MqvFJoDbsp+4}WGQWa6V!opi z+eE!TN?F6`;UM;7Q8(VDa}Xa^e2Wg_FO~5h)B>8=V14)qszUu3!}F*GPoXOKxN^OO z%J^f&-{>%ou?ki2RG9ix9W%g$9Ijl*;w8qTNCnILrPAvFDV*{zX9HCcZI3Fa=%VqM z*+n}=wG3%RUr~A zpML!#6spd4?A-3i!5f9y$r-0$H>%d{x_{V?1sd#`!0FPnz&oG4UNdJmYnFPvl$-2z z5~+;W=Xxp6t2>u!g3|=n152k#!Hx#igp=0)HXu9+*wCb}f;RklUq3|EfM`_gn diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po index 49ba6e67a4..c319e5e525 100644 --- a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:44+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.mo b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.mo index c836c4ceae94719115dd36441923a2d7c5b1419f..4b7565c8a87dcfe8e859951d098ae9dda34b0161 100644 GIT binary patch delta 45 zcmZpZZj;{doQ>PiP}j&9$I3II

PSMAyh%!O+CYz;f~@wnaQXiFxUziRr0U3TcUxC$mRy{>|Ra3II&e B4_E*I diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po index 9cc550b489..ccd0422f69 100644 --- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -48,10 +47,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "کاربر" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -60,6 +61,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -116,6 +118,7 @@ msgid "Block new version upload" msgstr "آپلود نسخه و یا بلوک جدید" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -177,6 +180,9 @@ msgstr "جزئیات خروج و یا Checkout سند: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -184,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -245,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.mo index 346c99b1c140d2586b029d5c3fe8b2ab93a396b2..60374568fcfff4e63bed50357d4abdfc0da72d1f 100644 GIT binary patch delta 1356 zcmY+@Piz!r7{~Fqu(r##6>UM3g1iN6K^?l?0*M7}w^|{w2(g6tH#qFR#fjS;oSoTn zAgKu&6R)EQv59yvCVMd?#e)g4Aw3ym^kU*gg9lTB90(+OGWz{Z>%lj9_cJr^%=^C2 z^St}rwre})f9=VAY-k>R8~wdDW1hy_>-eGFSZ~ZB{0$$*?Kxu}#Dmy_M{z5@hF#di zEqD=k;sQQ|-=NAs0EhR#(zO2@g6dj`4frN{EZ~jtYep_Sl_gB(IV|{;Pc#f6pY!6FQQU= z9#xtYwV^9(&woHIcnkMnp7iwLFz&!(sPAU+5&RG}-{&}pOE`aoixn;u(GUgHi<8JB za~hSIw^0kdi)`L}isSeNvS+h`kK-LwCi=Qp7oI>ZbQ*OgK0wWP8FiMfc9VZC_&pCS zuAnB!Q+SnN2vy?=EaNM97#C0z|BR}o>Y|kHL~UpQ6~NHi^Fw%n`!OWZS+LrO&R^Dc z@vGV>eQN9@YucQePO@sPU8_AnSHw!YN~N}&u5@$$vS>Zj!BkT@NKV!ipw5|E&zt<{ zkPt|=b48)1s4bn+W;KVbsSH`fsDD8_{RujOWf4D#YO1qJHJAqL?{vD@4{8nD4BT9L zEH|BgncGDl-(bTewsA1)7H{URw{_S??8iwX{jB}sCO2oBE@}i}yyhDMuQXzdrO^W=ueiThESxy*z2usKUiF^yV>fC`#o>cq@qped6-SHv)9(BhZz4+S zp?$V|VsdKoPM$v(M1IU}Y&EgXH>&`OZJudZx4JHC7EP$*il#>D{iS{&EtBQP5z;s8-4F8}$j0TE7)?tMEPSp1YFpSr*8E;_=KEloT5gYIaDo#bP7{3X%fizZH z-mITN9S<_772m}5_yC)50h{p)DzHCfrsO1%N7jU_)pjCDuoRxcPP|Pvr|}5)HLQLc zW>6WM!UXf%Lk3#F;_8cK)I`5gWvPvt)#E`_i3YJ2^Votj*o%v+&m*Ky8EoXDjP63k zJA|yo2C*A2VO}YmWw0Hep?3NeHBpd)YJx^oO^>1iosKM*g*c=R9Ced$s!FE#Bb%1Cqf)y|e=bRr3m00;3k7Nfk#;6Y!g@ zrEj5=#6o!#KTcOuR#n=B>aUfkaZU=mQ|(m_9hwGukgnE9SNc?ne@*8=nb5h>DQCll zOsT$Vn~D^!<^PSX=W=dhWZcWSm6Bz*?C*7%K-~2Oy60vBFMRHN=(_tAT8OoEw6^c@ zQXT2GE;k>pi|%f1PkHUBblYCH6s|5G$PEsSjpw|9+|}&Z#hgn, 2016 # Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:08+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-05-23 20:04+0000\n" +"Last-Translator: Bruno CAPELETO \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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 links.py:30 @@ -46,23 +46,26 @@ msgstr "Document déjà verrouillé." #: forms.py:28 msgid "Document status" -msgstr "" +msgstr "Status du document" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Utilisateur" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "" +msgstr "Heure du vérouillage" #: forms.py:46 msgid "Check out expiration" -msgstr "" +msgstr "Expiration du vérouillage" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" -msgstr "" +msgstr "Autoriser de nouvelles versions ?" #: forms.py:52 msgid "Yes" @@ -117,9 +120,9 @@ msgid "Block new version upload" msgstr "Empêcher l'import d'une nouvelle version" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." -msgstr "" -"La date et l'heure d'expiration du verrou doit se situer dans le futur." +msgstr "La date et l'heure d'expiration du verrou doit se situer dans le futur." #: models.py:87 permissions.py:7 msgid "Document checkout" @@ -143,7 +146,7 @@ msgstr "Verrouiller les documents" #: permissions.py:19 msgid "Check out details view" -msgstr "" +msgstr "Afficher la vue détaillée" #: views.py:59 #, python-format @@ -179,15 +182,17 @@ msgstr "Détails du verrou pour le document : %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Ce n'est pas vous qui avec posé le verrou sur ce document. Êtes vous certain " -"de vouloir forcer le déverrouillage de : %s?" +msgstr "Ce n'est pas vous qui avec posé le verrou sur ce document. Êtes vous certain de vouloir forcer le déverrouillage de : %s?" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Verrouiller le document : %s ?" @@ -249,11 +254,11 @@ msgstr "Période" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.mo index 18a8192f4cf1f046c8708d83a95a4ffef8ce65a6..40a6c7bcfecba5f8957d5a1ce76befdc9b9eac22 100644 GIT binary patch delta 42 ycmeyu{DpbK5^h67T_a-!10yR_qlxR6Oio~o;_*q$OD|1KPqk9WD4o2M(Ha0Xnhs_F delta 42 ycmeyu{DpbK5^e(%T_bY^LlY|l%Zclk@c1O=rI#kAr&=jwluiy}jGnxU(Fy=JCJtl( diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po index a877fa76b7..4060b2eb5a 100644 --- a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -48,10 +47,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Felhasználó" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -60,6 +61,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -116,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -177,6 +180,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -184,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -245,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.mo index 306451d7132828f1a1d4cc411785d15c27ab31a6..68e2426cca77c1ddad6ffa36e8d1241fe5cf8e89 100644 GIT binary patch delta 42 ycmaFK{E~UX5^h67T_a-!10yR_qlxR6PEKTu;_*q$OD|1KPqk9WOqslkQ6B&?<_F)G)?C#EWXSSt{ z4;b|?P!l6BCcdb|N8boO@Z_6@_^81c6E!}Vm}p|+kMEh?ySuj(C%OG}=AJooe$L$Q zwrzTkVR-mFj?Y^g7#jh9-H1OJH*RBW82lc57~HvuvHQV;;5P6i_$c@?csIBNJ_NoA z_JWtd2f?c#$$yj2e*(8-{x7%#+y39#pm%&r0OUd&H{ z4}j;vy2mBeN{af$J?Ai_9hxv0k zPl8lGv*13^f@IGnkj}ph4uV&6{sumYc`t%M_8tQ%&a)sw%g%#jXOOQig0q;%Aj0fy zBYQeyH~yi#JeDs&y&Dv38WbzaGu1u~vi&K1DAwdR4f2zE2c_p??tv5=8e}U%;0F0e zHAaJcBfDXit5>QC8srnl2WfQm2e?7CMRiMq@=HEGjSs~Nsd6;{xL8sgC>L%VjdU7Y zuIIT`k>pnM1sw+5E=V3|KaC{5^cSSRC%H6{l938aozhf04&>nJ>x2C>`^( z9cmG!di56s;q& zq~vmSId^fLrL_uj$*NL$p{){O;do_#xp+%^ZzaN`)L1?zDRLB)`P8O~tW}hkjw2l^ zu8So&F6P2K8d;7qc?wv0P`T#POhKe*7R!c>X&!6KMHuSkuAEY7EGSb%mTCkxW~r7z z4Lh?sDgNQTdrfaqHE_nHzAufLPs4Dflr3I7B27;0#2QVcCN`1FM}iOv}ThsQ958VMkZ`l8aAs_ z9;hJh!$py(mWsPVO{aEMNR6*|?#*pJndn!gZ@uxrJC|J`O+F!3M9hzmO-%Kim2I6^ zZ^E=x;2ld_#+%kn-ZOb-+8aedP~UlDDB>m`Y78Fq1_!;N{k$>Me0Iod9B4Ek=$(~I ziY}(AT;s4ebbt>wn)?TzZeaAB62^MdiHJ=otWL;=#MgXOMD0)-$)AsCUi0&LE%IM% zMd-VlucH^RJ8q?-CB11Wq9z}=B2@68f5F;zvtD0bUancvt>)zg+EGum5eRQmkH}R| z29c?UxstlF^?{y=@rmPQL3iJ+{E7WN*nH4dBN7(p-}NK%0nbZ+L4**6W*ax zj!vAHiFZ8qb%080@Bh|oi>BGcq?+fB{L&@j*b9qEtxt`R;sFxNfbMZyTrnl>Y3fo2Cvgoh4S?k8i+PS6_==8!N#yxv_hqMAj7=5 zsDR0vwHnzuWm2SbbycjQh@8bib${5G(iza2Uk>iHd@XwfNq6TJMD?O|E9(*w&37s` z<%>YZtAY$G6i@lOohS-k?nBrIFOUara&dO5_%8n@J0EJ6B*(2Qk)Ig8y4OV4*tCq= z@Lut%ogSi8ucTMz(JQTTDJ5^%85n?H2NctCafSjRae2fP$_P=SbMgH;iO1QmrP3fb z9q%KuTiMm{AG;GB AR{#J2 delta 982 zcmZwF%WD%+6u{w=CTWvQ(rR0cuht~i2EouwtklNtgjP@#Yh9>?lG>rhM+frQh!}Js zSO^p@#TRHdZY&~Hv@S#lZi;SPh#*K2)P)OI{saC_I_^AV=9_ybGw0lMXRYT$ytdvM zSQMgKvV;Z}Iyc9<;iRVxgT}Kkg0&2lePzzqg zUVM)!^2;wSwlEQG71@g^)C5OSU+khbqmJa11!PgOh;_PkAM=dURHp?^qb8n5P52nw zamAZ&;C{xRv5WlTXPMf%xaRif@pg_#-0wFos&t z5b6S_un()K&p*JLw(2<-oA90IC)~mKC-$Re*TiYGG4FW=cQby3+M&0o1vR|!8qy%? z;MmEbNj0?n8WdY=u6z%Jw&v7Eh5A8h%d`u0so8dF`ETe}Xt0aTB6UIfA?u!Nak>x< z{Wi2X-O_*2A_E&OPB5b#px|b!^h?*+zCrUG)3f>FpEoxG$IQ3Dn3)Q;zc9gu&&;%4 zi@0*8?3CoJQ#O;KlU8;xlN(CdgZb>Rc@^r79LVJCM9$7<51I8)ykp#*c1jgDG47TN zrJ`$+;fd(+!rW}NFze(K#fqtf&zrB|Rr4%z%A~DPbIVGa?^fJ8a?!bP*_p|>)yhir Uq0cPG?#51#yW-4M964Q-zo1KNc>n+a diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po index c2b354d913..a5ae8867e7 100644 --- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po @@ -1,22 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:08+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-09-24 10:31+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -45,23 +45,26 @@ msgstr "Documento già uscito" #: forms.py:28 msgid "Document status" -msgstr "" +msgstr "Stato documento" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Utente" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "" +msgstr "Tempo di uscita" #: forms.py:46 msgid "Check out expiration" -msgstr "" +msgstr "Scadenza dell'uscita" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" -msgstr "" +msgstr "Accetta nuove versioni" #: forms.py:52 msgid "Yes" @@ -85,7 +88,7 @@ msgstr "Check in / out" #: literals.py:12 msgid "Checked out" -msgstr "Checked-out" +msgstr "Uscito" #: literals.py:13 msgid "Checked in/available" @@ -116,8 +119,9 @@ msgid "Block new version upload" msgstr "Blocca la nuova versione in caricamento" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." -msgstr "" +msgstr "La data e ora di uscita deve essere nel futuro." #: models.py:87 permissions.py:7 msgid "Document checkout" @@ -141,7 +145,7 @@ msgstr "Check out dei documenti" #: permissions.py:19 msgid "Check out details view" -msgstr "" +msgstr "Visualizzazione in dettaglio dell'uscita" #: views.py:59 #, python-format @@ -177,15 +181,19 @@ msgstr "Dettaglio del check out per il documento: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" +msgstr "Non hai originariamente fatto il checkout di questo documento. Forzare nel documento: %s?" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" -msgstr "" +msgstr "Accetti il documento: %s?" #: views.py:177 msgid "Document has not been checked out." @@ -203,7 +211,7 @@ msgstr "Il documento \"%s\" è entrato con successo" #: widgets.py:23 msgid "Period" -msgstr "" +msgstr "Periodo" #~ msgid "New versions not allowed for the checkedout document: %s" #~ msgstr "New versions allowed: %s" @@ -245,11 +253,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.mo index 7ecd300562039f88c6ae3e9bc3366ccabc0f2748..fdead81dea027dcf0324ce2dc617534af7bec96d 100644 GIT binary patch delta 880 zcmZY6&ubGw6bJB0llY^pMq{)=tWFi_p(Z3LRuaWji3$>Pse(gJ-=61wjugdi0 z%mbKTFvl_P#&E*;2~Waxn1#6^A$G&_a1>sJV~}7PF2KX^5zN3>a0GsY+u>JOhO2O! z5Q`!kk3Kj7C-9&O_do?XKnM@Qhj1@^39(nag$ei$;t(HjT0xSZ;Vka&Cxw`VpCHFu zhdW_%OO$X1X7GJ+3>Qc6;LP9wLC$yqa>fr}4H}4y#W%>ET7#VMZ^((st&ubE5bo=6 zKXf1`cn@;CCCCLV!+I;0l&%7xVIZ)7cO`wJ|s{@KMO8}%jZn_e{k=) zOm5jQX3D&Y)v{+Dx7n7Oda_HNZ@XHCcN|w)=2z_538~#cD#vkq|GeSel))|AmzLWM zJEQ{{xN@Eb8_CL>$3rHw8PShIkX1ED)Py^1{7CC9$4<(yJZVC%L#MbU~sSeR{flqP29dZx^ImAT$rBfq_yca=v(x|p delta 586 zcmYk&ze^lJ6u|L!-VftNJ@phpOuQ&4A{%Bmhsvd~kVwKtMG}G-2&*i|>E#yo&J<}Z zEi4p<1F=v@Ypb1z{tH%Oz&@qv1;0-$eC*rL%r5ih&FtrH+P7|dQcWT9-ZA4unl+c1vXLZAL1K+%NYaR{1$cLe|(Lt zNfCxJiYXjN9(l{_h$cLoVSdF=U7t^jbmAClW0R=$=5Ykqp1yCRHg<$<;)@(J(9TX# zZ{Qs1O#WgY-anbohzv0wM{VRI>d8K%Hu^1Neyfn qR^ANC6sc8z%=`8(wPL@gf7-kBAA6l?c7>tLg{$#qWh0E`Qy>rgtWbgg 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 9f47cd5ad5..fb37318d1e 100644 --- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 # Justin Albstbstmeijer , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:08+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-11-09 16:39+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -49,10 +49,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Gebruiker" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,8 +63,9 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" -msgstr "" +msgstr "Nieuwe versies toegestaan?" #: forms.py:52 msgid "Yes" @@ -110,13 +113,14 @@ msgstr "Verloop-tijd en -datum van checkout" #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "" +msgstr "Sta niet toe dat een nieuwe versie van dit document wordt geüpload." #: models.py:43 msgid "Block new version upload" -msgstr "" +msgstr "Blokkeer uploaden van een nieuwe versie" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -178,6 +182,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -185,6 +192,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -246,11 +254,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.mo index 4ea5c0b2349e64097b87b48c9dafc3075dd8c8bc..e883efc6217833e237ed7ec46681308521d3cdb6 100644 GIT binary patch delta 45 zcmZ1`y-a$;Ep~20LtP_d1p^~1Q=`dG*%wZp%n`-olbDxYnwXwyrBINw`3=V|764YJ B52*kE delta 45 zcmZ1`y-a$;Ep~1L6I~;71w#`nLxagr*%$KoB<7`;CZ?xaDHP;PZsmyH{FY-U3jkDZ B51#-4 diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po index 89ffce13ef..ef6e8bc44b 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po @@ -1,25 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:31 links.py:30 msgid "Checkouts" @@ -50,10 +48,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Użytkownik" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -62,6 +62,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -103,8 +104,7 @@ msgstr "Data i czas blokady" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" -"Liczba dni, godzin lub minut w trakcie których dokument będzie zablokowany." +msgstr "Liczba dni, godzin lub minut w trakcie których dokument będzie zablokowany." #: models.py:35 msgid "Check out expiration date and time" @@ -119,6 +119,7 @@ msgid "Block new version upload" msgstr "Blokuj załadowanie nowej wersji" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "Wygaśnięcie blokady musi nastąpić w przyszłości." @@ -180,15 +181,17 @@ msgstr "Szczegóły blokady dokumentu: %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" -"Ten dokument nie został przez ciebie zablokowany. Czy wymusić odblokowanie " -"dokumentu: %s?" +msgstr "Ten dokument nie został przez ciebie zablokowany. Czy wymusić odblokowanie dokumentu: %s?" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "Odblokować dokument: %s?" @@ -250,11 +253,11 @@ msgstr "Okres" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.mo index 207dd34cda5c4eb636caff7f12f053a23842a433..a2431293e10b49e4b68a55b67f5eb9aaee752609 100644 GIT binary patch delta 41 xcmZ3)vWR8EX>LP9T_a-!10yR_qlwp+PVQig;`T|*OD|1KPqk7gnEZgz2>==m4f_B9 delta 42 ycmZ3)vWR8EX>J1(T_bY^LlY}QgNfIc^7tg?rI#kAr&=i#luWK-jGp|6(E$J_f(~W? diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index 61bda6749c..fa73e45141 100644 --- a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 links.py:30 @@ -48,10 +47,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Utilizador" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -60,6 +61,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -116,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -177,6 +180,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -184,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -245,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.mo index c6973e312d629307e83f381ed36fdc2c6cda727d..08cb131b3ce702b85cf2ca6d14cd207488e68a68 100644 GIT binary patch literal 3798 zcmZ{mO^g&p6vrDx(D4HWMNz>LSlAVNW_OVfX9e747a_8+?k)&XV``^sW(&Hz#;WSs zU84shp1gR_Xfz&(2O@?<4O$64$|*$fwzDkf%M!Z zkoA63^o4_qA9cL@(g4@7Za0B=<_z?IWNPa#C$^UmC#dQTFo&SOx!NRIU z*8sR0_ea3H!RNp}P=i~+cR}+1W$X8!K}z9YAY3{BfC$yO3L=%xa)>+ut^_|r&YuTI zalfwMINQOKAn7;@lFoO)_29=K#rHKx@qY^rfLB1WTa6?UH-l8K-L3m6kmB<|(%S$j zUmt)J*N-5@^&3d}yb6;4RVXTPBS`D+1joRAAlbbNQXbv_w}795l(!$i&EVf4=~;hU zLKmcUMnUrX3`q3|!3V)NL9+h@B)hLb()$xg{+6LB$i5GxzIzg+yv~87uhwE6q&zQy zC&5=hq&fCU^==RHNzdQkn!qygpj^|S9;Wyxmo)Cc^)Rk}T$Fbj6gRy)XuY`iU667^ zgJMDo;z4mx4QNnpsXrhq)=gSzP)-;wlrzpF5D)4tikk-Ihk9x|E~*_$k%AQ8^<#rXtH^$O0KgR+yqQ=BvsX z7K#Pd5ZXu;vZ(GW?l}kO0Wxj7xOT>5Q~9;Ztk3LEe=1?c)(x%gaVr=Pp$<~>^TKlJ z8&*|1U6CC1Flk7!ke_aa*kh{OLCZ4lR4mq|<`#kHp3f$)tM_^)EQpL{bAmEQNvTFQ z(xRAio&}C_$gsp42%OLPt!yMUO6)0N*+SV|TxLolWiy>N&bVTsvW)w_TIi@LwZ^67#e+tg<^rCozyOjM}|W2%wwFJ<}I&l$>3>uo@nRYV+0Dk$%Go|`z4b3%lvL8oG4xs5W9 zCU53UXpJ_udP#;gN_8wg|1OPCXZN$UE+ulbZ#r$xoOhduX1vVoM@Bwyko zn;4&*DNKvH($<|cHR-uyQO&rss>}*g$7bCFXb5`m+;KEv}j1$n7ZtScC+E(@{V2G2QdmqxUuf6=ArSqRl3YZeHjXNPzz~M%*Q$1 zJ`sObleuC=1;shN508emh}VQWD|k?5Q_vgLB4GsUAJhCL=?}2}d28$CQfXmfp=fCl zSrv=qprn=I$g?g56tgS5z?A%!!&2S8Fg9HpC`=xnoXD~>R2(cEP@%=H?9MLL5xNzN zwp91I3`fu^TpMBc9-lqv?#b+E(W=nyL|9QCx~k0f%t@PSFSB^9!jvCr?z<>mV9G44 z$G2wh@CZx3?(GlRJ~lKkQgEJ*cxa`^Jsc7^Gel5Vtj;xO0p^8fD(ynWG_s)^+*3>h z$Jo^O5#cd0~dft}&>HbX)if=?3AH46}fd%o7`OLtep#L z>om-?KhSX<)0z0xDgCKwp2tp+EPE{T!a~Y!Rmr^cnfPddQD&FPGMQy^g5cE+E&dC@ zy8Vvj9*qA1(Ls}$wc={`x>fNhGv0nUi?B=f(T+E|-4ZA;jvGWl2Tt>%LZclwQS%%& qMQ26^&Iwg%UP!`B7RE6oLs^mBkF!CQ%jK`gQXw5l%Wp@?hVVbQ3^%+0 literal 3070 zcmZ{mO>7)B6vtgC1(xzvO8Ev88c3-oyBkUgn-)RZR8%4~q+29VCFJaQvuU$MgLB-rx4y z{IX-~S%$V7{ZaG-TNryDJb4p7&>A;0HUl=n2f-M;7yJO+0e%W@2QPsSfLFjV@TdI! zzu+!BZ`;b)ec)pty>Eg$!8UjYsPgwINcJCrw}W4TFM=1r+rZzzr@^b>GvLl!;1fIm zJ_)`J(mL;fwgcDKEHyb-&JroxDCnC`@P^J;LG{*Ns!`t7bG1% z0ZE@rAjNqZBtJib_+!80gY@}3e}1->>9P-`bxwkm$NL}$zW{07Z$a|+bIw2W@hw>F z35@RoNvHiF#c=}M4@TewcpfCXA3)OOFA%A*e?ZdbKM?Y;yU{5>T9X?2q(-sRd3g%` zR&;6hi+h5oh?`U$_PhkY!U;~S4mwA5QA8X^1w1pvgIg%(nUGu zWu<(`X)$csVa*fmxQHUXvOz=Iik`AXlC&pFGM83{lbD(9OYwz|joYzemms@MI~{3l zH;tmT(te{E#d`xg5g94MwZbDzD_%tEbPSz32)(pXNg2-QylgfGU)LCJIzsy7rw<$6 zkv^3opsM4ZuwKX|DU-rrL&UZ^%;t>2336slCCenO54L(%XXsFEZUwi+ws^B6*Th!! zW7+GPov_ldx1?nYMxT-$7aR?PH?zyq;`3rnBz*4h{PEhN>}%tKdAqE_U^ZR0L0h+Y zZQ)ouIE2lhQyCn_0c!E7Mst7A*cVK_z?=J8%?7?V8ZZnNnhsA zCwk8HTlMo6L!+$COzh!`RlN++n@%-kDvj?Q-N6&>Bf)fOM?rL@3FeZH4zaH-KE0$| zZ6QjHhyrXR7%t;eC!advP5IubJGeVul+%}S$2Xw) z4MqAz!oG4=1S{*U-+wv{!;7oRRo(Ja!*jeV*UNJ1JGQFUdF(qNN8 z(yWYbWV&HAuXBaG zzX}q^T|{c#Ul;G5R1Nb|u8Y#@r}-$d7!W1hyTZ`Upa$dKUKeV`gi)+0u<7s|3Ku)B GV)j2|AytzA 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 bad47db069..441b223459 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po @@ -1,67 +1,70 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:08+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-11-17 22:36+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 links.py:30 msgid "Checkouts" -msgstr "Checkouts" +msgstr "Reservas" #: events.py:9 msgid "Document automatically checked in" -msgstr "Documento checked in automático" +msgstr "Documento devolvido automaticamente" #: events.py:12 msgid "Document checked in" -msgstr "Documento checked in" +msgstr "Documento devolvido" #: events.py:15 msgid "Document checked out" -msgstr "Documento checked out" +msgstr "Documento reservado" #: events.py:19 msgid "Document forcefully checked in" -msgstr "Documento forçando o check-in" +msgstr "Documento devolvido forçosamente" #: exceptions.py:25 views.py:55 msgid "Document already checked out." -msgstr "Documento já fez check-out. " +msgstr "Documento já está reservado." #: forms.py:28 msgid "Document status" -msgstr "" +msgstr "Status do documento" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Usuário" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "" +msgstr "Hora da reserva" #: forms.py:46 msgid "Check out expiration" -msgstr "" +msgstr "Saída da reserva" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" -msgstr "" +msgstr "Novas versões permitidas?" #: forms.py:52 msgid "Yes" @@ -69,27 +72,27 @@ msgstr "Sim" #: forms.py:52 msgid "No" -msgstr "não" +msgstr "Não" #: links.py:35 msgid "Check out document" -msgstr "Documento Check out " +msgstr "Reservar documentos" #: links.py:41 msgid "Check in document" -msgstr "Documento Check in" +msgstr "Devolver documento" #: links.py:48 msgid "Check in/out" -msgstr "Check in/out" +msgstr "Reservas" #: literals.py:12 msgid "Checked out" -msgstr "Checked out" +msgstr "Reservado" #: literals.py:13 msgid "Checked in/available" -msgstr "Checked in disponível" +msgstr "Devolvido/disponível" #: models.py:27 msgid "Document" @@ -97,115 +100,118 @@ msgstr "Documento" #: models.py:29 msgid "Check out date and time" -msgstr "Data e hora do Check out" +msgstr "Data e hora da reserva" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" -"Quantidade de tempo para armazenar o documento com check-out em poucos " -"minutos." +msgstr "Quantidade de tempo para manter o documento reservado em minutos." #: models.py:35 msgid "Check out expiration date and time" -msgstr "Confira data e hora de expiração" +msgstr "Data e hora da expiração da reserva." #: models.py:41 msgid "Do not allow new version of this document to be uploaded." -msgstr "Não permitir nova versão deste documento a ser enviado." +msgstr "Não permitir que novas versões deste documento sejam carregadas." #: models.py:43 msgid "Block new version upload" -msgstr "Permitir restrições imperativas do check out" +msgstr "Restringir o carregamento de novas versões" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." -msgstr "" +msgstr "Data e hora da expiração da reserva deve ser no futuro." #: models.py:87 permissions.py:7 msgid "Document checkout" -msgstr "Documento checked out" +msgstr "Reserva de documentos" #: models.py:88 msgid "Document checkouts" -msgstr "Documentos checkouts" +msgstr "Reservas de documentos" #: permissions.py:10 msgid "Check in documents" -msgstr "Documentos Check in " +msgstr "Devolver documentos" #: permissions.py:13 msgid "Forcefully check in documents" -msgstr "Forçando o check-in documentos" +msgstr "Devolver documentos forçosamente" #: permissions.py:16 msgid "Check out documents" -msgstr "Documentos Check out" +msgstr "Reservar documentos" #: permissions.py:19 msgid "Check out details view" -msgstr "" +msgstr "Detalhes da reserva" #: views.py:59 #, python-format msgid "Error trying to check out document; %s" -msgstr "Erro tentando check-out de documentos;%s" +msgstr "Erro tentando reservar documeto; %s" #: views.py:64 #, python-format msgid "Document \"%s\" checked out successfully." -msgstr "Documento \"%s\" check-out com êxito." +msgstr "Documento \"%s\" reservado com êxito." #: views.py:72 #, python-format msgid "Check out document: %s" -msgstr "Check out - documento: %s" +msgstr "Reservar o documento: %s" #: views.py:81 msgid "Documents checked out" -msgstr "Documentos checked out" +msgstr "Documentos reservados" #: views.py:91 msgid "Checkout time and date" -msgstr "Data e hora do Check out" +msgstr "Data e hora da reserva" #: views.py:97 msgid "Checkout expiration" -msgstr "Check Out expiração" +msgstr "Expiração da reserva" #: views.py:118 #, python-format msgid "Check out details for document: %s" -msgstr "Confira detalhes sobre documento:%s " +msgstr "Detalhes da reserva para o documento: %s " #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" +msgstr "Você não reservou inicialmente este documento. Devolver forçosamente o documento: %s?" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" -msgstr "" +msgstr "Devolver o documento: %s?" #: views.py:177 msgid "Document has not been checked out." -msgstr "Documento não foi verificado." +msgstr "O documento não foi reservado." #: views.py:182 #, python-format msgid "Error trying to check in document; %s" -msgstr "Erro tente novamente realizar o check no documento; %s" +msgstr "Erro tentando devolver o documento: %s" #: views.py:187 #, python-format msgid "Document \"%s\" checked in successfully." -msgstr "Sucesso no checked in - Documento \"%s\"" +msgstr "Documento \"%s\" devolvido com sucesso." #: widgets.py:23 msgid "Period" -msgstr "" +msgstr "Período" #~ msgid "New versions not allowed for the checkedout document: %s" #~ msgstr "New versions allowed: %s" @@ -247,11 +253,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.mo index 3312aa641ba5ac2341d72ad4501bf3ce6c62c066..5104216595cec9f0b953c5dae4f8d1c4a6a52837 100644 GIT binary patch delta 48 zcmaDL_&{*O6&7woLtP_d1p^~1Q=`fESvE|b&l<(=lbDxYnwXwyrBIX~ALPIJ2kQ$a E0GJICOaK4? delta 48 zcmaDL_&{*O6&7v-6I~;71w#`nLxaipSvK(dB<7`;CZ?xaDHP?$2l-F#V~yVYll3_h E0F=HFKL7v# 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 bd397fc812..b43cba8af6 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:31 links.py:30 msgid "Checkouts" @@ -49,10 +47,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "utilizator" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -61,6 +61,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -102,8 +103,7 @@ msgstr "" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." -msgstr "" -"Total timp alocat pentru a deține documentul pentru aprobare în minute." +msgstr "Total timp alocat pentru a deține documentul pentru aprobare în minute." #: models.py:35 msgid "Check out expiration date and time" @@ -118,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -179,6 +180,9 @@ msgstr "Verificat detaliile documentului:% s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -186,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -247,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.mo index 8f5724339b950f6dbe83625a8195bd0fc4764c52..1d7f582765c68771e6a9e7a77546e4052b9eebee 100644 GIT binary patch literal 4779 zcmb7{TWl0n7{`wYDhmpNH&pa+X`$fkr4*!FmU53M1%ibHFAvk*({^BXW;2(TMohR! z#FT_!Y9uNsk3N{RmC{NnJnPfUgNYBKs4+1{pG?pf(f@a5x|i-ODJL0zd(M34JKyz8 z`C-A#4;Y4m=UF`O+{ai3{9^|G!MJrlV=drM;8Wn@nT$OOt^*fY}4wC%0;rusnA?E*qkAVwk1@bGwX3Sp!9|2E+^nL)G1AY$Dz7df0ehtnB zZ-KP$ckm%_`2&pAg9^9;YzG&EN5LiFMCSFNjdG88Gqy_yD*7f^UL5F)zdz+X`L< zN&g*?aOl+4CK!fd7D0fAvTX$#;M+g99Mx`4Ob}&Oy>3$`*iBr^`T!_Xbb{ zH-ji`nLEn&O?FNZEhEKOAqN|q}XM+%yyI&i#fe`&F%y|qMm-nAXxAt-Vb zlup-iEfFtMUUD4i(2RuI1IN`4J&Z<>qd=YlRywG(Ceutoq-YkGZMMzihUsus*UjFF zoKk6YYj!cRR3or4NVUktu`{TX;t#&G&R$xq8aQLS*{rbbPFL6aO7fLrWN!^QRkwti z>nm!6Xqgt(b<8}nkcH_b8O#G zUgTQYZj9tL(lNhmGs_iK4mTK6# z>X=rV>zZ!H3#y@I@y_US)h?m53pJnS`&`@BVBgAa$0?)}iQeAcxI;U&PH`ljHS-C} zv{eMpO618AMdb2!LJyTBEH}{*Yunkjz2t8yo{ViZ4F~tE(%x5qGmbdoBnrB!87)Y@ zYT3fc>~G(ptS`yYiJihywi{V9hdN2~^&Og1G&apGH?~)IEmc>LiM*ZWMnO*POj8RF zer8r0b*W?~lj8ODoPH*kWKt>K%99-8m~YH9PQKcZX`-KUM{+}|ksm!8Y}uG{bSyUcg;V`y&?R(?oD`O zlEdDh{EZivv3%7(>0N{5gnz;t6tBMY zk3q#KDdJFk-5d7%{Zr87jo{63DEo?e7x7~l?}qSPh8DSd%JG#_S0D$guzjT3P#jVz zT}x;18H_qUA&svJ4Ozy#0k|&1F$O;(0tsIRi$Oihyidt3xiCZ_@Q-6RwpM8m1CM*> z9=C*9D4t0PB^#pScy6j(tvC+KkFz&z`5^A71C*2hZcs>+pBj$V3?!9OnTop}8brd(O=uHA6bJAZlQf&p%}3h^YFz_q&^B!nQ?=29SUgmOVo>m-SYuslsb(c<4l1RR zgBPnvpL+11w~7c7EzxR7y;?+>1+P}Tsdx}Pc@X_i62uO9^P72@owu{|IQqV0b~R|b zLug^dM#KliX2hHY9h$O^Xg74iAlwfl@F?trS6~RvxAF^c5c3t-4Xsw97~BRo!7SVY zFG4&wOY<1CBe4Jjum-!}I~alAVHB#i=7s}MZZrx}gDyk-Xa*gYQW=Kv$2B;N`TaJc zIQ#-ru+u@*4~JnK_307@`;d4DN8mTu12al<;aQl({4U%B-#~c+yOU@uj6u2n5R_kP z2JV0_Tk{`KKHuviIsi{XybC>o>rtO77|0W>K>5`>5dSx%8z+-jB%22zPmcF&G&_2K zYm8d|nk?c)xDj~gMhz9puPm=pUZ2y4PTpTTf3)rm4xQ7-r?knucE%VlUC{H>MZRb2 z=byGTkJ)|v)jq@nZErc`803QEyvv{?MZG}B^dgTcBkn{xp4zD;)0t#~pDSIi?eSDn zOC>XjUA(G<)vR$^FH9R+)+pu*lLr4$4toyf@)M=pgr3m~CC)leEWUDDEF5+Balq4O z)uKh7@|@x)?lAkjy?nzr#=m{H)Ys-!u`Hg6Dy)h+UspHqXEo$qljl$BasK63do-~o zFX~8$Wz8%%o_^ZcsUqrP$-F6d;YEKp#{#uT)hv^EfWK?zoOsb(W|mP9a}u{jh5iE2 CMX=fc diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po index b83bb4059f..3c8bab177b 100644 --- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po @@ -1,37 +1,35 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:08+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-07-19 19:54+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:31 links.py:30 msgid "Checkouts" -msgstr "" +msgstr "Забронированные документы" #: events.py:9 msgid "Document automatically checked in" -msgstr "Документ проверен автоматически" +msgstr "Документ автоматически освобождён" #: events.py:12 msgid "Document checked in" -msgstr "Документ проверен" +msgstr "Документ освобождён" #: events.py:15 msgid "Document checked out" @@ -39,7 +37,7 @@ msgstr "Документ забронирован" #: events.py:19 msgid "Document forcefully checked in" -msgstr "Документ проверен по требованию" +msgstr "Документ освобождён насильно" #: exceptions.py:25 views.py:55 msgid "Document already checked out." @@ -47,23 +45,26 @@ msgstr "Документ уже забронирован." #: forms.py:28 msgid "Document status" -msgstr "" +msgstr "Статус документа" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Пользователь" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" -msgstr "" +msgstr "Время бронивания" #: forms.py:46 msgid "Check out expiration" -msgstr "" +msgstr "Окончание бронирования" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" -msgstr "" +msgstr "Новые версии разрешены?" #: forms.py:52 msgid "Yes" @@ -75,31 +76,31 @@ msgstr "Нет" #: links.py:35 msgid "Check out document" -msgstr "" +msgstr "Забронировать документ" #: links.py:41 msgid "Check in document" -msgstr "" +msgstr "Освободить документ" #: links.py:48 msgid "Check in/out" -msgstr "" +msgstr "Освободить/забронировать" #: literals.py:12 msgid "Checked out" -msgstr "" +msgstr "Разбронирован" #: literals.py:13 msgid "Checked in/available" -msgstr "" +msgstr "Освобождён/доступен" #: models.py:27 msgid "Document" -msgstr "" +msgstr "Документ" #: models.py:29 msgid "Check out date and time" -msgstr "" +msgstr "Дата и время брониварония" #: models.py:33 msgid "Amount of time to hold the document checked out in minutes." @@ -115,11 +116,12 @@ msgstr "Запретить загрузку новых версий докуме #: models.py:43 msgid "Block new version upload" -msgstr "" +msgstr "Заблокировать загрузку новых версий" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." -msgstr "" +msgstr "Время окончания брованирования должно быть в будущем." #: models.py:87 permissions.py:7 msgid "Document checkout" @@ -127,7 +129,7 @@ msgstr "Бронирование документа" #: models.py:88 msgid "Document checkouts" -msgstr "" +msgstr "Забронированные документы" #: permissions.py:10 msgid "Check in documents" @@ -143,7 +145,7 @@ msgstr "Бронирование документов" #: permissions.py:19 msgid "Check out details view" -msgstr "" +msgstr "Подробности бронирования" #: views.py:59 #, python-format @@ -162,15 +164,15 @@ msgstr "Бронирование документа: %s" #: views.py:81 msgid "Documents checked out" -msgstr "" +msgstr "Документы забронированы" #: views.py:91 msgid "Checkout time and date" -msgstr "" +msgstr "Дата и время бронирования" #: views.py:97 msgid "Checkout expiration" -msgstr "" +msgstr "Истечение бронирования" #: views.py:118 #, python-format @@ -179,15 +181,19 @@ msgstr "Подробности бронирования %s" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" -msgstr "" +msgstr "Документ был забронирован не вами. Освободить насильно %s?" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" -msgstr "" +msgstr "Освободить документ: %s?" #: views.py:177 msgid "Document has not been checked out." @@ -205,7 +211,7 @@ msgstr "Документ \"%s\" освобожден." #: widgets.py:23 msgid "Period" -msgstr "" +msgstr "Интервал" #~ msgid "New versions not allowed for the checkedout document: %s" #~ msgstr "New versions allowed: %s" @@ -247,11 +253,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.mo index c0cdf0f1b9447d93ddffb85f287d9f139353ff09..0546f1fa47fd3c0bc7a8f62d638fc8f7ab8ae665 100644 GIT binary patch delta 45 zcmeBU>0_DD&TVL@Yh7|M3sa6WbIq|`slh-mP0suIh B4t@Xt delta 45 zcmeBU>0_DD&TU|#Yh_%rGULPiCZA?B1pq#5 B4z&OP delta 45 zcmZo*X<(VKgxkPG*T`JK(8S8nVB-4C{62|!>7|M3sa6VQnekzMlM@-EC!b+70RTQb B4yXVC 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 ecedf5fde4..809c57ed4d 100644 --- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -48,10 +47,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "Người dùng" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -60,6 +61,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -116,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -177,6 +180,9 @@ msgstr "" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -184,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -245,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.mo index 9928b708468982aadb2d14b97a8c1adf5e094537..59d2ad8ca25c014cbfdcefa563a21ee6c8c2178a 100644 GIT binary patch delta 48 zcmX@ae~5p>6&7woLtP_d1p^~1Q=`fES=LUT!y3i!lbDxYnwXwyrBIa-@9ekvE9+TC E0E-$B*Z=?k delta 48 zcmX@ae~5p>6&7v-6I~;71w#`nLxaipS=RFVB<7`;CZ?xaDO6>|JNr%UW{uwbjr9y8 E0EfR2%K!iX diff --git a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po index c3fc25569b..4ffd34e056 100644 --- a/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/zh_CN/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 links.py:30 @@ -48,10 +47,12 @@ msgid "Document status" msgstr "" #: forms.py:37 models.py:37 views.py:85 +#| msgid "User: %s" msgid "User" msgstr "用户" #: forms.py:41 +#| msgid "Check out time: %s" msgid "Check out time" msgstr "" @@ -60,6 +61,7 @@ msgid "Check out expiration" msgstr "" #: forms.py:51 +#| msgid "New versions allowed: %s" msgid "New versions allowed?" msgstr "" @@ -116,6 +118,7 @@ msgid "Block new version upload" msgstr "" #: models.py:54 +#| msgid "Check out expiration date and time" msgid "Check out expiration date and time must be in the future." msgstr "" @@ -177,6 +180,9 @@ msgstr "文档:%s的检出信息" #: views.py:136 #, python-format +#| msgid "" +#| "dn't originally checked out this document. Are you sure you wish cefully " +#| "check in document: %s?" msgid "" "You didn't originally checked out this document. Forcefully check in the " "document: %s?" @@ -184,6 +190,7 @@ msgstr "" #: views.py:140 #, python-format +#| msgid "Check out document: %s" msgid "Check in the document: %s?" msgstr "" @@ -245,11 +252,11 @@ msgstr "" #~ msgstr "Enter a valid time difference." #~ msgid "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgstr "" -#~ "Amount of time to hold the document in the checked out state in days, " -#~ "hours and/or minutes." +#~ "Amount of time to hold the document in the checked out state in days, hours " +#~ "and/or minutes." #~ msgid "Document \"%(document)s\" checked out by %(fullname)s." #~ msgstr "Document \"%(document)s\" checked out by %(fullname)s." diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo index 2808e032324ee62494991928be3a4146b0d7b997..081c594fabc70f1269e48a529bbdfd541bee06fc 100644 GIT binary patch delta 61 zcmcb?d4qF97!$Xlp{|j!f`O5hsnO&_CRuJn16?Bv1p{*{W8=x4OqG-QnWK1o67$ka R6Vp?z6cURzXD}Bq0s!%y5UcOqD!7iFxUziRr0U R3W-IN8JVLuXENtA0s!@c5Ssu1 diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index 08f3fd4735..38b0233630 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/common/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo index d434f0d2d4a9a3e909356df99c18bb102188d9b1..cca57d9b8577f1daec8d817130058f045f7b0d81 100644 GIT binary patch delta 61 zcmZ3+v5aHGUq)_2LtP_d1p^~1Q=`coOtRdD2D(NT3I^s@#>SHkm}(~PWQyYPNz6+x RO-xU>uV#wgEX*v-2mtOE5E%df diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index 9d94f4b720..16256964c2 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.mo index f5fd77caebe2207d2de5cc4dea14b4dd661062c9..d899ed42235060f842ec867a4d13f73806091b24 100644 GIT binary patch delta 64 zcmdnVxs!847!$Xlp{|j!f`O5hsnO&_CRuJn16?Bv1p{*{W8=x4Ow%UoGe`0JB<7`; UCZ?xaDI^ugJ2`IdU^Zj~031^ha{vGU delta 64 zcmdnVxs!847!$XFiLQ~kf}x3(p~2)tCRuI+V_hRd1tUW%1B=O>Ow;&%67$ka6Vp?z U6q1VLog632F-LFiWHw*~03NgvUjP6A 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 16110a74cc..8b8819d328 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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/common/locale/da/LC_MESSAGES/django.mo b/mayan/apps/common/locale/da/LC_MESSAGES/django.mo index f2c9248195463b85df82f47a87f9f26c4f2c3893..2aa007928790b3bd0b4a469095b87659e3551ee9 100644 GIT binary patch delta 60 zcmZ3)x`=gyF(bF3p{|j!f`O5hsnKLRMpz>% delta 60 zcmZ3)x`=gyF(bEuiLQ~kf}x3(p}}N3MpAd_`eG-W+s)d^Y}}cx zRD`AYB=n&q_@GaUAJjJ?=!5zctrQfh557n!f>01&ih}s2zyItsZ2anB&iu~3bM86! zo^$83y(=TltGm12Fvv7|7y3Zex1jF36PG19!raghjZG{N^x*9FIUAbDY<9cp@2B;oXd1f=X}!D#3eD zfj@-9@S|jW8FDgn1#08hpek`4_QBtw4w@qA5c$n8#&ghxPs7(BkNJ+57XAQ7;Ezy= zQ$*E?yP-BT2o*2`Kc;<;LWl8hy{&bFWX&?3hB;V<1-Js6_hWpCF#~^wN|+-$rkR9K z!9(z2cpmCxmmoRJ2D}|!gJbYdsC8olt&J8FJ_Oa$15k-i!rgFXfcoEq@jequd z*HESX9uC0`$YXxxMfKwTh&}X4emkKmFbp-Hg+(|Cbyq6M{5dH9*P-HG*iQYG@B=2| z9wv^Lp-%EGREam>o$xx`3;TBv6z+pHxB}I(6gN!q`d|hQLCqh8xR@uQ{<7zx;zUgh zS{8rQ&Q(UqD7pvLDID}cbPCO(Iw{NIJD_CR7_E+ft9zj;b>nxQz-G^8KdMVCQ41f4 zE&YFgljOJGoK>Gj&|RqRN*;Ali7ul~If<&A67^XpmZ*X%zeMeoq*{opirI|It~r%M zcR`Xxb+L3=)USQ08O_w@U$o_DJao!+>qU0K2^;0I4Z~9n-#?pccUZ8#{a=Tm7R6DT zcx4@1uh;4&XEYNV<6(O!c_!ih>9{4SJR8dk+SyG!6EF7P*LHxlOjoLNt=66HXch`? zal*+LOH)NRKbg<>9(%?;ZqHQ1YAtYQ$WU^M`NFhY$h#8-r|?KAU)Y~VdXIWxBEm ocSX+H3(ez~IS05b!NaX~6_wc;)XFcQCi)%c<8@S~x3CZY#w+*& z_hOYR)gcHPAKW1e|3Qh3+ZV zQM9$+$55-Gk8(9d|0snL`W8w`JDqNI^y~at?Ckbwi}YotD9UmJ#ZWl5+0e?rj{zFm z1!X=+(NSra^!HSD3VjdcFnivc)Ilh*wG<^hyGZT8LW)A?tg~OQ2GK^*5pASstD9%% zw6*7r*;O)r;9KL>Os#6iypm^&gGN1Pyh_EKv}P={g~%37z2^C46WPgX$*b6*$%&%s z$yD=PXFRsq&84$jO(r*zano+jb>sW@rAO^)ujU1QI?n(jChKOlq}|QwY{q0WBkpkH zLD!PRXmHYoQD8=cS|Rj;#^8TJ^Cv& zMbDapRqKtNvSFQ7oeq4n*YmwXR1dA+m`Ds9IAnd_OjysiHHIm1lX*xp8YHu@Xy`7~ gqhPWSd9|@q#)h@XRw|K6R&Dr$EK@_xi-}n53&4D{C;$Ke 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 286f860046..e2d422ace2 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-10-28 07:33+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-10-31 19:01+0000\n" +"Last-Translator: Tobias Paepke \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -184,7 +184,7 @@ msgstr "Benutzerlokalisierungsprofile" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" +msgstr "Temporäres Verzeichnis zum systemweiten Speichern von Thumbnails, Vorschauen und temporären Dateien. " #: settings.py:21 msgid "A storage backend that all workers can use to share files." diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.mo b/mayan/apps/common/locale/en/LC_MESSAGES/django.mo index 2c2608df60d5de2f2402c4ed46ec76deda345c71..6e17d877d88aae96521fe91c78672ecbca5379e2 100644 GIT binary patch delta 24 fcmZo>Yi8S!!^mxDsB2`bU|?irYP7kWv4;@=Om+qe delta 24 fcmZo>Yi8S!!^mx5qHAQXU}$1xXt24Qv4;@=Ot%IN diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.po b/mayan/apps/common/locale/en/LC_MESSAGES/django.po index e6af7924e6..63e92bcef2 100644 --- a/mayan/apps/common/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/common/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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.mo b/mayan/apps/common/locale/es/LC_MESSAGES/django.mo index cb9238c77035ba6bc2b3e2173d6d61b79c4183f6..95bcacfccc9ebdcbc6fc3ad53e399dd55da854fd 100644 GIT binary patch literal 4347 zcmai$O>7-U9l(cBXmQh)mO`QBV?qhBY1V#rn>2cn4<>e$pg6H?heInQ=Di(1Z?n7e zIddu zMeggc3%?2Zsh@F@scyk#_!gA!?*Fh-pMa+zKXr-Iqi_R03Af=<_$~Mm_c{X? z@Kq>!+=3$aSNJjbZzys{?^WtP_%P&=dK`Wf9&5P(MZa@U|EfimxF@Gj~=a5g;6HJbZ>Nva%6SxRphO)1lQ1<-}d;z;_{ASC`qm@OhZP zZ7BMD56V7%2*uuS!Y{zzK-?8=A#!3PIgT@Ay#kx zb5yRyXL1~A5Mx#@#b8kx%PHOAD^Id&>I$q3#gENU>JKLRt6KjfOJxoQh|0CH-y+{2e z9V+L|!0MjqU$bSZt8G(hljnNJ`D@m*Z&T_zSY0_CwvD%XE6Z(|RZBfrS86Fu)l#Xm zva$o~br{-ywl&Jif!=mIx-jKPHx>+h?dm+$J*(3!40AKWm_xo9vOLq(l`Bk@^;vtQ zZE1SB)wvrCWG>bgmCSG`3tu-`9$%ZP@>#F0Z0Krr&J~3#)w$YxTVj>K)TynI4U-RZ z#~M}-y_21cWtL54WN#IlR@|`Ttgu{-f?7#4TzA;acfPsH^ignMpLjDVsLrEIJe7uJ zxkHf_THL(l>N4Gb5Qw#Ym9gIou14QWrX1ARQC-UVwhVA$lWH|9#Y}3o4wY^`*7!NM zhI?09omIA&RhO}IoVJy*sXQyKx)QTMU8%OC!}`})E9ksgEU0x`xa$^#Il89j`V8+%SnGpnu=rtvh6LwQ2r zAB@pPVDec|Yu-s|N-n0!SBY7Ip{rNTh;&_9Ufq~lw^*x6R>L4mlP}kUkZiiHo?5%I znVgeShI}Gn-qj18`P0e#e6sMg?ksdqEhL?1IvoU)bqpu-PRMnVg)_SIZ1>dsQyq?} zON3CeDcj2pw(sh7*R!52ue)G;<`8INGugDJ=<1E3DYLMxr?;zW*qxi(+1Z(m*2%W) zjajTZ=bI1xTp_zjY+8i5yq#puhPj!k)r+euw>LdM+nGA&s6Zu(jE3x}vNx(ZN=#Os z)qNr?*lO|W=K18zZMoJT$x7LGDK)06&-AittZY}?FtwJ~-sH)7=L;%KIgGbqapA0P zE*GaueQZ(B&zzk)SiYrGq>cb7_1VR~d z_Ym=k#Sh4n=(WkSmkwKE;+wJHd-im-)WJ!NNe!hw7lzVfiVQb6{bDUyl{$(9<3!s` zPOveXN<*o#xHQGz8%ZTtWnLTK-_EW(sq%g6`=pyyO9O8QhAb&{xp%X$-q9W?j?E&r zX*u)_3iRGCYlqlzgcvfl^qay3B8*N$T^jD~(o&2pP-WM7h}ZXa`xF)mg!G`jU1>sv zEJ3=n2VUgza!9!|ebOOzzozrBh%_@-X0)r&l_s=zvsBCUoty_OpHri1$pfjZ7<}>_ z{f{~%_KVq#H~QJ$o8@8ONkrmKrb8I*J~}Sd7p*Huf*?TF}>UC3%8(QrGl}{r$%V zg5(A9jJjl{hP=@Bw|-{S+ToUKIvv(o7RSe8D=tHMlWUxcWopW}ul8Q=*EyMancS~S zgLj&hZ-0^!B+XkF`(Ndn?#k-X3og22Xb5#_tt)v}5LmwLf@~->(arAhF~YZ-VO)w} zDYvo#C8oJu$*n|P<6?|*@Lg+B{*3uSQ#_iC!D{U*`J)!!anYs|8mQ&ART6(q>yx}` zvyXhXWz15Ij&xCkVm|KYvey~uFt9|tNV2`mROowB(-)fJ(c}YB*gBYw89OY?#O5kD z&7|JqWjaDkCc=-u9umu2u0#(h7fqLC9mxi>-&M!)kd^$cpvJ`fKnjuAhxhYgRy~KG zV>Wo=;{yMyn_@)xT#iMRY#CDPSuXY)x-k`pX^x delta 1405 zcmZA0PiPcp7{~E9H6}6tj7inDvHBW~jk+6VV^q4OQqU@bMH}_tp9D9196Q!U1PiE|&&(O%3m#^TGS{jH7p1}t)ZAI`@=kW0*IT!Lq? z4X@ybcnw$KUF^mexWJeh^OgZW)6Oa%V>gcA8q|fmaR3jauB%`N)=&X{!an>3`I$fI z^#3_*$BWpDe>LZ`xSaVd93Z~=mw^_3jaqOHm*PAonh(;EsTo54GCAzRG1Shs;9}g1 zXVIY&XeGL?@4=NgfQqvbwXq@&5Z~-zpoI?M@07oSpE7^PD#~;j(TDI0{0@(x5}Kvs zQga(s@_R^Z^B4#58E(do&PIj4LIwU7mDmxSS;L^rz{B5gAk2EcyDp*9_KY^d&LDa^6Zk|8iMg6tlB~B>g%czC!AhFB?)U$ik{Qo(A z!n~7hXrW>J2e+bjwy3A!a?CSdk4oSGDq$a0$!T1TXL_hV6|c8-^xCDG%1QOiS`G!$ z;>51M!BD?hYEdPw7qDId)P@v9iCT{OJAi6>{`yLCn$Xtk`KwfFDv{cX2K9cJUOUJ) z&n-f|Osa|=l^)+m9BTS}RW&_2HGNHLdO6kfMe9q_r*4Kv;-kldQg*3zdv;>};cQde zT(-6SRQ9C(+%{`>PTDAr0_#$nR)Uh7bU`_1b>;^bhW2P+OG)5YgR-rqF8bb9gQ?1- z3xmhA_GC$SAu8-%u2 zb)oywFUPhLC$<_h;A|y{PwEa^@e|+r;gnwrB0sTHE^>agmiTFoYm`pS*X<>;V!e|# zj8p3;rDJZIfwmKWllWnfj@rGBy4W-zZlf$E-$oRm7R5Q8R#lRl7yeHuB9Zq?W2w!q HzRUjs=Gx4~ diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index a399ba8053..3cdc8e7ca4 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 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/common/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo index 096c011957631e4437b5da526033c815f84a3b36..b5a88d03a79221f09b8a905b80770b2f07531948 100644 GIT binary patch delta 85 zcmeAZ?GxQFi`CfBP}j&04*d8zg0OV>IzyJUM diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.po b/mayan/apps/common/locale/fa/LC_MESSAGES/django.po index 28d5c8b2b8..104af55de1 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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/common/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo index 8a507d50cc19fc7511a3cb41150be6ebc5d1078c..13d3146c262fb41f96342457100dbf00b12ed0cc 100644 GIT binary patch delta 1765 zcmai!O>9(E6vuB%u^lW$(2633i%^)_nKB=(lIcbb1VU&)5<-C0Fnz#~VWz$}W0=*8 z3lpU-G}Q=kBMBjynjpy}e3-Z(L)ef&f(wNN!jb@i1>FD({rz9x$cO|_-nqYf-<*5C z?tOD+`421nTZ=lrH^>OO6usDH%tlz4!+?C*VT^@eg`9>_)|cS`oC&#X?yTJ=nBjdM z@|Y70ay1Rt!&6ZE9>F(_@lD?=#_*V7hBx3STnV?qZdis9_&Fq&nS^h{Z=e#HhO+w| zz7B6g+0DQ%_!#n-_D*A7gOQL+;9TOHK_)UxLLQT0=z$-H>rdb^*1Mnr9EJ+;HI(CT z;bM3+T%U$iX3jz-eg#sj`4hehZ$TA$7xoh0{KaGp_L7AX$uVd{0j_{9RKV|`Dm@03 z$Vn(izrsn5?JDeJy=UI+zA8+y{t?FD6}S#Qh3~>)vhjB^*~vti{sPIxoQIp?1^6NC zCaMCCK~0ab9VhyLqq>%5>V<{HGO zxe4_(+=I(u*8*c!!6=-BW00TBb*O~zKvnb*(loP_o2CMyQ13_K5Ig`msUTSk+jagj z&;?Q=Z=rJ7lx`+#P@O+}1Bo&!Nr^66Q&hlOREg?*)95>>I`JMVQBnz%s}dZAKg^^b zU5z$nVK`CcYEx769jl$XRFc721mCl&mZ-hzj6`=vU6kk;^&g{q6GxYzG|LaZW#&P9 zlA82KOM4GGx$=N#bFPyuJLA@?0XG5=W;W3%<+#JY`I#q;v5#l*;MV#1}lEe1}jg)Oeh+KH@Z8?|zy zhO8bRS^xk5 delta 1498 zcmYk5Piz!b9LJ}nl`btU6i`5rR}s5~?Xp`N#o_^@hCoY#c)&lWVdic7=yZ0SKQ<&L zn|L9S#LLELj4|9y4e_#uL=R%v19(^kH80T zH~a@4hCA3i0%u_fz6iP1_U4)FW8pk3!^=<)cHk~}9rB>}6&!+JLnXKkcfjup{sg(a z-x&1VA8;%D8;-($HYwf-pMd+|F7kUPm?*&l1k;E(VeY>`z3eG9ek4xE5Lzyb1mzcZ2I2T+Rpcv>&q1F!Kpj>3z?H_5I7 zMz?J!*$dAS8+ZyXL+!r-$?bgymFNyU34bl_AED~)#LvUFDmu-i3eUk;;JZ*tZo>+^ z2dT{)q)N4NJ5+)La2y_nD)`xAeZJrYsC{oh1N|a?4<09ee}w)YWbzFQD&$_l`%s7G z7bwL;l&fzx4iVwip%lEpphJ5W9)gSTDR>p$f;Zqb7*Vwf|BFF|ZynnZHabTC5$By` zK}t>+H{OI*;;WD^;O)m{N+vsk?_Hn$Kj?Xx4&{@${wSFeJ~VYz!lsLb34MP=uB%ZC zrE&^a+m7M}mtvVZvDuy`Q1OrB6Jr*EisXEGJ8_vl zgE}#(0PDx~dmh7exVlS&U-q}{N~@Xp$rTg2#0FWDS)SU^q%N~&)rHn%O_Q?DWGP>{ z6#FhpE2fp$cbr{KjUR_5`|l+U7umFG%$bIXo3S-6HEGKRuHkH0F*Jh_@o-_5?xq7WrE*%`MJu^L1H#7CQ+KJBj z(v^_~KVHoJMLTC2N#}0qtxj#*vF^p;Kex0m^wwH7$(rbTSfQqQ<|3E&)=aCJCsGzH z+r&_|S#h!RvplirQ|z<7_j#Tgo2|zU7c4oOq?_J`*4Lcz^B|8+JZaO+xHxog=e@Pc wDHGTzchiA0sZD$Y_tvcGT{qFBueNeUzG*b$Aal)lQv<@~jRtfV#^(F}1#I))U;qFB diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po index ccb2dd5320..ff667fccff 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/common/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo index 6e3f7b20c9b4bc8fbf2fc334ccef7abd802d1325..a87109bddc2070b25ee2ab7ced185966fcc77168 100644 GIT binary patch delta 83 zcmaFI@{VP~cVk0CT_a-!10yR_BV7X%0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPGhIUi mT_Xzx19K~50X0|TxAf8C(evdrSl{5)Nk#FA7i1tSAPGhG8? mT_ZyUBSR|#i^*DyH9S6vdFiEz=|Jg>(#cC1qbKt+B?18bs2Cam diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index b0e2fe021e..4254ab7cd9 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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/common/locale/id/LC_MESSAGES/django.mo b/mayan/apps/common/locale/id/LC_MESSAGES/django.mo index 1c5038b2c8a5eb277881c52b39059c71fd97b876..3ec12cb1271f0c657289f487d654c0175ca468d5 100644 GIT binary patch delta 85 zcmeyw^@(ePB(t%hp{|j!f`O5hsgbUMiGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6s ofv%B-f`Pe}vGHUd=Gw{En4@@n67$ka6Vri8GE+9|vp6#X0PuMifyHDW=2{+~#Ju#<#B`u^X3FFf%+Z?-SezIE>U0;> diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index 4c1491325a..c09b1e73fb 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/common/locale/it/LC_MESSAGES/django.mo b/mayan/apps/common/locale/it/LC_MESSAGES/django.mo index 54187a20300266751fc7ba8a1496a3070efdc93d..cc57276c96748d2a8afe60a3d7cfe64044ec2d17 100644 GIT binary patch literal 4188 zcmai$U5Fh?6@beaU3U_HHbz&o{#4YM8I!(qXR-<5W=D)O6CKEG!pvj^AHAEjoP_J}({LLehu?*d!XH9RsvpCT z!kr0_30#HWhWyl@ zxX5>}z|-(mD0YvaROb5#6n{=a(Kii$PVN?M1DxEW=s&Jt*_~6_k0u0;OJFgQEX`5Ebg|dz*P*fFid5&%h-pHTEog z488y*ZZATa*KeWN{Uem`{t8dPSE1zXU+wdwBuCyKgM?C@fRe9M?eiHZe)ZugxC%vX zyX6>)-8=30dH4k5A3#E6y?Y_CKg}t*k~->hCY*9ezGRM1a>|_KkXn-b z$szHOH7bYHlpIGI)HN%&5>q)o&iTpuPO0-yVm!wwvHKjSIy3DzpS8m{6ZEjOCfZbo zYB;nZY*ksd*E=kb+RVPCK;h$omh;+{r7s8i%yfM-6Ao(a)p6TIZL&=7`tr6dnYSr)6|9b4hiy|@z2!0+dg|(?ucEq| zrs`^;T@mfbmO6~>&~5FxVx+hIuFg%dr<(`{zV=m?>P@Rt7si>{BbZ~p8Dk!GRrI-u zZiwwYZ40xRS)KXONOWOaTr%Ua7~U~1t6!TKOSf4?8wOe}`aJiATCB>_7DOeWI<*nm zF!?a^*sywBdYMTlvt*)?xkVpQ=KEz|;qP@*j4I-&uDhWv0-TtnT6KklNv&2P>gHoj zo-=D0`@(7$ZQfH)6X#lOD`Qi6R#z%XfHdbTCTx*NGlaflQ;mn(q8%fDS9|pBy^D(tr?omG_v-jMQWmY84>s^;N zHOg~twyS)zklddq(RRn#-Jp$>cc(-wQB4~pS?Y`RX7=h;Fe)X|I+}1hG|M5iV_6!$ z&_=V?%%)*I45>G&f={U=YM6>?wCzj4HoT|qZZ&0$Oe{?iwg_IAISEZq-J(qEOIL^T zgu*{uqm97iv!HI4Ubd!WB~6~8W+{e&UNw6x*X5n9ibdVX#&cllhO zW9m93lx)cKGDGaehjQrkqRGbu*y^Wp8TW?mxR(#VFv`hHj{tt2ubaY6Hmu19dL^37 zF@x#t7{`Oz+1=gUUL88OW$(xrv!xHFbiSO;WvYoy^DvvWN@iW0otau)SzW#tk-1)f zYSFVj6?nNfX1dYdiL>lKuDGIylwYuM;nv2rFl>dn@KF+ zLa5;LMpL`(Gp{#kB?xvJA0j+qThto1TwfO0e>>@Wl9QfN_FX$kozB@DO1Hmn_9-RS z%{J?;iqUDOGqb~rrfQrX`w)ELbroGE!YpEG4#X*SJFIQSuHGHG&V!#-F>+!}+D}Qm zP~CJO+K7IxG6hy>Ay%xVc1QHnxqj}IBgSb)wWK&t zYqHXgkZ*es2Iy+OaPs{?x>3b8u!Lzd%EWq>ouyx4)G|j=Iq|Y>NA*6Gooxizp=Cv`jVu{sZ}a;i}}_85|PH%eJUoU4tdoX9{Rd*N<+le*2RO*c-Ty&GuM6B zY)j(feeJ9C2aZcw#nSJPX|+DI5)YTv9RisfZ0XL^xMU+}`q#dZ&5aG(>!y!2{fo)7 zA=Nvml#*A*A!sepn{m8Y}I2ox8%BSjjCbz>Z64aqa)Mg9cbwr&cmu zQtD;e=x}w*6aDgEuFOp86#^baYY_^Sv?wU38y(6(lGS9BL($fw z3cWaZ^W;H22_kyZll1Pbh*qViieB_k@KpbAyFPa2HkQ<^-`Ig$D2cY?c`JXmGf!a(2jlq|9%Sw!3#l38QrGF)P{)>03aXFvNsaYJu zi#UmQFhhRzn!ymRB01DL%EB8c5B`k(gIww_o$N${o88lkQi99wKVWuLSy*)#2xbWvA=rdD&htZ#%SsM=lg$^hp6lg3FL`0sE$XJJbF+Ka4|T!GdD%(Vn{abkCzmaF_I>AY zZ!sw8S{OLRpzha9U=zvt?is(j(C`;{!i07{dBwgfq_PI^*0l^;<#JluX$a q?Dy_zJJIvZwxq&L(Nr2i(?o?Xl3Lr1RIck>qaHXxEy~cJKK~D}IfR1% diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index 790f2d0b89..c1edcfa96e 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/LC_MESSAGES/django.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-10-28 07:33+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-10-30 21:18+0000\n" +"Last-Translator: Marco Camplese \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -185,7 +185,7 @@ msgstr "Profili dell'utente locale" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" +msgstr "Directory temporanea utilizzata in tutto il sito per memorizzare, miniature, anteprime e files temporanei" #: settings.py:21 msgid "A storage backend that all workers can use to share files." diff --git a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.mo index f53c46accab6e0e77cc9d7e3ef6ccb1fcd25f44b..91e85e30b45e781c75e5134d436f5b452690b8e6 100644 GIT binary patch literal 2179 zcmaKszi%8x6vqc}_;Emh1PBQUOd>_H1?#&rP87~D;KWX_${JP2|;FN17<6~s>@SlFHcp(=Jj_T%b^?|^LQ zU6A$P1Mw4|VBz|G4syP~2U+hokk7dea-IGFIS&&!gwNTFh2;)_oUg+m>(7GtiB&9Y z=QWV^df+}V1Cfq$u>5$i3=g)+@js2par1TJJn-QB@EJVVCfh&C8w`}QtP9*M^ZOup z43h`P2eaZ)OwKv`^%UlK92q_EeRvj=<9!5^^T~tr{8;&f<@luQZc!Yjyo_^FffDJ9 zI419Vg)uwRHwz?W=)VFBT~`FLkR)PZsI*aCLsEs1>uwRqx1=~*nVpFQIh&Pl*+o-t$BTQr9M?_FSnO&B&a#v zsGW5-;8I4Noea?jx)SP{QQFSQ80GO4<~KU$qEk2I*l3UPXvxMd(YD``r@A`q`reYI zt=dIX{viG$MjaI zblk5S_=gZ3NLQ`O0j=DsUG*yW5Vt9z;Zkii5@jU8<*HN9^CR~v+7PWc7DcA`%eY?` zEV73`5H%Q3sJayj0u59pcHFVtx}gw@LlMo!-Z2M2)z` z#xcFioL7!J+{(*^7o)43*d3-d+3>M7`FTMP1+$gvD;3Vx!XO_jJ`01Fm1?M}VJ(=O z4xqt?cD}NnYU4WE+q9-uZIe@PL8sH$=6l7~(}p%trX#K?)A{(mkzW@-OB5SS{;5rG*?Daq=#17$?*X`!UzT168=QVdCa3q4Gc9p5&Ejor OMfWQeal|`#HvI!l(0I83 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 1984eebab9..c00f23d2ef 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po @@ -4,14 +4,15 @@ # # Translators: # Translators: +# Evelijn Saaltink , 2016 # woei , 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-10-28 07:33+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-11-09 15:54+0000\n" +"Last-Translator: Evelijn Saaltink \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +26,7 @@ msgstr "" #: classes.py:53 msgid "Available attributes: " -msgstr "" +msgstr "Beschikbare eigenschappen:" #: forms.py:27 msgid "Selection" @@ -33,7 +34,7 @@ msgstr "Selectie" #: forms.py:106 msgid "Filter" -msgstr "" +msgstr "Filter" #: generics.py:126 #, python-format @@ -56,7 +57,7 @@ msgstr "" #: generics.py:298 #, python-format msgid "%(object)s created successfully." -msgstr "" +msgstr "%(object)s succesvol aangemaakt." #: generics.py:323 #, python-format @@ -66,7 +67,7 @@ msgstr "" #: generics.py:334 #, python-format msgid "%(object)s deleted successfully." -msgstr "" +msgstr "%(object)s succesbol verwijderd." #: generics.py:379 #, python-format @@ -88,15 +89,15 @@ msgstr "gebruiker gegevens" #: links.py:16 msgid "Edit details" -msgstr "" +msgstr "Bewerk details" #: links.py:19 msgid "Locale profile" -msgstr "" +msgstr "Lokaal profiel" #: links.py:23 msgid "Edit locale profile" -msgstr "" +msgstr "bewerk lokaal profiel" #: links.py:27 msgid "Data filters" @@ -108,31 +109,31 @@ msgstr "Licentie" #: links.py:34 views.py:164 msgid "Other packages licenses" -msgstr "" +msgstr "Andere pakketlicensies" #: links.py:38 msgid "Setup" -msgstr "" +msgstr "Setu" #: links.py:41 views.py:194 msgid "Tools" -msgstr "" +msgstr "Gereedschappen" #: literals.py:13 msgid "Days" -msgstr "" +msgstr "Dagen" #: literals.py:14 msgid "Hours" -msgstr "" +msgstr "Uren" #: literals.py:15 msgid "Minutes" -msgstr "" +msgstr "Minuten" #: mixins.py:125 msgid "Object" -msgstr "" +msgstr "Object" #: models.py:23 msgid "File" @@ -148,11 +149,11 @@ msgstr "Datum en tijd" #: models.py:31 msgid "Shared uploaded file" -msgstr "" +msgstr "Deel geüpload document" #: models.py:32 msgid "Shared uploaded files" -msgstr "" +msgstr "Deel geüploade bestanden" #: models.py:53 msgid "User" @@ -160,11 +161,11 @@ msgstr "Gebruiker" #: models.py:57 msgid "Timezone" -msgstr "" +msgstr "Tijdzone" #: models.py:60 msgid "Language" -msgstr "" +msgstr "Taal" #: models.py:67 msgid "User locale profile" @@ -203,11 +204,11 @@ msgstr "" #: views.py:37 msgid "Current user details" -msgstr "" +msgstr "Gegevens van huidige gebruiker" #: views.py:42 msgid "Edit current user details" -msgstr "" +msgstr "Bewerk gegevens van huidige gebruiker" #: views.py:62 msgid "Current user locale profile details" diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo index e6ddb551218aacf7ac38b5ec4947bdba97dd4dc1..9f9cde7e7ca858813469f6029eaef861d7833213 100644 GIT binary patch delta 979 zcmXxjPiWI%7{~FqrrKs}MOUZW+_bC8+Re-))hV5VVi`^pWylTz#U4i47}Mb&5M({< zA_^kJ9TYsd!~BP05z(VCg~1Mb6G0I4(&0tLv)`Y_mn5I}P2arF^SnvtyWVxwKDWf@ z3~d)@C+F>$F^4f_aiO)vjVWO}uEtZSp8_o787$y^+=$D#2EXD4T)}Oqhf}Z}ZS;_z zYG#m5J2wtu9s|_GS-A`7REMa zh;QWz>@nJFH&Ep{u6vE61rnhnkA}-xOaT_RetH+HB|PX$uPBoYkkL z|1PJ`NITsZzPB>5{_vYM80)Qf$6u_fPbU(wqUSk&G3)xJJ-*}acHO3vC!CS7%i|Zu z&rLby%Ehr#)_1)D$8#NjU)J4QDi*^>$t$5}2dQI~sp_Rll_}>Z>(}iWD}0@9`~hcc BVJ83p delta 1304 zcmZA0OK1~87{Kw3X>Dp_u`l0`Q4#x$X)P)h52D~36wwy+vdvE0G0ASoZj32NE_(Ig zqKJrk@Z?1#dQimo6Y(U13W}aRNTDZ1@c*Sz#3ehwnc127=9}HTSbS|+`EzUCIg2aF zy_EY>#Im+YJxamVS!Y>8*oF1zpgcN;+tI}?tl)h7gtKuP+wmu^#(7MR;~+NTR^(CH z+Cya#9s98pkD&|x1Fc&a!#gMe9^*WGRr4eAv%XQtxG8MFAJ~kum?Z5MT#k#d zjri6kDiUBX^0N+5EWnXkJBN~45oPCRPy$`RCcKQ2>2>VD2Y3ei1S@=7WgY^qZ-l}J} zl6f3uBONIHYf-+LM4aq|;3P^Wr?7g|D1j~`Yg@OFcGR^^#_v_RygqJp(O0(XsNnA+VzrC?-WXr^mu mplf8IU|?=#Y&^M-sdlmia}>8vVqSV_VmeSs!R7*H0Y(6sKNfNT delta 85 zcmZqRY~b7w&17s~qHAQXU}$1xXrOCgVqm}(;IA8$T9#RynV+ZYl30>zrC?-WXr^mm ntZQVbU}R`zU@^Imsg}nlF)zI|F&!vfP%@c|IeK#uGan-WwL=!x diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index 59f730a9d1..f62d1aeade 100644 --- a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/common/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: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/common/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.mo index cfa925f22bd9ff0c91a13f87a39dadeeb9d2517b..1fc8a21a780d468a5bf498bac3600903226ed278 100644 GIT binary patch literal 4327 zcmai$O^h5z6@V*FAh0$+2?+@aKNY}am+b6cY$qDW7Hh8;R@${!`-6}r5^APvW(#+B zjk~&cy%s_s4hV@uE+D}P%bigdIEkBKGkpzihpOJ$SpxWYK^b=!;8(mgCFPq zG8FwUL(%_ZD0+ViAA_$q_rHa*u0KHW`yWv3ybTY-cc85E5Jn$`kHJmYf-CS_kdJzk zFM03J@G1CLD0UB_RMz_-6n`FpqHi4jg4~^g;_o|Sbv_=&=+oSvfS-jg!b$iY_(}M4 z_+|JfDE6L1IV#jCcpiQpNqR9C!zQ^3nfk`A);ylik>wn^>YzE z3BL|S-wzvJYo5OfMgBK1);$!xZ$a_z-%!?jKR2I%PeRdq5?+BXK@0x~#r|oEOV+&% zr{I^M`1frn>wFn%_>+cjK++X$i65Wgl;bF;#8qOdIj1>~bBa#U!)r1B;;XEWG{=6D zT#6sVK7N*KmY|;DlzNau;`wyEy8TOXwf}gS8_C;4oS){L;cRirA$b_*JjN+CEQiEK z)+>j^L3&gUsVO-Q)rh&2ONp%+-mPu`k!WV6QbUa>6g#DUCu+etA-~pQ=Sq&0#?EgqM zQn$E2uS4kz)3>@~x|eL8=yJ=H+N7!8@x>)uux^v$A+~>TFdMHYX|p)rl>U z4F?~l9vfB<3NI@e$t;-C$l6L4t+-*uF0)+i26ZlRr0!0dZ~x^k>Z9P$pLlanP%Yw2 z{K^exxx*?RLibw^8gPlQmwdL!lYKJQ0n?+ zO`cP0xc9l$uC&>dI!~OV+D67E@+`ONLhJ%{q1=iI>t4cE&}nTfs5P7UZ3{w`mH}6b zCXy6*Q0pUS*KJu1xaT`sDesXIu|zd(kYuSZ`pxXdF6b8$XevRr- zo>2JvYqSWcRZ|k|4*%PhV+1A{%dS8CKBwpA+Q&{j zGs7{qObN9%WO=C}_H8|%ItpsBu#OPw7mVC~E`ImwXH$f3s#Bci)w*h18`flPy^6n8 zzp?~({7hl4x^zO1Z_sj=sk@Y7u;r=Ejm6gUH|3hdwa(>T zpRgIV_46H9j(l(HXlraWtqPO27JZSi8|8y|8&1ug)b-`5@m!zQvlA!B_V4uF!kNTN zEy>2rSn&t8_d@#0-9sSXyUyEDNxlEyZK8{x@n zYYZF1fGOR!*c(kG@!M(%VBaAxo5jr)m;u`$?G!zmuLlwqWXAb?@3n2~LR*Ft4ypy_ zQM$!KNof_Ty=xRO`!KOS@Do#!-ASy(o_7gb;~id+8BsfffR97VXv^R&j9PFePA%3U zL+36=We(jUajWgCX73d#p4&ZcULLM#Xs%JPlsM+Ony-__6k(f1N0Y=j#|qzo>|w#u zU^&@He4H4K+4z5hWisek)-nw!b1vhGLAUpcQLA;Z8hdfjNh~D0aj%Uf!XJ&)Yw}2D zs%$vzY|fZ4x>?~!I-v&6$KT@IEB(kAiK7lG+@V%Y*ULz)XJ63_KS@MgyFQMX^e^xgXG^aTYC?xs(J7HZYn5^0I8C_X36n64(fc6SrOgYjYy zLO~e4iTF6^#e?8MPy`9;p$H0!2f<4b4_5pKMEw4mEr>W|<}))pv-6vo&9{!1jfF1_ zl{XnuH}V$b-DQjoz!T*tkhBWMVo--wFaz;pHi{OQhfQz^cENkl4`0Jd_zrG_A7L;2 z32R^*9yT&oU_GeNz+EUdz!69bjeG4wuo~?nuoj;3+F7^_?Ht65*bRsudx*jZA9+53 z6wotB?|lV>a2YmXef9~JW^}AV3ZNXLXkZWpx>!A=h+7~n)CFnBL-00ED-KVh{T-{K z$|evkEjR^R;W0?#7oZLoVE{gb6-hl|Xy9j5DB=}JNBjd)4hx=lAP#74Q3{yeL5bF+Zvt~@|BThGm8F7SOo{H6678rBnF3l*v@1$< zZIrOiTHsWtkCINa9=QSe??k6S8=zC<$Q5j`bf-{lZi)j6t7MPxjBxK%j49kq{6RwQ$sHP7_w7y7G=TSYT4XYRa)^Nf~ zO53$~!g7RdSn9WbE*uwTIw#VYa=|^lH=)i1j;rOs_P}hGC&k=(X{OXlFs0ttw5jWL z%?-0ou6P%7`KX%{86M#&RTF9tuzAZCJ9tXC>S(C5bI!7DX}Xf_PZ_ST`Tu9B=b@3{ zK}=+EgMv`8T640rahn~M8CiT#yl=5F%RFnObG9foCtPVdSc(7BKWZ=JjJ(CAnKwkr k;?qhGH}-lhhffRJH8S&f!e-V_^nkQ&kwu`wQHyor578aON&o-= 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 ce3344812d..45463a766a 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -4,6 +4,7 @@ # # Translators: # Translators: +# Aline Freitas , 2016 # Emerson Soares , 2011 # Roberto Rosario, 2012 # Rogerio Falcone , 2015 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-10-28 07:33+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" +"PO-Revision-Date: 2016-11-17 22:46+0000\n" +"Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +24,7 @@ msgstr "" #: apps.py:72 settings.py:9 msgid "Common" -msgstr "" +msgstr "Comúm" #: classes.py:53 msgid "Available attributes: " @@ -35,12 +36,12 @@ msgstr "Seleção" #: forms.py:106 msgid "Filter" -msgstr "" +msgstr "Filtro" #: generics.py:126 #, python-format msgid "Unable to transfer selection: %s." -msgstr "" +msgstr "Não foi possível transferir a seleção: %s." #: generics.py:150 msgid "Add" @@ -53,32 +54,32 @@ msgstr "Remover" #: generics.py:287 #, python-format msgid "%(object)s not created, error: %(error)s" -msgstr "" +msgstr "%(object)s não criado, erro: %(error)s" #: generics.py:298 #, python-format msgid "%(object)s created successfully." -msgstr "" +msgstr "%(object)s criado com sucesso." #: generics.py:323 #, python-format msgid "%(object)s not deleted, error: %(error)s." -msgstr "" +msgstr "%(object)s não removido, erro: %(error)s." #: generics.py:334 #, python-format msgid "%(object)s deleted successfully." -msgstr "" +msgstr "%(object)s removido com sucesso." #: generics.py:379 #, python-format msgid "%(object)s not updated, error: %(error)s." -msgstr "" +msgstr "%(object)s não atualizado, erro: %(error)s." #: generics.py:390 #, python-format msgid "%(object)s updated successfully." -msgstr "" +msgstr "%(object)s atualizado com sucesso." #: links.py:9 msgid "About" @@ -102,7 +103,7 @@ msgstr "Editar perfil Idioma" #: links.py:27 msgid "Data filters" -msgstr "" +msgstr "Filtro de dados" #: links.py:31 views.py:150 msgid "License" @@ -110,11 +111,11 @@ msgstr "Licença" #: links.py:34 views.py:164 msgid "Other packages licenses" -msgstr "" +msgstr "Licenças de outros pacotes" #: links.py:38 msgid "Setup" -msgstr "Configuração" +msgstr "Configurações" #: links.py:41 views.py:194 msgid "Tools" @@ -146,15 +147,15 @@ msgstr "Nome do arquivo" #: models.py:27 msgid "Date time" -msgstr "hora, data" +msgstr "Data e hora" #: models.py:31 msgid "Shared uploaded file" -msgstr "Arquivo enviado Partilhado" +msgstr "Arquivo carregado compartilhado" #: models.py:32 msgid "Shared uploaded files" -msgstr "Arquivos enviados Partilhado" +msgstr "Arquivos carregados compartilhados " #: models.py:53 msgid "User" @@ -162,11 +163,11 @@ msgstr "Usuário" #: models.py:57 msgid "Timezone" -msgstr "Timezone" +msgstr "Fuso horário" #: models.py:60 msgid "Language" -msgstr "Lingua" +msgstr "Linguagem" #: models.py:67 msgid "User locale profile" @@ -183,56 +184,56 @@ msgstr "Perfis de localidade do usuário" msgid "" "Temporary directory used site wide to store thumbnails, previews and " "temporary files." -msgstr "" +msgstr "Pasta temporária utilizada em todo o site para armazenar imagens em miniatura, visualizações e arquivos temporários." #: settings.py:21 msgid "A storage backend that all workers can use to share files." -msgstr "Um backend de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos." +msgstr "Um suporte de armazenamento que todos os trabalhadores podem usar para compartilhar arquivos." #: settings.py:27 msgid "An integer specifying how many objects should be displayed per page." -msgstr "" +msgstr "Um número inteiro que especifica quantos objetos se deve mostrar por página." #: settings.py:33 msgid "Automatically enable logging to all apps." -msgstr "" +msgstr "Ativar automaticamente o registro de todos os aplicativos." #: settings.py:39 msgid "" "Time to delay background tasks that depend on a database commit to " "propagate." -msgstr "" +msgstr "Tempo para atrasar as tarefas de fundo que dependem da propagação de informação na base de dados." #: views.py:37 msgid "Current user details" -msgstr "Detalhes do usuário" +msgstr "Detalhes do usuário atual" #: views.py:42 msgid "Edit current user details" -msgstr "Editar detalhes do usuário corrente" +msgstr "Editar detalhes do usuário atual" #: views.py:62 msgid "Current user locale profile details" -msgstr "Usuário Atual - detalhes do perfil de localidade" +msgstr "Detalhes do perfil de localidade do usuário atual" #: views.py:69 msgid "Edit current user locale profile details" -msgstr "Editar Usuário Atual - detalhes do perfil de localidade" +msgstr "Editar detalhes do perfil de localização do usuário atual" #: views.py:113 #| msgid "Selection" msgid "Filter selection" -msgstr "" +msgstr "Seleção de filtro" #: views.py:129 #, python-format msgid "Results for filter: %s" -msgstr "" +msgstr "Resultados para o filtro: %s" #: views.py:136 #| msgid "Page not found" msgid "Filter not found" -msgstr "" +msgstr "Filtro não encontrado" #: views.py:177 msgid "Setup items" 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 8d2b3ab197d0409e9d807c645c159e556950691e..bb5457a5ae791bcbc8cbae1e3e228e4bd3422308 100644 GIT binary patch delta 552 zcmXw#F-t;G6vwYVE6vQZB`E7TR5S?sGz^JC5?X|$p}{3y_>hJ&OqU28T8hR;LEoVv zrv`^0io&HOC>m^QZ0Hm8J9a&A?(dv)&$<7@y$bvWn%#)+QehE%8o$A#_=<-EyM+U= z1r2xy1F#K!@JX`+{p7Du`aj?h>}r0)8S)=E0Yl#2d{e~;1}V&I#-RwL{~OdQ93fwa z&kPr#^iQHL0<%!=7a&(Et?L=*#H0l delta 460 zcmXxgF-yZx5Ww-*BsGmuD|K*D$>QKpOwxjqt-Bxy1;L>NqS-14g*r&U4mt{ z=mq7uSLCNYxX63HP#XN=8W!ogit8x#CQ7}9rb?7L$O~FPJK`}`ahl(dO-W@xOcV|{J zvq@a#A#oboV3#CSP*Xu#q(%iI0gh|OAF-VWka$3XJK_cLP>^`20Erj!!V~iEP*61hEKj_)OqKXrwNsJaU71b+d_xqpG50Uy6tDgIP9k57YJz^A|i-~(U;-Uprn zF{MVp&w}Sc@#88ea(@6H2LA$z+%529;J-os)IA?n>XYDob$krO1+@+oxeUmk%JKLF z_-uXs9QXw5Z-Ju!I4Jr@LD72wTn%2Tug5@%YYG&VoYkf349u?fKrz$ z;5zWn;EUk>DCMX+4@!Ps2j2#-fLs`(R@CHBkKg6)1B506zuZ0x_xX#R8&K-lJl$#EG<1F6(1{Fz5!v?RdHtx;pZ8 zc*F@@-CruZVW-;O=hq^&y;xM+Jzer5cfbvFSal1f{-KgLppW>+bj9(8bdtf4(|)a7 z)P1flmcnY;86ufg&Qvjvx?1E{oTya5_KI*}u>MFg!_5OJyE z@-`HzUBwcmTTb(xJ1eNSf{XsxMXR9NjWhP)IhbXIBX!VH=6=8C6&F8*aIFxPh*8UDr=tBB6~uq zA{;LJPLUTW$+90q)k`^q33P@tWcfM}NKSO*go9y1+@f0*68oNZG+p8JIWV^XGpHX& zsX1(;ww+en3ldtd@57M83E_~50>=yc3A2%738GUShEVp=V2pf$qRnhd1X{m^>OkPj z5J~MVroIWgC|geVI72knuAM!H+77x^KZsI2;XtXFdbTzYrh5IHZac8QH?>2C4)Q4> zWKL((nWs~kOe(uUr?a_@*;KkaoklQq&^=lby)AO-RCcpYZ^~`hurAHjwvS?`dL_KF zL)Yi@LBG!p2>GBNIzh=tAYoCe*L5mv*TS%blkG>MsG95QI(F<>r_D~O-#y+*R=a}a zV9-^OXi{#m5_XmAO1gqtS4UgV-kx2zgU)oO+jjWO3J*tyszemI$D=NWLCM>q3veNH zqx|9C-KovDRReGR${x(aCGR z-CL7M=kpo8cCD7z^pp8aMn9v|8gbU!^4Z0$t@&+Xrn`e9nfj4@ zJ}p~TZd-oi?c-nVXnaR6W)^L3&7)G5_`(u7v`n^WS+C6k%BRgWGi%0H_~A)THR)XOREtyg7!F?(-_5wO z?%dtcCGjj((y7b^Gl|EOsGiXAnfRon#4e}fbJ&aLU1 zVQr>udKYkQl)Q?QWASi2s!89C_}m?eb^IcVX3Px{#feL1o-Yf^T(lmJaei9PEAtbp z+RCvtsnI@YAbM$R>%Jj=yUr3E;dLw_4{UZd}GcGBRtXwH2J=Dcq|k zWt_c9Gl%b@3QP66T6^nJ=a-XbDi zkxlFCX{1CgX%P=Z@ijz;9qv@a6+Y_kZdApnCJ=az*K z9;yhBW-Q_6mu$lU$^J;aPi%3_oHQ#LmXs^=OCudQtIQ8^mmWdeRO0xXQWd)0+Sbjf zQszf|ofl>bohH$AEk46@g3mN-lTElW%2bizL{NyqlSFP_$FHCiUWn0nm^Qe~aXSuh z;7rm&Gq&-VGBVU`w9VlxB!?O*lP0OpjwK-p5hoz(Y1+f8zbWjKshA|uS$|-{4Ud9%KW@JP*K!Oar#!7*Kps>NMWC}3A z>eDy*1sj)C*?h delta 1114 zcmZ9JO-NKx6vv-s>ZqxyeUK@KC@>hOnMp9Dg6P8xN&8wvt8w0SdN}i*%$recGk)}e zC<;C$D5yn?T8@*Zlg?O+7D3Uyn>JCjEdrNqg8HA=7}14ufA=2F{r}H-?|t)Jb?S3% z@w|prhuDW$L^LA0im+k51h;~(z!LB^=mFn?#o&hmKZ0ere*w3FU%^svqre|v6Yjr2 z_G;SVzE5dE99X!mz!M-FoB{8H-5?u%11rG|a5v&7q6YVRxRrwk!Cjyq;ZS+ zehuWhevsb{y7!c(-NoTN60=|{_zBz&)}kvmB(Mr>0a@S}Sb`}!z&*HMz?fbz0wS$d zBe-Fno^>`CYw+YeTrGmX>Xv$Jn~Tl3^BSk9xb7ln*{%WsCwHN5feBK+uB(pD%{NsA$875#%-<32n*A8x=TA#mqg4O6xwAG72$+|=T}5*z>0_B z!=xK=of3aV`e1MSh&ubo zv`j&UP4<8Y8-0e*y<{CnYRHI2saH@qF3`FTH^Yp$68zW~>(^PX`H)Y$YKyqLkuDOj zb>5ZrRQOw4f^8INZ4daJW=~^<|42(PK*2z}|ESaBxmnp2G9$@QM6^>p>Adk=cLL?l z8|0kK%LSR18M&gy)RZP4$^|tcS7g@7R_%AbS2yf^BGYOVWf@IAK-C?&By(~Zry1v7 z&C}Flxrq0xo9}1UBn0znM3b{>1hs2!eGcg?$rsQXbIbGcnV0ZrRIWpNRZYodHO}R3 zA<}7?MQL8H5e!z<45{1DOT(M};ZBfVktv*6R86Z92(G)H88xM*p-wXMUk^*9Zm~2J zCw(O6VT9I+RSEv+52L}vOKeW?&k?@JIC@x8W8{8_Wq0BnF7P|REn?mY*OLFxzkiGP PcgaUiQT=;he(o6*?NP}j&=;he(o6*?7MAyh%!O+CY&_LI~#K3?nz+X2gwJftZGe1w)C9x#cO2Np$&`j6B pSl7rv6f>)7!$Xlp{|j!f`O5hsnO&_CRuJn16?Bv1p{*{W8=x4Os$jUn4|c867$ka T6Vp?z6sj`fo&6@4Gj9U`0sj%D delta 63 zcmZ3>v6f>)7!$XFiLQ~kf}x3(p~2)tCRuI+V_hRd1tUW%1B=O>Os)JriFxUziRr0U T3RM~L&VG}5nWHCHFmD9_1@IA( diff --git a/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po index f5cbcb8e55..ae9fd5e2bb 100644 --- a/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/zh_CN/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:52-0400\n" "PO-Revision-Date: 2016-10-28 07:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.mo index 444cdeb856d92016e7092e4fa36598cd309ed2b7..59215be475107a7892706a16dd001d5cd8a61096 100644 GIT binary patch delta 44 zcmX@ic9?C0D, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -43,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -59,11 +58,11 @@ msgstr "تغيير حجم" msgid "Rotate" msgstr "تدوير" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "التكبير" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "" @@ -112,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.mo index c99cffea7edda105a6ac202dd800c9f9a7046fa1..365ae29165eeb8e37e79c39e6db82ac9b5af9d9a 100644 GIT binary patch delta 44 zcmdnXx|el>2qU+lp{|j!f`O5hsqtia#wC+4Fh=qCB<7`;CZ?xaDI}#&)?}Ij02Yc3 ACjbBd delta 44 zcmdnXx|el>2qU+FiLQ~kf}x3(p}}N%#w9#HiFxUziRr0U3Q6gc4>3kh)?%6r01-G1 A8~^|S diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po index 8dc74a14b6..0f8cf70816 100644 --- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -42,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -58,11 +58,11 @@ msgstr "Преоразмеряване" msgid "Rotate" msgstr "Завъртете" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Увеличаване" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "" @@ -111,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -506,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.mo index f79af753956d31d1bf98825c0242dbd124ee4e01..acd84bd0d011bf31da341bf3239f47b17b08eb17 100644 GIT binary patch delta 47 zcmdnPwufzlDrS6 delta 47 zcmdnPwufzlD, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -43,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -59,11 +58,11 @@ msgstr "Promjeni veličinu" msgid "Rotate" msgstr "Rotiraj" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Uvećaj" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "" @@ -112,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/da/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/da/LC_MESSAGES/django.mo index 6209f91398622f0e951ec35d04bd556faeb1b1d1..e4df92419c7d6e6708704977026a541809728dc4 100644 GIT binary patch delta 42 ycmaFC{DOJH5^h67T_a-!10yR_, 2014 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -43,6 +42,7 @@ msgid "Exception determining PDF page count; %s" msgstr "Ausnahme bei der Ermittlung der PDF-Seitenanzahl: %s" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "Kein Office-Dateiformat" @@ -59,11 +59,11 @@ msgstr "Größe ändern" msgid "Rotate" msgstr "Drehen" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Zoom" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "Zuschneiden" @@ -87,9 +87,7 @@ msgstr "Transformationen" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird " -"automatisch eine Reihenfolge zugewiesen." +msgstr "Reihenfolge in der die Transformationen ausgeführt werden. Ohne Eintrag wird automatisch eine Reihenfolge zugewiesen." #: models.py:38 msgid "Name" @@ -99,9 +97,7 @@ msgstr "Name" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Argumemte für die Transformation als YAML dictionary eingeben, z.B: " -"{\"degrees\": 180}" +msgstr "Argumemte für die Transformation als YAML dictionary eingeben, z.B: {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -116,6 +112,7 @@ msgid "Edit transformations" msgstr "Transformationen bearbeiten" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "Transformationen anzeigen" @@ -138,9 +135,7 @@ msgstr "Einen gültigen YAML Wert eingeben" #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Transformation \"%(transformation)s\" für %(content_object)s wirklich " -"löschen?" +msgstr "Transformation \"%(transformation)s\" für %(content_object)s wirklich löschen?" #: views.py:139 #, python-format @@ -150,8 +145,7 @@ msgstr "Transformation erstellen für %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" +msgstr "Transformation \"%(transformation)s\" für %(content_object)s bearbeiten" #: views.py:238 #, python-format @@ -195,13 +189,14 @@ msgstr "Transformationen von %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -514,11 +509,9 @@ msgstr "Transformationen von %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -634,8 +627,7 @@ msgstr "Transformationen von %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/en/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/en/LC_MESSAGES/django.mo index 07c714d0a03aff82f1489c7a148acd39d0b3efb2..cbfcb93b5e6bb62055d44c7635410339f55cbeae 100644 GIT binary patch delta 24 fcmZouV#^0@ delta 24 fcmaDW_Eu~|G8?yniLQ~kf}x3(p~2=nw*M>uV+IFr diff --git a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po index cbe6b2cd11..be3dbda32f 100644 --- a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lory977 , 2015 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-05-09 01:47+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -43,6 +42,7 @@ msgid "Exception determining PDF page count; %s" msgstr "Excepción determinando el número de páginas del PDF; %s" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "No es un formato de archivo de la oficina." @@ -59,11 +59,11 @@ msgstr "Cambiar el tamaño" msgid "Rotate" msgstr "Girar" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Ampliar" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "Recortar" @@ -87,9 +87,7 @@ msgstr "Transformaciones" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Orden de ejecución de las transformaciones. Si lo deja en blanco, un valor " -"de orden sera asignado automáticamente. " +msgstr "Orden de ejecución de las transformaciones. Si lo deja en blanco, un valor de orden sera asignado automáticamente. " #: models.py:38 msgid "Name" @@ -99,9 +97,7 @@ msgstr "Nombre" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Entre el argumento de la transformación como un diccionario YAML. Ejemplo: " -"{\"degrees\": 180}" +msgstr "Entre el argumento de la transformación como un diccionario YAML. Ejemplo: {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -116,6 +112,7 @@ msgid "Edit transformations" msgstr "Editar transformaciones" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "Ver transformaciones existentes" @@ -138,8 +135,7 @@ msgstr "Entre un valor YAML." #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"¿Borrar transformación \"%(transformation)s\" para: %(content_object)s?" +msgstr "¿Borrar transformación \"%(transformation)s\" para: %(content_object)s?" #: views.py:139 #, python-format @@ -193,13 +189,14 @@ msgstr "Transformaciones para: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -512,11 +509,9 @@ msgstr "Transformaciones para: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -632,8 +627,7 @@ msgstr "Transformaciones para: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.mo index b4f90142c67a2873817840ad0bdf830f376c3503..89afae4d8fd6c5b359b7c87ac40b6ec1b23d2c1c 100644 GIT binary patch delta 45 zcmaFF`G|8v6BDc B4gCNB diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po index 2f33b48a24..7e32dce8b0 100644 --- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -41,6 +40,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -57,11 +57,11 @@ msgstr "تغییر اندازه" msgid "Rotate" msgstr "چرخاندن" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "بزرگ/کوچک نمایی" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "" @@ -110,6 +110,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -186,13 +187,14 @@ msgstr "تبدیلات برای : %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -505,11 +507,9 @@ msgstr "تبدیلات برای : %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,8 +625,7 @@ msgstr "تبدیلات برای : %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.mo index b62e2d7299759c32518139e52c6be683c68aeb18..c87b7bb1daa8277c7c06c20f50444839b66ebde1 100644 GIT binary patch delta 45 zcmbOtF-2lSG8?y{p{|j!f`O5hsqy4Iwj-16*`s)T67$ka6Vp?z6w-<|&tR`%0RSsi B4aWcg delta 45 zcmbOtF-2lSG8?yniLQ~kf}x3(p~2)lwj(?~iFxUziRr0U3TZ`?4cVhN&t$J=0RSyS B4ZHvV diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po index 86d62ba39b..6d585245f6 100644 --- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -43,14 +42,14 @@ msgid "Exception determining PDF page count; %s" msgstr "Exception déterminant le nombre de pages PDF : %s" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "Format de fichier non reconnu." #: classes.py:120 #, python-format msgid "LibreOffice not installed or not found at path: %s" -msgstr "" -"LibreOffice n'est pas installé ou n'a pas été trouvé à l'emplacement : %s" +msgstr "LibreOffice n'est pas installé ou n'a pas été trouvé à l'emplacement : %s" #: classes.py:254 msgid "Resize" @@ -60,11 +59,11 @@ msgstr "Redimensionner" msgid "Rotate" msgstr "Rotation" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Zoom" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "Découper" @@ -88,9 +87,7 @@ msgstr "Transformations" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Ordre dans lequel les transformations seront exécutées. En l'absence de " -"modification, un ordre est automatiquement assigné." +msgstr "Ordre dans lequel les transformations seront exécutées. En l'absence de modification, un ordre est automatiquement assigné." #: models.py:38 msgid "Name" @@ -100,9 +97,7 @@ msgstr "Nom" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Saisir les arguments pour la transformation sous la forme d'un dictionnaire " -"YAML. Par exemple : {\"degrees\": 180}" +msgstr "Saisir les arguments pour la transformation sous la forme d'un dictionnaire YAML. Par exemple : {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -117,6 +112,7 @@ msgid "Edit transformations" msgstr "Modifier des transformations" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "Afficher les transformations existantes" @@ -139,9 +135,7 @@ msgstr "Saisissez une valeur YAML valide." #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" -"Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s" -"\" pour : %(content_object)s ?" +msgstr "Êtes vous certain de vouloir supprimer la transformation \"%(transformation)s\" pour : %(content_object)s ?" #: views.py:139 #, python-format @@ -151,8 +145,7 @@ msgstr "Créer une nouvelle transformation pour : %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" -"Modifier la transformation \"%(transformation)s\" pour : %(content_object)s" +msgstr "Modifier la transformation \"%(transformation)s\" pour : %(content_object)s" #: views.py:238 #, python-format @@ -196,13 +189,14 @@ msgstr "Transformations pour : %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -515,11 +509,9 @@ msgstr "Transformations pour : %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -635,8 +627,7 @@ msgstr "Transformations pour : %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.mo index 61cd5a34c46502811aff5b2a030befac28702ed7..3d323404212f716cb77726a709e98dbdbea38baf 100644 GIT binary patch delta 42 ycmX@fe3E%WJGY^su92~VfsvJ|@x)0>COb1m@%SX>rI#kAr&=jwlun+*s0#odcnyyL delta 42 ycmX@fe3E%WJGX&}u93Ndp^25D!Nf^RczhD`(n}N5Q>_#-N++8#Mo*s0r~?2XoehKl diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po index 94f304b7e1..6fd4505ed4 100644 --- a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2015-08-20 19:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -41,6 +40,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -57,11 +57,11 @@ msgstr "" msgid "Rotate" msgstr "" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "" @@ -110,6 +110,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -186,13 +187,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -505,11 +507,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,8 +625,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/id/LC_MESSAGES/django.mo index 9c2a84132c8c7cf36725f9a7a4a5734720448848..06d2ace2df031a594ecd54cb9f95913254c42beb 100644 GIT binary patch delta 42 ycmX@ie3*GcJGY^su92~VfsvJ|@x)0>C%Z64@%SX>rI#kAr&=jwrc9p8s0IKWV-0Tr delta 42 ycmX@ie3*GcJGX&}u93Ndp^25D!Nf^Rd3+M{(n}N5Q>_#-Qzn}+Mo*r{s0sicI}Kz2 diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po index 3ab880e9f7..1e774225c9 100644 --- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2015-08-20 19:29+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -41,6 +40,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -57,11 +57,11 @@ msgstr "" msgid "Rotate" msgstr "" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "" @@ -110,6 +110,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -186,13 +187,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -505,11 +507,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -625,8 +625,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/it/LC_MESSAGES/django.mo index 5367f7f43c5c58aedbcded5b39fda9b6f7a74d9a..0880c9dbf9dab8d7bad7dd9a4c4aa944c29a1854 100644 GIT binary patch literal 2937 zcmbuAyKfyu6vihcyv)mlgain1VhFJn_CD++a;{@Y@FOzHbu7n;6dE+%ox2{`oxPfw zwH+fW8VZDHsAwn=2nnQgX%Gf0SU&oI`LacoExAQu4&Y3fx zZ|&Xlslf9heuwbew@Zj2@X`D5!t)LIF!*i7>))EU;^^^2jCg-LvSDXBgpn{ftSF)!9j2qlV1W?z+vz+kk|i&7w`8oct7|DXu-e0 zm%$jF1bzgvA759z20o7Vb?^!BCU^k+6?`826NCxTk40Z12m3*e`@08`3-Bh$e*OX; z0dIr6?!ZIkJ|{r@iPLz!2~L6R=OlRVHaah zf!ucxKaPR(1vdnaruXc}7q%+)c&zH>efC!0FjwS6z_h# zk(wgcFMu2?O029+P@J`Ko+{&=n8?hsvR+v+VU_fXj9MXYrE#6irqb)o+$zl_;+&Y%xy*M+P@s>0l>s75m#N>s;FZo(yLVimp0o5W$DCajccM-wex&7o6p*bx3Vl1b2j6e4Q8U?a(Or{YRjvL zcWSbIv2R{=GwXx4i**#dk;g7r$Xe7lcVQtYZW9hOn1qKd8g4XC2F+$LJVK4()`^jz zalFyM#9&@6Yd-Wl=QU0R!^f%FXpJ95OP*LjYNoAz2eSN5}J=31r$Vju+=z|9FB@Y&^b`h>utG?b%q&8!ODzQ%a@k?r{rc9VcIDi(7E^6O%wnb>nCApPJFpZ*hEi&Dr>Bfi0sQersG<0~JnnPoK zEQcA(pL{y;i=oxanve$;(DDd4dz5U=I3zAr6lqRB*H>YuMhZu}T|dK66~~0~!J0}#CFz8P z(yKVedPu1@kdevh@*h}FLE(;-$Ph2pJvogeUvOGVQO$U-LS##|Vs(Xk6%YdyduvI+CEVXQ*Kmj~DzXa7 z4o{YmAKn`O5$ui6@s9_S40j|)A+H>CPj7JqbCq*N+L573CR14{>^&yjp{`I>9cf%4 qmLnEG?v=9 z+W7*$fUT`q2o{10+WH29An1QhDu*3;n<|yKZYXJa2C{ zyn-?8-?Y4iw$UB5g&!b;PjDQ5!frT>qER>jZNn@~z#_y&o4AE&t+|QkzeBd5-TWVM zyue)4gS5k-$6s+fi2XZVNGhso-4nhxKW#%vniDml1VLn<+T?Ne2-x@j$27759T0*Y?<|+!abo7;xoE z^AcI_E^)tF=T%W)t~OKAZF3Qw$t%H`UzZ1*X~hGy^!Sl0eL=I_-xIYOrzKf-EAAer dW$6iK2XuY&8c&(0_)ec-`@&8c(3X@Q{Q@8xU+e$? diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po index 4e1c3f1eff..4f6301d247 100644 --- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po @@ -1,28 +1,28 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Marco Camplese , 2016 # Pierpaolo Baldan , 2011,2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-09-24 10:31+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" -msgstr "" +msgstr "Convertitore" #: apps.py:38 models.py:34 msgid "Order" @@ -39,16 +39,17 @@ msgstr "Argomenti" #: backends/python.py:86 backends/python.py:100 #, python-format msgid "Exception determining PDF page count; %s" -msgstr "" +msgstr "Eccezione che determina il conteggio pagine PDF: %s" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." -msgstr "" +msgstr "Non è un formato di file office" #: classes.py:120 #, python-format msgid "LibreOffice not installed or not found at path: %s" -msgstr "" +msgstr "LibreOffice non installato o non trovato nel percorso: %s" #: classes.py:254 msgid "Resize" @@ -58,13 +59,13 @@ msgstr "Ridimensiona" msgid "Rotate" msgstr "Ruotare" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Zoom" -#: classes.py:324 +#: classes.py:333 msgid "Crop" -msgstr "" +msgstr "Taglia" #: links.py:31 msgid "Create new transformation" @@ -80,13 +81,13 @@ msgstr "Modifica" #: links.py:43 models.py:65 msgid "Transformations" -msgstr "" +msgstr "Trasformazioni" #: models.py:32 msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" +msgstr "Ordine delle trasformazioni da eseguire. Se resta invariato verrà assegnato l'ordine automatico." #: models.py:38 msgid "Name" @@ -96,27 +97,28 @@ msgstr "Nome " msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" +msgstr "Scrivi gli argomenti per la trasformazione come dizionario YAML. es: {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" -msgstr "" +msgstr "Crea una nuove trasformazioni" #: permissions.py:13 msgid "Delete transformations" -msgstr "" +msgstr "Cancella le trasformazioni" #: permissions.py:16 msgid "Edit transformations" -msgstr "" +msgstr "Modifica le trasformazioni" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" -msgstr "" +msgstr "Visualizza le trasformazioni esistenti" #: settings.py:10 msgid "Graphics conversion backend to use." -msgstr "" +msgstr "Conversioni grafiche di backend da utilizzare." #: settings.py:16 msgid "Path to the libreoffice program." @@ -128,22 +130,22 @@ msgstr "Percorso per il programma Popple" #: validators.py:22 msgid "Enter a valid YAML value." -msgstr "" +msgstr "Inserisci un valore YAML valido." #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" +msgstr "Cancellare le trasformazioni \"%(transformation)s\" per: %(content_object)s?" #: views.py:139 #, python-format msgid "Create new transformation for: %s" -msgstr "" +msgstr "Crea una nuove trasformazioni per: %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" +msgstr "Modifica le trasformazioni \"%(transformation)s\" per: %(content_object)s" #: views.py:238 #, python-format @@ -187,13 +189,14 @@ msgstr "Trasformazione per: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -506,11 +509,9 @@ msgstr "Trasformazione per: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,8 +627,7 @@ msgstr "Trasformazione per: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.mo index 952ef4350e860dbe8ed8b30c38edcaf596d3b8e3..1f65b33f348ff8eadd6477588153de65e7bb196f 100644 GIT binary patch literal 1496 zcmZXT%WoV-5XL7EUdua3M4%uF1hOsE`$~wy7$f}HAWOT>%2^`81$uXCXL~)>97B~aQ;pNdkKCC z{yqFPc=sIs!F~dt0)MV}4?K_fckprW5AbF1?<)Tf_zL3xs`%m~QS=z%OW<4Jn;?N7 zfnoimq5+>nJO`f#zW^_Scfc^uT`;`&9{3}A{|eR+e}!b2?;9}0-&XNm@KwY=fKP(I zfdu{u;xGEQ%Adnnz%RfL;0ti6l2jh?gh zY@=;!ifD&3_FRFymD-Js&81gHyQq^WA9XaUNzzLyriPZyc&tVbD(lfcJ9Wg-zVQ-64VI=k6S}i8 zVeXjTcF`@x3*tlNywd6aw)CkndDORN$|Em!6LE{J!(LXQy|ww$FvJUi4h5 z60tQ)ofw#yYW*7nv2D5hHev@8#?)@Mu8LMmv@cV$9lv{7G_N$9C=~lVSE28jy5@V- zx*A_;zSD%&y3%=3?lO};Oy8Mvrly*1N||B$1A3p2Gp{Qm0qXOL|VswG*MDRnr?A)LL7wMJHNjeM-z* zYU;F_CP?B$7vae+DTEzC_s2h=Xvhn;2cgv-uBVBM}h!Yx4e`)!?yrvLx| delta 345 zcmcb?J)N!oo)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}>NsU@ilt|^%%41S5ZsgvE93?`pu3g$L2(KRwx zFf_3;G?=W(EX!?RtZQVbU}R`zU^Y3BS)4y8KPk1SBwryYzc{fdGk@|F=45`K#Ju#< z#Pn1vg}j`2KcC6pn4>2rvgnA1r52TEW~HPSF(jpyrxsdEPuSCyZi H3lsqW2VFY2 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 ab6b283474..6813ca5a78 100644 --- a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po @@ -1,41 +1,41 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 # Lucas Weel , 2013 # woei , 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-09 16:40+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" -msgstr "" +msgstr "Converter" #: apps.py:38 models.py:34 msgid "Order" -msgstr "" +msgstr "Volgorde" #: apps.py:40 models.py:64 msgid "Transformation" -msgstr "" +msgstr "Transformatie" #: apps.py:44 models.py:44 msgid "Arguments" -msgstr "" +msgstr "Argumenten" #: backends/python.py:86 backends/python.py:100 #, python-format @@ -43,6 +43,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -59,13 +60,13 @@ msgstr "Afmeting wijzigen" msgid "Rotate" msgstr "Roteren" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Inzoomen" -#: classes.py:324 +#: classes.py:333 msgid "Crop" -msgstr "" +msgstr "Bijsnijden" #: links.py:31 msgid "Create new transformation" @@ -81,7 +82,7 @@ msgstr "bewerken" #: links.py:43 models.py:65 msgid "Transformations" -msgstr "" +msgstr "Transformaties" #: models.py:32 msgid "" @@ -105,15 +106,16 @@ msgstr "" #: permissions.py:13 msgid "Delete transformations" -msgstr "" +msgstr "Transformaties verwijderen" #: permissions.py:16 msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" -msgstr "" +msgstr "Bekijk bestaande transformaties" #: settings.py:10 msgid "Graphics conversion backend to use." @@ -125,11 +127,11 @@ msgstr "Locatie 'libreoffice' commandline executable." #: settings.py:20 msgid "Path to the Popple program pdftoppm." -msgstr "" +msgstr "Pad naar het Popple-programma pdftoppm." #: validators.py:22 msgid "Enter a valid YAML value." -msgstr "" +msgstr "Voer een geldige YAML-waarde in." #: views.py:71 #, python-format @@ -149,7 +151,7 @@ msgstr "" #: views.py:238 #, python-format msgid "Transformations for: %s" -msgstr "" +msgstr "Transformaties voor: %s" #~ msgid "Resize." #~ msgstr "Resize." @@ -188,13 +190,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +510,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +628,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.mo index 80179f30d441266b312edb639b814797a49e1623..addab585d1fa7a91014a9a06c034a6654d11b5c7 100644 GIT binary patch delta 314 zcmXZXJ!`^H7{&1?RTEP!g0D~zhSADm)@_y8eF-fg0;x~wc_yvNNq=<@J3p!=7y6GYz#6k%!E_Sfs1vmr;@1i9a z(9NZI0}chJUV>Ah|Dx0HJkNpWaK1A8%zHAh{0WGpRFSZV{Ay>lE0G*Ih9$hiEDkV& zE-JXdF1}#`cgU0+@BxpQ#3JKGY~v8eSi_I7ETzKXo1%xx^?BGto&1FV53bO`H5z!r z0#><, 2012,2015 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -44,6 +42,7 @@ msgid "Exception determining PDF page count; %s" msgstr "Wyjątek określający liczbę stron PDF: %s" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "Format niezgodny z formatem plików LibreOffice." @@ -60,11 +59,11 @@ msgstr "Zmiana rozmiaru" msgid "Rotate" msgstr "Obrócenie" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Powiększenie" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "Przycięcie" @@ -88,9 +87,7 @@ msgstr "Transformacje" msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" -"Kolejność wykonywania transformacji. Jeśli nie zostanie zmieniona, przyjmie " -"wartość automatyczną." +msgstr "Kolejność wykonywania transformacji. Jeśli nie zostanie zmieniona, przyjmie wartość automatyczną." #: models.py:38 msgid "Name" @@ -100,9 +97,7 @@ msgstr "Nazwa" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" -"Wprowadź argumenty dla transformacji w postaci słownika YAML np.: {\"degrees" -"\": 180}" +msgstr "Wprowadź argumenty dla transformacji w postaci słownika YAML np.: {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" @@ -117,6 +112,7 @@ msgid "Edit transformations" msgstr "Edytuj transformacje" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "Przeglądaj istniejące transformacje" @@ -193,13 +189,14 @@ msgstr "Transformacje dla: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -512,11 +509,9 @@ msgstr "Transformacje dla: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -632,8 +627,7 @@ msgstr "Transformacje dla: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.mo index 75195582465510e70a41b5bdb9f0c7937a874d78..78311170ab59b676c772feb95bfe631144f42a4d 100644 GIT binary patch delta 43 zcmey!`jK@*3?sLpp{|j!f`O5hsqy4=#-)=bnWDIT67$ka6Vp?z6bdF6GBp4I9^DN@ delta 44 zcmey!`jK@*3?sLJiLQ~kf}x3(p~2*I#-%(yiFxUziRr0U3I!#TxtXFT7c, 2011 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -44,6 +43,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -60,11 +60,11 @@ msgstr "Redimensionar" msgid "Rotate" msgstr "Rodar" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Zoom" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "" @@ -113,6 +113,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -189,13 +190,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -508,11 +510,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -628,8 +628,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.mo index 0be2c7b6608e5c2e984ad162e58d8297ba33b905..f53f134c0e3f14adc0e363706d2cb0648545baa2 100644 GIT binary patch literal 2986 zcmbuBONZ|Wn z|Ll#en?7Q=Uche$e%m%MHUw_oh#RiU;Dg|mlGnhe@%}Bi6Z{o?2HbEDW1GMo;C-COaL}OxXQX<2TZ};;7=gMzwsf)9tK|lF~mkeiuW+M1#E(pZvnmxUI5AO zPeFw3YxOutdy@YYGp&ak45eAQw&RKH(^}e(F3Rs#|HK%~`MlEW=5mZczEk|q;zvD4 z*JB0zoqR-UypPX=lsmLo(VHNfFr7S+sk3ZSrwh_JY1pKZ!bzUWMedA9ZCjf}IHl7& zf8m(Z;JaYuPHX9t&e)WUrIRJrnCAn#2KzT0vIC{%!BD3TexB8>w`Ays?4k8-ST-Fg z=WqYV`g#Un8ZHH z_#{%UiYvqbfhz=CN!$o~L0~ zq#YUUp-n{YG__g?pJ2Mk?#gOmt?Hy$&6@C#0;BXcb(X=W%;=603D2Uo!${IUDW>4d z5XzZVHYcq*FWH=SXm>W>-|GFZcFkv7wxwmK6^@BqQr1yz`fF|3n_4HVX*Bh0a5M@| z7sYAtS#b{WPEXCAtjx(w8yC#lj*5aKdB+Cxy1^^W6Z3&TO(fSCC)JiYh^1*KN6Q8CQX~ze+_=1xODp-{5hKp4c!&>noy!`v+T!A3 z)n`Gq=4wNg*`u@5tJxW@)+^8>I`F~#xeTE@ zx#VhDEL1wq(J{tKci`0gOfa@O&(}|yU^)$Tgkm)KSWCGT-y7WTRcXe#5pghs9<~jh zX8zS47#Ziq|GGDK>Hp_3oyYK8qXFN*b*vfN`GsVvR)o1qO!ENMHB{?8Znf7@kUBYuz684|06 z=Lwx?$W0-gy=BO#_TpJi(9p(GKk*p-E5l?3a+YvNC)&NYjK1>5?joSRG+gKv4Mp`d zPkY}a($FB!ddnS^;sivRwABmhZ0~B6$NqCEsi-ea?wH;(B$OQG77CSHK_T>sD@`rb z72mkdu^C1r+7g+dp;YrwK+U^2=esNvmSmRZ^ggHH3VHS03G+^_7W|{Mp;4}P6(JYO zn|S3#E=pZ30*w&JstREYC8+X~64TTYLYE0|;iQCm&uTfm?Dm$SyBY;jJ}}{oYURC4 z6y0RutZ!oEt`tzQqP65gA;Wi`ds~J`c_W4YI!Ln6eI&qCPCR;f^6?iZs_&heY3;!3 c!8)yM4)HpV7}v&M=rhCw1}2g$#tCHq0RGr`d;kCd delta 670 zcmaKoy-yoK5XHyF*uW8tT<|4G))EweEZrF=L`TI}frK0hs7L{ey|zyBdC}e(kqQag zAR(=iDxyIGiGl`!Ql;S!fF>!^q)wkQZwxdk@^rJmo!i}+w|hDGz5C#2F7=6^e#9u^ z3u2Jx2@KFa*bRPo;t@EE{1{Aw7hnp!dg3+MiTo=#4t@g#_zUFyspKOau#f0~a+qYX zkO#T32Xes`@Dzv2U=Q-&9gjx-fG?3Ju_*)QK`uNA@;Mg+8+Z+lgL7aW+y-BOhaj(? zfLZjX&+Q4(ImkD=1@X}X2J|QNr!E9Hc^1DGiwm+j2f?qz=WwgG*c^*5$LdAEd%HR3 zG;iuHdy||RSW*oYD_X7wF_mSg=$)x5V{4rsZGU>*aZ82btnf;{=h|j^%yVZ7MNbqx z-+eRfLOrW8iVGV?Hlv1&weiK8-ccsjU?feT?T>UNyDFRYmaHpZ?8aLQYxZsCy*69JN+W$S5z(gBA^ioJ+, 2016 # Renata Oliveira , 2011 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:06+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-17 22:48+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -27,29 +27,30 @@ msgstr "Conversor" #: apps.py:38 models.py:34 msgid "Order" -msgstr "ordem" +msgstr "Ordem" #: apps.py:40 models.py:64 msgid "Transformation" -msgstr "transformação" +msgstr "Transformação" #: apps.py:44 models.py:44 msgid "Arguments" -msgstr "argumentos" +msgstr "Argumentos" #: backends/python.py:86 backends/python.py:100 #, python-format msgid "Exception determining PDF page count; %s" -msgstr "" +msgstr "Exceção ao determinar o número de páginas do PDF; %s" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." -msgstr "" +msgstr "Não é um formato de arquivo de escritório." #: classes.py:120 #, python-format msgid "LibreOffice not installed or not found at path: %s" -msgstr "" +msgstr "LibreOffice não instalado ou não encontrado no caminho: %s" #: classes.py:254 msgid "Resize" @@ -57,19 +58,19 @@ msgstr "Redimensionar" #: classes.py:295 msgid "Rotate" -msgstr "Rodar" +msgstr "Rotacionar" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliar" -#: classes.py:324 +#: classes.py:333 msgid "Crop" -msgstr "" +msgstr "Recortar" #: links.py:31 msgid "Create new transformation" -msgstr "Criar uma nova transformação" +msgstr "Criar nova transformação" #: links.py:35 msgid "Delete" @@ -81,13 +82,13 @@ msgstr "Editar" #: links.py:43 models.py:65 msgid "Transformations" -msgstr "transformação" +msgstr "Transformações" #: models.py:32 msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" +msgstr "Ordem de execução das transformações. Se deixar em branco, um valor automático vai ser atribuído." #: models.py:38 msgid "Name" @@ -97,59 +98,60 @@ msgstr "Nome" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" +msgstr "Entre com os argumentos da transformação como um dicionário YAML. ie: {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" -msgstr "" +msgstr "Criar novas transformações" #: permissions.py:13 msgid "Delete transformations" -msgstr "" +msgstr "Excluir transformações" #: permissions.py:16 msgid "Edit transformations" -msgstr "" +msgstr "Editar transformações" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" -msgstr "" +msgstr "Visualizar transformações existentes" #: settings.py:10 msgid "Graphics conversion backend to use." -msgstr "" +msgstr "Módulo de conversão de gráficos a ser usado." #: settings.py:16 msgid "Path to the libreoffice program." -msgstr "Caminho para o programa BrOffice." +msgstr "Caminho para o programa LibreOffice." #: settings.py:20 msgid "Path to the Popple program pdftoppm." -msgstr "Caminho para o programa libreoffice" +msgstr "Caminho para o programa pdftoppm de Popple." #: validators.py:22 msgid "Enter a valid YAML value." -msgstr "" +msgstr "Entre com um valor YAML válido." #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" +msgstr "Excluir transformaçãa \"%(transformation)s\" para: %(content_object)s?" #: views.py:139 #, python-format msgid "Create new transformation for: %s" -msgstr "" +msgstr "Criar nova transformação para: %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" +msgstr "Editar transformação \"%(transformation)s\" para: %(content_object)s" #: views.py:238 #, python-format msgid "Transformations for: %s" -msgstr "transformações para: %s" +msgstr "Transformações para: %s" #~ msgid "Resize." #~ msgstr "Resize." @@ -188,13 +190,14 @@ msgstr "transformações para: %s" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +510,9 @@ msgstr "transformações para: %s" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +628,7 @@ msgstr "transformações para: %s" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.mo index 351ac0d3947df1fcb9832a7462dddf0527fadac8..213bccd870cf167a8b9eebd85064c729e300a287 100644 GIT binary patch delta 283 zcmeBSTg_H~Pl#nI0}yZku?!H$05LZZ&jDf(I03|LKztI2S%CNgl)eh26@d5_5QF4@ zLun>Ph&oOneH@7SfS4U9ca4dGffGpI1JWRKUI1xj28IBJw?GCzP(Y9wBB2PS)qpfm zFBpI<0BHg_k`;)7S{Q)RU;r{43|vxkQcF@N?&#$;PgGAl?b3_W@}IAU+JlY(V@3O1}ou zAa$RB_&6g2!*?Lf3B>!EAmS&1v@(!?4oLF@=}!=GO9m!phyr#X4b%q)tWX-{D3GB* zDF&c=FaTK!0u#^oavPZF8ks8?nphbcOipK%<1*GYGE^`!v@$T8+|Ss-?~|C9UYeMm YYNb$=A0OmDS&S)qawAjdpF 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 9db727cde8..165cc3859d 100644 --- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-03-21 21:06+0000\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-04-17 09:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -43,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -59,11 +58,11 @@ msgstr "Redimensionarea" msgid "Rotate" msgstr "Roti" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Zoom" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "" @@ -73,7 +72,7 @@ msgstr "" #: links.py:35 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:39 msgid "Edit" @@ -112,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -188,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.mo index dbbdfb7dca479e7751e781ecf7bb354d5a7474a0..00b91fb8083318ee47a4c5f7af5486eed372c4a6 100644 GIT binary patch literal 3784 zcmbuB+i%-c9LGHvw=iIgjq8B3vW-NW6Q}FOmM$CH+M-HrS4uYt1VV0dl6p9HWIJs) zHfe1c3~dlVnly1oJWpi3i1fNA#N`3m;tiz1Uw{zeffo?p-?5u4T^eqd?2nJnIluG$ zU5@Rm>sDWoa6F20BhK}!Bq;)}xd9g(CGa-za=s z-@wga77rPC9wZ%?0#1Q z0M7*NFG2F}Pmt_yK(L+%H-p>2QIPar0yE%OpbW-Bl9T{n0E^&7unP>|E=ecA0{Are z3rKz(T;s>H6Qp(C0Dl7C2jk$WJN)%N11T>*fHdw8kn*|)4Ppd*9P9u)Km#N{r@>Vq z`En0VipBjnNjt?0vL&RZa%{jIBuls8#1i6w31N#GkS*d$_mEgQ5M~kghd`=1I_~x% zu4{2cC`C;?0+R1YhhLkZbim3Ma@=ri>5yp*am(SBbjaeW!S(61 zau36p1ls~DE6t@YGcUDqojW|hGV`oyOSpEyh}{%e4yR1RfzB7rfnz-7MC|?bZP-$K zT64tZ|5&eQ0Hz_qVk#R_buG=FJ<#1nw*?*zdYnPd)TMxua7IsRU1F*Y3u10sOHou+ z>v)uDJi%UWO7pD6x!sgt@!iTPseL5H^E8B|5i~2O8Jdx0y=@&VuVy(*nFYgXrKmq; zsrf-IW#bVg(WWT_YU(9!q?u!~f(?mX+JMCmXEIs}sWly@8MdS9I!`m`qz4(8OEcAh zac58@vq#NwsRv!E!AyT%;_w1`@8Oe(b$G{LkV-O6m$wzaH**-|eQl4BI!UNfJEro3fl zEj7pT>5PLXx!OTGIUl$XjEqWs+}2KTsn2v!?oxkksn<5`W!-jAmbP?M!#3d~n(a_- zYIAK%&zWXU>a|R&S-CSUAN7-yVBP9*_}kvr{Ye|PzjmDRgdE?4DG5c{rr-#5 zskS2vw{+E^?W$|K8O^JPmO`JAEug04ey-*ctgnDjLtl8%aq@{+YBjV*B{nT)foTN&Ldo09Q3+s_n+;b`wmHZOJUO}5ajn4#>AH?xx`{VDt6EfGwK z2UC(sg}TJJeaW5G>3brT=dg=qme$;xgoXXA83uMlT0@fimUr5n^v2zJciLU>#=LWq z`>wm_F1Qo!w0GJYqpRe8f=8dbQ*H?(&NK8bqJPnyX6_ZtpT_NFu!J$xQNn<-JN+N0 zF|0G^6~)G{yRdhz;lf^#TqwCyP*lb#6p?Pp{ghmA=kWOYWwFYy*J@y# zyt1m)j+w~nbps-3d5ypw2^+<(3d>3xT)1BwwxO2rgn ze8n60MoB)@Qen`CMTYhT)XZyCTT~Iz>!y~Fpqlavvfsc@ugKg9=Dp%BV(vVZ$e|DA*Z>9WqW9y)h>2T){GP-udd5sdzp~rr}?i z0*4i6ad)OcK-`(yk1E`rW;dV9l_2NQ;=ityJ!)1bU7SvTW1B)&> zMp7#a29+ViR{TR5k-rp2dQoC$_^x2SD42N!^<3pwq4JARoiTgec*OsjUnW?u?$uyh zF=1NxOn2C1qJm!cU)Ln3!8>}zPD*}*&Y)cVTA^`B1?_#>8MHyhz1OLF5zPtQzlql0 SRWZGv>AgblXWDD@j{Xa7&059) delta 373 zcmXYry-UMD7>7^WB=$qGSp@MTj#2`bSQLVrxD^L2IQYehp%gTMOWIZGBBb}pD-?abQLeL~*=9}Ovv^w+jUB;_e&tra$yfO( hpOUkrt5(q~%;#Q`Yw<9CVBV`2IgroEIp`)==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" +"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:18 permissions.py:7 settings.py:7 msgid "Converter" @@ -27,29 +25,30 @@ msgstr "Конвертер" #: apps.py:38 models.py:34 msgid "Order" -msgstr "" +msgstr "Порядок" #: apps.py:40 models.py:64 msgid "Transformation" -msgstr "" +msgstr "Преобразование" #: apps.py:44 models.py:44 msgid "Arguments" -msgstr "" +msgstr "Аргументы" #: backends/python.py:86 backends/python.py:100 #, python-format msgid "Exception determining PDF page count; %s" -msgstr "" +msgstr "Ошибка при определении числа страниц PDF; %s" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." -msgstr "" +msgstr "Не является файлом офисного формата." #: classes.py:120 #, python-format msgid "LibreOffice not installed or not found at path: %s" -msgstr "" +msgstr "LibreOffice не установлен, или не найден по пути: %s" #: classes.py:254 msgid "Resize" @@ -59,21 +58,21 @@ msgstr "Изменение размера" msgid "Rotate" msgstr "Вращать" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "Увеличить" -#: classes.py:324 +#: classes.py:333 msgid "Crop" -msgstr "" +msgstr "Кадрировать" #: links.py:31 msgid "Create new transformation" -msgstr "" +msgstr "Создать новое преобразование" #: links.py:35 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:39 msgid "Edit" @@ -81,13 +80,13 @@ msgstr "Редактировать" #: links.py:43 models.py:65 msgid "Transformations" -msgstr "" +msgstr "Преобразования" #: models.py:32 msgid "" "Order in which the transformations will be executed. If left unchanged, an " "automatic order value will be assigned." -msgstr "" +msgstr "Порядок выполнения преобразований. Если оставить неизменным, будет установлен флаг автоматического выставления порядка." #: models.py:38 msgid "Name" @@ -97,27 +96,28 @@ msgstr "Имя" msgid "" "Enter the arguments for the transformation as a YAML dictionary. ie: " "{\"degrees\": 180}" -msgstr "" +msgstr "Введите аргументы для преобразования в формате YAML-словаря, например: {\"degrees\": 180}" #: permissions.py:10 msgid "Create new transformations" -msgstr "" +msgstr "Создать новые преобразования" #: permissions.py:13 msgid "Delete transformations" -msgstr "" +msgstr "Удалить преобразования" #: permissions.py:16 msgid "Edit transformations" -msgstr "" +msgstr "Изменить преобразования" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" -msgstr "" +msgstr "Просмотр существующих преобразований" #: settings.py:10 msgid "Graphics conversion backend to use." -msgstr "" +msgstr "Бекенд, который будет использован для графических преобразований." #: settings.py:16 msgid "Path to the libreoffice program." @@ -125,31 +125,31 @@ msgstr "Путь к программе LibreOffice." #: settings.py:20 msgid "Path to the Popple program pdftoppm." -msgstr "" +msgstr "Путь до программы Popple pdftoppm." #: validators.py:22 msgid "Enter a valid YAML value." -msgstr "" +msgstr "Введите допустимое YAML-значение." #: views.py:71 #, python-format msgid "Delete transformation \"%(transformation)s\" for: %(content_object)s?" -msgstr "" +msgstr "Удалить преобразование \"%(transformation)s\" для: %(content_object)s?" #: views.py:139 #, python-format msgid "Create new transformation for: %s" -msgstr "" +msgstr "Создать новое преобразование для: %s" #: views.py:192 #, python-format msgid "Edit transformation \"%(transformation)s\" for: %(content_object)s" -msgstr "" +msgstr "Изменить преобразование \"%(transformation)s\" for: %(content_object)sjavascript:;" #: views.py:238 #, python-format msgid "Transformations for: %s" -msgstr "" +msgstr "Преобразования для: %s" #~ msgid "Resize." #~ msgstr "Resize." @@ -188,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -507,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -627,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.mo index 1d4eb304b0aaf934680831d08fef624b88f57dea..f3668dcd27b9bd2e9062288c5f50817835b74239 100644 GIT binary patch delta 45 zcmZ3_vYuta5^h67T_a-!10yR_|JNr!zWQqj< DN4O4e delta 47 zcmZ3-x{h^&0VB78iLQ~kf}x3(p}}Np#, 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:06+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 settings.py:7 @@ -42,6 +41,7 @@ msgid "Exception determining PDF page count; %s" msgstr "" #: classes.py:97 +#| msgid "suported file formats" msgid "Not an office file format." msgstr "" @@ -58,11 +58,11 @@ msgstr "调整大小" msgid "Rotate" msgstr "旋转" -#: classes.py:307 +#: classes.py:313 msgid "Zoom" msgstr "缩放" -#: classes.py:324 +#: classes.py:333 msgid "Crop" msgstr "" @@ -111,6 +111,7 @@ msgid "Edit transformations" msgstr "" #: permissions.py:19 +#| msgid "Raw application information" msgid "View existing transformations" msgstr "" @@ -187,13 +188,14 @@ msgstr "" #~ msgstr "File path to graphicsmagick's program." #~ msgid "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick.ImageMagick, converter.backends.graphicsmagick.GraphicsMagick " -#~ "and converter.backends.python.Python" +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick.ImageMagick, " +#~ "converter.backends.graphicsmagick.GraphicsMagick and " +#~ "converter.backends.python.Python" #~ msgstr "" -#~ "Graphics conversion backend to use. Options are: converter.backends." -#~ "imagemagick, converter.backends.graphicsmagick and converter.backends." -#~ "python." +#~ "Graphics conversion backend to use. Options are: " +#~ "converter.backends.imagemagick, converter.backends.graphicsmagick and " +#~ "converter.backends.python." #~ msgid "Help" #~ msgstr "Help" @@ -506,11 +508,9 @@ msgstr "" #~ msgstr "Magick Image File Format" #~ msgid "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" -#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib " -#~ "1.2.3.3,1.2.3.4)" +#~ "Multiple-image Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgid "Raw Bi-level bitmap in least-significant-byte first order" #~ msgstr "Raw Bi-level bitmap in least-significant-byte first order" @@ -626,8 +626,7 @@ msgstr "" #~ msgid "Joint Photographic Experts Group JFIF format (62)" #~ msgstr "Joint Photographic Experts Group JFIF format (62)" -#~ msgid "" -#~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" +#~ msgid "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" #~ msgstr "" #~ "Portable Network Graphics (libpng 1.2.42,1.2.44, zlib 1.2.3.3,1.2.3.4)" diff --git a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.mo index 312fb621402206103920ffcb5726be252c37d350..b7c47be34f700722deb75e2ed0bd4c81bd74e444 100644 GIT binary patch delta 24 gcmew^@LgcTeim*+LtP_d1p^~1Q{&C2Sk^KF0BZyX)&Kwi delta 24 gcmew^@LgcTeim*66I~;71w#`nLxatySk^KF0Bb)7*Z=?k 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 e361c5455d..98a7589b80 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:30 msgid "Django GPG" @@ -98,6 +96,7 @@ msgid "Key management" msgstr "Key management" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -162,6 +161,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -194,6 +194,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -202,6 +203,7 @@ msgid "View keys" msgstr "View keys" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -214,11 +216,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -229,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -238,6 +243,7 @@ msgstr "Import key" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -281,12 +287,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.mo index 45c1332f6b56cc1e0abe96126ce793f41c5b42a6..2e72b8837e59764a133025492f1b77d349e6edb9 100644 GIT binary patch delta 24 fcmaDS@=j#KEf#J=LtP_d1p^~1Q{&A~Svpw(Y&{3y delta 24 fcmaDS@=j#KEf#JA6I~;71w#`nLxasvSvpw(Y, 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 @@ -97,6 +96,7 @@ msgid "Key management" msgstr "Управление на ключове" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -161,6 +161,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -193,6 +194,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -201,6 +203,7 @@ msgid "View keys" msgstr "Виж ключове" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Подписи" @@ -213,11 +216,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -228,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -237,6 +243,7 @@ msgstr "Внасяне на ключ" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -280,12 +287,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.mo index 50f81f1b35a7b0493be08d2350cb63fa2d9f64e6..b683257435e00354369b41b49e9c605248c87cc1 100644 GIT binary patch delta 24 gcmdlcxJ_`weim*+LtP_d1p^~1Q{&C2Sl%!L0AK(Il>h($ delta 24 gcmdlcxJ_`weim*66I~;71w#`nLxatySl%!L0AM=@mjD0& 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 977ef30fe7..d6285aa2ae 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18: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" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:30 msgid "Django GPG" @@ -98,6 +96,7 @@ msgid "Key management" msgstr "Upravljanje ključevima" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -162,6 +161,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -194,6 +194,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -202,25 +203,26 @@ msgid "View keys" msgstr "Pogledaj ključeve" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih " -"datoteka." +msgstr "Home direktorij se koristi za pohranu ključeva, kao i konfiguracijskih datoteka." #: settings.py:21 msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -231,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -240,6 +243,7 @@ msgstr "Importuj ključ" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -283,12 +287,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/da/LC_MESSAGES/django.mo index 07d28f67093410ec6145d3fe87ff3cbc36706f1c..85609690ba21cda64a18a6e750e52980161b594f 100644 GIT binary patch delta 22 dcmZ3%vVvv8Rc=E=T_a-!10yR_2D<87b6~`+ikYF}ImhibDQ~-mWb&tp1k8H+kg1s}|47=VKe=G_JMKv?kJ)P;U zo>X_wtS$DmC&Y>yC=d=2iV#;2?8zdC;SwRl1%x6YE{GE+4v0&H`2V}7XWAbn*ZjJx zU%h(u-m6#s``Jf+AkeO&KZX9@LqhC;e|s1|Xmjru;u&xr{2+J({4lr&J`Q$3idygk z;9&gyF8Cq5-v=KBUk5)1z6s8NzXGp;Z-dW*4`VV}0q4P&!NVKMLWq;92k-I17FhTmxzEHc0u~Anp1#$n{b(bk2K*jKJAMX!3;YH69QZh#u>>~2DmVn` zx1WQw?*T|Xe*!T@{B`{OA7CBt{~nKD#-vZ+eI5KP_%gTv4nfBGEs*Q~7Q~B^f}H;^koolxl9Bd43DPeT z{4{uF%x#eV3qa2AgVa9&p+ejp^FB!byaCb=e*`)2FW@@(F8Cz)6pSI4K>B+Fd=^w7 z?YIvzF0X?KZ)AvQIjvu}N z(w3rK!UJ=Kjj=D<=kYL)&U|A`c)pl(4my3q#vEruxJ3>9JUZhd(U;NbJ2uuT#*eX} zzl(HUgW3%tnsNjDVhsv~3HGb%}~u83<^tAx@Wm1t4lSrc^~Xg+4(?3$d7 zORs!Rlpjne-N;VmURB16hake5%Yo&=ak?g0fz;AO7zo`MVsaBvf zMX=s?{dQ(l=U87iYZ%>ZWOucaEhusTkIB<4u|ldUw_TrM=u2PnL$jhA%A zEfwkoshtpkUdY1Utjj!Uq&syP-4jGnk9klLw<6e8xEF6mi!FuFLx^dO43jP2D2wdg zvi<<+o5yA=OD>TkANqP`dk?#dGke8kAb*d=HWGhFE8Fe@ZL1TpQ=Ad0t))GafmrOM z?Y53%Hw^;1q^lC%Ysl&N7xm;bk>?|!g%NJyIxpwJ-Q@vQNLeSaP z1D_SAELXkcELY|7Qti^k^HsE&n<`G6U8_tSC>(*B+>Kg3GJi|yeoxD*N%mUlXRlw) zQ87CC3T7HFMJhVGT7@-v9d3p3b2<0tjylNan!M8TlZoLqnXNUm72tpe&PHUzxF$_MdyQ9@S7iRUI%niF zt8!_6Wk%#BeH<{%kL6Cg8;lO)SO+**_~5Fp)dsocjShpv_p~fBR5Wayps=LIi*cOO zFsth~M-Sq57c-`cWH27fO8hC~Crkb4(3UL8ZiZ6DM?C9Muc-QYZS}QHP>EZ}%bxa) z96fMdWGXIzE`~~r9;8-|ege6^9UZzbo;R60I`mo!$FF`|cjzY)`k6Q_HSQ3q?mtP}2jQQMRn0@XR{UTm=Rp|~{GT7gR4 zJTUo%p;{fAwtI}~fySZ+H`PHJ%AG#nv^8>o8+z(012a1EM)}TQptY|}acf}nM{UU~ z&+%agg?Kg|m!<6E3+4Pcx@=x7Op@c22+7xr*x7K+77U87|=18y*f#g>bj&yb^9dsc;E z_8(MnuT9q#qaRLAPx%>#f8za;1M-OB@VOQRv>cJ+U$P4@bKiB{)qXg+?p)msv_+h! zN92g2(v63k(v1QSVT7lP-1l^TEY`J$p#3N`5jA@3rr;SaF z?_i-ZQ|1jH^us0GfFH0AzoHgs@UKm{7t0uT;|?4^{rx;@gEnr$N$>eh>|{KH+V~k}z(>h-V{GjOj)$bI>!6`d&Y(;Wt@dF;Y!W^Kch7{lwRil3u?w}2|_ z9ma9R8`m(|)K(s}@}UyrxCe(&6HMb4yo=i~k8Ij3;xT-W+ISta(?qim_5EJdQ5{Dv zGt5mbAHxc~=6OF%|5fn|9%zDBs0H4l&UDFh1y$iUR7I7=Yn`gc!;G6yok}B}T@4kW z_h~m7CF{sqQqe+gCjB~pgXzOG zy^snOqtJUn4W^Og^i1RsH-)NFYjhkO&%aQ68@!P!Z1O&46;-~KEk`gyq8p~fUedr5WnM=vkNHSyo0EuUVwg3PC 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 4d450cee93..fbff8df6cd 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 @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 # Stefan Lodders , 2012 # tetjarediske , 2012 +# Tobias Paepke , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-04-27 18:22+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-05-20 21:54+0000\n" +"Last-Translator: Tobias Paepke \n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 @@ -32,7 +32,7 @@ msgstr "Schlüssel-ID" #: apps.py:74 apps.py:87 forms.py:19 models.py:47 msgid "User ID" -msgstr "" +msgstr "Benutzer-ID" #: apps.py:77 forms.py:34 models.py:50 msgid "Type" @@ -60,11 +60,11 @@ msgstr "Keine" #: forms.py:31 models.py:39 msgid "Fingerprint" -msgstr "" +msgstr "Fingerabdruck" #: forms.py:33 models.py:45 msgid "Algorithm" -msgstr "" +msgstr "Verfahren" #: forms.py:47 msgid "Term" @@ -72,9 +72,7 @@ msgstr "Begriff" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" -"Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht " -"wird" +msgstr "Name, E-Mail, Schlüssel-ID oder Fingerabdruck des Schlüssels, der gesucht wird" #: links.py:13 msgid "Delete" @@ -101,8 +99,9 @@ msgid "Key management" msgstr "Schlüssel-Management" #: links.py:37 +#| msgid "Import key" msgid "Upload key" -msgstr "" +msgstr "Schlüssel hochladen" #: links.py:41 views.py:160 msgid "Private keys" @@ -146,9 +145,7 @@ msgstr "Signaturfehler" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung " -"verfügbar." +msgstr "Das Dokument ist signiert, aber kein öffentlicher Schlüssel zur Überprüfung verfügbar." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -160,27 +157,28 @@ msgstr "Das Dokument ist mit einer gültigen Signatur signiert." #: models.py:27 msgid "ASCII armored version of the key." -msgstr "" +msgstr "ASCII Version des Schlüssels." #: models.py:28 msgid "Key data" -msgstr "" +msgstr "Schlüssel-Daten" #: models.py:56 +#| msgid "Key ID" msgid "Key" -msgstr "" +msgstr "Schlüssel" #: models.py:57 msgid "Keys" -msgstr "" +msgstr "Schlüssel" #: models.py:63 msgid "Invalid key data" -msgstr "" +msgstr "Ungültige Schlüssel-Daten" #: models.py:66 msgid "Key already exists." -msgstr "" +msgstr "Schlüssel existiert bereits." #: permissions.py:10 msgid "Delete keys" @@ -188,7 +186,7 @@ msgstr "Schlüssel löschen" #: permissions.py:13 msgid "Download keys" -msgstr "" +msgstr "Schlüssel herunterladen" #: permissions.py:16 msgid "Import keys from keyservers" @@ -196,17 +194,19 @@ msgstr "Schlüssel von Schlüsselservern importieren" #: permissions.py:19 msgid "Use keys to sign content" -msgstr "" +msgstr "Schlüssel benutzen um Inhalt zu signieren" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" -msgstr "" +msgstr "Schlüssel hochladen" #: permissions.py:25 msgid "View keys" msgstr "Schlüssel anzeigen" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Unterschriften" @@ -219,21 +219,24 @@ msgid "Path to the GPG binary." msgstr "Pfad zum Programm GPG" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "" +msgstr "Server, der nach unbekannten Schlüsseln durchsucht wird." #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" -msgstr "" +msgstr "Schlüssel löschen: %s" #: views.py:48 #, python-format msgid "Details for key: %s" -msgstr "" +msgstr "Details für Schlüssel %s" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Schlüssel-ID %s importieren?" @@ -243,6 +246,7 @@ msgstr "Schlüssel importieren" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "Schlüssel-ID %(key_id)s konnte nicht importiert werden: %(error)s" @@ -265,7 +269,7 @@ msgstr "Ergebnis Schlüsselsuche" #: views.py:138 msgid "Upload new key" -msgstr "" +msgstr "Neuen Schlüssel hochladen" #~ msgid "Unknown" #~ msgstr "unknown" @@ -286,12 +290,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.mo index 06542ff8b6d22ffacc786c42292c3607de72ed61..a5966431a4adc7bd66be6bfc95daa1c7877608c7 100644 GIT binary patch delta 24 fcmey*_n&Wr7Ynzcp{|j!f`O5hsqyAe7A< delta 24 fcmbQMFjry26i#jf6I~;71w#`nLxaupIqTQ}S_B5n 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 226eee0790..5affd12616 100644 --- a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-05-09 01:46+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 @@ -72,9 +71,7 @@ msgstr "Término" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" -"Nombre, dirección de correo electrónico, identificador de clave o huella " -"digital de clave a buscar." +msgstr "Nombre, dirección de correo electrónico, identificador de clave o huella digital de clave a buscar." #: links.py:13 msgid "Delete" @@ -101,6 +98,7 @@ msgid "Key management" msgstr "Gestión de claves" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "Subir llave" @@ -146,9 +144,7 @@ msgstr "Error de firma." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"El documento ha sido firmado pero no hay clave pública disponible para " -"verificación." +msgstr "El documento ha sido firmado pero no hay clave pública disponible para verificación." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -167,6 +163,7 @@ msgid "Key data" msgstr "Datos de llave" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "Llave" @@ -199,6 +196,7 @@ msgid "Use keys to sign content" msgstr "Usar llaves para firmar contenido" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "Subir llaves" @@ -207,25 +205,26 @@ msgid "View keys" msgstr "Ver claves" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Firma" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Directorio de inicio utilizado para almacenar las claves, así como los " -"archivos de configuración." +msgstr "Directorio de inicio utilizado para almacenar las claves, así como los archivos de configuración." #: settings.py:21 msgid "Path to the GPG binary." msgstr "Ruta al binario GPG." #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "Servidor usado para buscar llaves." #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "Borrar llave: %s" @@ -236,6 +235,7 @@ msgstr "Detalles para llave: %s" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "¿Importar llave: %s?" @@ -245,6 +245,7 @@ msgstr "Importar clave" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "No se pudo importar la llave: %(key_id)s; %(error)s " @@ -288,12 +289,12 @@ msgstr "Subir una nueva llave" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.mo index ceabf1e3a688b1bffab2f6690426229d58780411..7fc8f54dcba3f6328ea86ec0d16b532137acdd2e 100644 GIT binary patch delta 24 fcmX>ueq4NmFdMg_p{|j!f`O5hsqtnxww0^^R7eIc delta 24 fcmX>ueq4NmFdMgliLQ~kf}x3(p}}T3ww0^^RD%XE 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 ea8d6c44e5..42bb14f760 100644 --- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 @@ -96,6 +95,7 @@ msgid "Key management" msgstr "مدیریت کلید" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -160,6 +160,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -192,6 +193,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -200,6 +202,7 @@ msgid "View keys" msgstr "دیدن کلیدها" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "امضاها" @@ -212,11 +215,13 @@ msgid "Path to the GPG binary." msgstr "محل کتایخانه باینری GPG" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -227,6 +232,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -236,6 +242,7 @@ msgstr "وارد کردن کلید" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -279,12 +286,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.mo index 63a69101caa67110224e4447eb52d11275fe0833..f38174f28ca8437709eef66618796cc226a01b3a 100644 GIT binary patch literal 4171 zcmZ{mO>87b6~~Jt5Mq{(Ea5YJR0xah?Dovq`++mwUGUoD&5(6s{IP-vh|1kHGrjJw zRCSNnNZ|sPpePatr0^lJ0wI_iLL88gvJ%53oItrEE;(@J!Ua&o|6kobGftM))cmHq zU%h(u-mCZK@24O5p}=(+<5L*_eU}is;NR}Y7p{eO3-K7Z2tEWp4SoRJ2j33{AVm%M z9&lK_e-V5i?q3EU1YZR|4Bi3fz~6!E;9c+u@P14t8{i`Nb@095cR{Z6GDtl?20sY? z9Hjo=f@|PwAU;lr`X7YwY49}oD0l|^5V!`?-W`zgH$mF z0@4q6K+gLkcmaGJq_XmcR+1#%q*i~BeQejI!hgo)w;h>y68uMuLs3G)3vF`4rp z!esj65s>>|0BK(vGka~Uqehd65xCH*Eq6eouf&1q{`tAE5 z=e-KjzTbdc_xB+6{u!j6H$eJl8I$P0Cqeq-E8sGifu96_0n$IOf%u3qzCHr}6=XjA z1El_cgP#LW!AVF#(F8vYUIe+$E_fb%4&-{TfRy_gNPWKq@ezN(m$MUOUcLc-27D8g z;C*;V|2+=UfAb*qFM*GMD8W@ZRb$=G)5(e$y#Tvjhcu^P64P!%njLqjUK8jIat?I|) zAZ@8H+Do7C`eF(9O@A+9&_DDw<3OKy7~C^2`hXY0E!r4oF`mSb7|R&+9WT}@<}G9K z35@zeSX~_G)B7+O!}?mmkH@N;b0Gc3*fcQ~Fus7n+^;XB?DSgOUGH|KGI45jAcxx6 zFim9Illef)Lw(#3Yf(QnVLph(H5Eu3_7jyCMmNN|(JH5OpmHrXcGtv)jx>KdaCTds zu`{>)ovSdKQ1((YmAj>qek!kTUl$vxU&K1eWoX@sFzukoWs=IQIEX@@bNEgTp-mk` z+9`tdVK4NZQH^`)IKnohl0y}RCwB7A<<3c!%!qKUewqd|T9Y)dO~W3-iPs0h&yj-|dG+8hh=RV^oDm8iaE0NwK!3XNSDZHp+kd{Tb7l_r}jg{pjj!W%m2 z=L7MKiuF0Ey%>Q$=fd9IkY&=y-qdAuPn4#I%!7t_CWT$KdvTX&v8@n#2r;dZVe%kM zltFfHn{bHqEn~Col1r2*AAQx?eu&*!XRnw%DDSP{~CFKx@Y?PvGAx;A(laBf>Jx0Wt>OH1DJdD&WSUp()%F0@(@ z^mgGhP4 zv~cRiBUjHSZzW0%RvC{_&&Q*xuvb5*bav9lw79Qh#k#(0TUOEW2t|Vhz3__!=0Is# z>QNSCGEcD}v{{;jEcRJi7&#n|Snf;XX4=w?d#hJN?Mv#Oh?ac-PWV4Fbj}@2#c9Mr znj~~vZGVFHM+uml7PGQA_@#&U#v^QoS%C5`PTbA-uM=H&U7?J}{7m)g#2K<1U3F(X z%CyN-v<1mF;fI-uWRZtaXz4Bb1RcUZq(|z&ppS(}ZAmxsA=={rF0(G?vyJ0q$CyUE zdd>&)VSq9Lmn$@8<_v?xjF5FJnO#|q@5oGs)b$3lt-p0HR&E&sGl0P zJT2BCAW-M0IpiM6U_817wXWyD2nf1k=XBHwe;r|Re@bc>&~fZMDtEhv92Oa9)ax?y zxfT~hZ7yxBEwbDKi=%=~Mr;%~BO2W#p7x{CM&}5GUn5i+{abV5WD(T=ZM5lNHmGY% zbFn_qafrW9h3iI)EC2gATNq&^xJC_TPeS!{{af13&763BFaNV| z?bM#ATUQ4WKpw&Ile|CCzGxg{K513h=lEAhE_b}FE&TDX%l4(q{>48c*1A(0%$F^U z2D3W7P18F&*;KIVXKt%?$tk-X9`R5oX)(nAp)x7OzB?3n#mr+FwAJyzNp(6V1xR!Q RSxTc27DlY~ctTFB^FIWNQ8)kq delta 1162 zcmZA0Pe>GD7{~E<%UxY})zYn1E1T?(x?=3E+aIk6YZXjSWl$i(q^mBhZtU(sFYTdj zA%sH+b%^L>hbSdTs!MhVR0yI7AtSPoum}fpSvor7eKF`dqSYK+38`ULu z4be*OB?}&7PT}e{cEpSA##G`GR^U5iGoRS`a2*5q4NLI{mg7%6kEXvu50`5bEDtH_XM z9mDt)gUoM!aiD=p*r}2L?!d5XGg6G{KsIy6HHo^f4^{CX9>y`$L^H0lsP4|8AD8hq zU0%Z)<~LXAgH}F)ny84n@g~;b46>Pr>@?A19Kz=q!w@&i9#pHRP!&Hyb@mx*{3Xf!|RR`GbF3T!qIt523z|3rJ_TLIr5j zBcw$hB2|Q}s zbwi==f*MRSsm_GYvQy|i)seeNb>d&By-n_kzJ(U|Sk)?=0dIR*-Xv26JDqVByzAla z%$Pl4XH56h^>ofIq_dOOh+RlIuYI?CeW_`yH|b25HZHy?ZTC2*{Z|6fL|goX6-#u+ zqRs<9^Sk2s;-$)rr>1LkG(9|?%2}CIe(R^a`2$)a BgHHee 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 37a5142449..801ff61f5b 100644 --- a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po @@ -1,24 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Bruno CAPELETO , 2016 # Pierre Lhoste , 2012 # Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:18-0400\n" -"PO-Revision-Date: 2016-04-27 18:22+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-05-23 20:02+0000\n" +"Last-Translator: Bruno CAPELETO \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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 @@ -31,7 +31,7 @@ msgstr "ID de la clé" #: apps.py:74 apps.py:87 forms.py:19 models.py:47 msgid "User ID" -msgstr "" +msgstr "Id Utilisateur" #: apps.py:77 forms.py:34 models.py:50 msgid "Type" @@ -59,11 +59,11 @@ msgstr "Aucun" #: forms.py:31 models.py:39 msgid "Fingerprint" -msgstr "" +msgstr "Emprunte" #: forms.py:33 models.py:45 msgid "Algorithm" -msgstr "" +msgstr "Algorithme" #: forms.py:47 msgid "Term" @@ -98,8 +98,9 @@ msgid "Key management" msgstr "Gestion des clés" #: links.py:37 +#| msgid "Import key" msgid "Upload key" -msgstr "" +msgstr "Uploader la clé" #: links.py:41 views.py:160 msgid "Private keys" @@ -143,9 +144,7 @@ msgstr "Erreur de signature." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Ce document est signé mais aucune clé publique n'est disponible pour " -"vérifier la signature." +msgstr "Ce document est signé mais aucune clé publique n'est disponible pour vérifier la signature." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -157,27 +156,28 @@ msgstr "Le document est signé avec une signature valide." #: models.py:27 msgid "ASCII armored version of the key." -msgstr "" +msgstr "Version ASCII de la clef" #: models.py:28 msgid "Key data" -msgstr "" +msgstr "Contenu de la clef" #: models.py:56 +#| msgid "Key ID" msgid "Key" -msgstr "" +msgstr "Clé" #: models.py:57 msgid "Keys" -msgstr "" +msgstr "Clés" #: models.py:63 msgid "Invalid key data" -msgstr "" +msgstr "Contenu de clef incorrecte" #: models.py:66 msgid "Key already exists." -msgstr "" +msgstr "Clé déjà existante" #: permissions.py:10 msgid "Delete keys" @@ -185,7 +185,7 @@ msgstr "Supprimer les clés" #: permissions.py:13 msgid "Download keys" -msgstr "" +msgstr "Télécharger les clés" #: permissions.py:16 msgid "Import keys from keyservers" @@ -193,46 +193,49 @@ msgstr "Importer les clés à partir des serveurs de clés" #: permissions.py:19 msgid "Use keys to sign content" -msgstr "" +msgstr "Utiliser des clefs pour signer le document" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" -msgstr "" +msgstr "Uploader les clés" #: permissions.py:25 msgid "View keys" msgstr "Afficher les clés" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Signatures" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers " -"de configuration" +msgstr "Répertoire principal utilisé pour stocker les clés, ainsi que les fichiers de configuration" #: settings.py:21 msgid "Path to the GPG binary." msgstr "Chemin du binaire GPG" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "" +msgstr "Serveur de clefs à contacter" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" -msgstr "" +msgstr "Effacer la clé: %s" #: views.py:48 #, python-format msgid "Details for key: %s" -msgstr "" +msgstr "Détails de la clé: %s" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "Importer l'identifiant de clé : %s ?" @@ -242,6 +245,7 @@ msgstr "Importer la clé" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "Impossible d'importer la clé : %(key_id)s; %(error)s" @@ -264,7 +268,7 @@ msgstr "Résultats de la recherche de clé" #: views.py:138 msgid "Upload new key" -msgstr "" +msgstr "Uploader une nouvelle clé" #~ msgid "Unknown" #~ msgstr "unknown" @@ -285,12 +289,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.mo index f198b7d957bae24f878093c2b750095349d3d036..62a8456e056bbdffc8f8a191b785b68361b07332 100644 GIT binary patch delta 22 dcmcc3a+_ts7j8pCT_a-!10yR_13I3fZNbe*T`7Gz{twfc;jh1MgU0^21x(_ delta 22 dcmeBV>13I3fZM=C*T`JK(8S8nVB={!MgU1o21@_{ 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 cc9a7753e1..c586ee243c 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 @@ -96,6 +95,7 @@ msgid "Key management" msgstr "" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -160,6 +160,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -192,6 +193,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -200,6 +202,7 @@ msgid "View keys" msgstr "" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -212,11 +215,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -227,6 +232,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -236,6 +242,7 @@ msgstr "" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -279,12 +286,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.mo index 52709f455ea5adb96075dff550353ea4d9ca2835..9ad67ff2edae7686f4807440aa90465311d1dadf 100644 GIT binary patch literal 4102 zcmZve-)|j96~_lsC^eyw00kO;OrRll;=R7M(~w@rKzePbSB-=5k3f(Bjd$m+C)wS( z-Pyg4Eh>Z%0;CFwO0D=IAq!q8^aVs;c%Tx2hl)P|#1n6QLWnm6e8021_g=SMdG2Rt z_sp3y=bSyqe?R@e3j)_wjE`dc=WRl4fqy%JA6(P#5aKL213m;k4L%I+fbRh#kfJ&G zPHr4RW97KN@5|tq!B;^1iHGr$@@GKWaRK}^*aaT}?|}5Dua2n735J>->!VjOH1*gIDAotk-8Ry&JW$BrAHd+n8o)E~g1P>?VJ=f2bu&-sx9A!MB5p%?t1f#@Tv43tqrrZ00cNd*%^++FZ<+(RFRB+v`b{r#9D-9O~Q| zn@QW3#h#XT^+8KqOJbXwVlNd>sz^E$XR0W3-4fkgtAf&zDzsSHx+Ye1qIv7V)g5`x zO-y-TD3gpR`!*lT-BDR=<@Js0V#S7Ks6dc^ieVrs^ zXtTbF%UW08B-*t^FCEytsKJdVZe?$UarxZDBPaX0O}&9SXA+2BeIPm-@m1n!=)k~Y z50xPL(Sg+Wj4QAqUo~MwxY!dn zRjOyD4pIbq)`z{fBCDj4{jtmFp2XU_%!8J=X<=96Ud%ErHWWe+A*MAlOzxUY<;d=h z+zgSvRctnVa)}Dnqc3{f@8WdM+bc#7s<{)JNc=6W@^B9bb6tq7<{ObZ&uP!-ffHM0 z7;5MGWs=Y(p*BMV7y1#BY2fQ7nsH)V=c(8}7-+GR`Sgb6#)tHcqDxrjcfqQi0rQO# z6St$snclBnxjKiKQLvN=R4`OKI1$5p%T$sM&aropgF!C}ZdH|`BiGe|%H-}3hQ|*4L=_< zUs|C}Ka15_Tp}HVZLQLd>=pR>af0c+q8N1M=JxmZTLpESzP`s5bGdaYH#VP3dDK8h zshdk`C3B{jo0(egt*?$fGT&-Xbt@kRj9Et(`d%?NNR-KzWVoktr;FvC?X}>_SdKgP zbsnr{p^cEo9eHKf6eD9h5|fPtUv(0!**tX}nGO8ZEiWv|>UMcLlV_LZ{LIpnsNJSmBDtcFCAvNS$jBn*g zqp$DHi)t6c8egb58Q&Z;f=jU5xYqX)8P(<9%KN`Wl|zv6ZNtFA&Z3r#w`28Z`L8U8 zY-HTPW@Z;fPY#g1Fsx|;;*EN1jZAl0W~$m@eEg9KjU0N4cM`VQEp0{@jb!M!My|H? zm@~IRWKgI?&BilL?f1TRp^9{Ns91(`q>p-2*)L3D4i6a@o-Nhr(VU|P;J7}d2$yyD zU&b#QhJi_V5%FQ&5_}+=ZcvA{Y7L{DsHaeh!dm6YWOsn~M|(vosjHyhggJ#EqleY& zCR`x8RmN2cSygT{J4)@)GPI1%{Ue`t&2n*FJN`d`BOv9PUB#wh-{3BAsm>AnN@=x) z@%^N3C5^-IZvq?!@jas>J?Ss>l`@O>G~9^3Fwt6A;o*Q;mRUxFevA!k1=?D(GroeG zDBjGTQS_PzVgt6>+*NyF|9Ki8s`EOm_(k!z~NApisnwn7Vc?V53Ke2{P()j zB}H`5nrMjXr@`xAtV`j$Fived8sy9JxwYkn@NHl zw2iTYfh1gv7By1rD%D6=vXyryRoO<9FG5NzAr+F3Vkb?i&`y(Rr3J~d!x2v5uv&hz%d>8|*|c@X%z4Jm8P`+i%$#*LQ6Q}| zdfKE-#t+siP6n~chmoXl(<(VPV}j$6>(Rc!o`IuQ|KL!6U+_HA91f2S4GbLUBdX48 z&+kdPI^#Lo&$>g_cy`jbeil9L+S#D0>PPj6?WVPr(!Ou!fzt9?&lpcmX{;&ZIL0bGu!F|f aXyC@)wz8P~PphOolT}x2kF_>VRQ~}EMWVw1 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 9d99243083..895fcb7777 100644 --- a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po @@ -1,28 +1,28 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Marco Camplese , 2016 # Pierpaolo Baldan , 2011-2012,2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-04-27 18:22+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-09-24 10:33+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 msgid "Django GPG" -msgstr "" +msgstr "Django GPG" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" @@ -30,7 +30,7 @@ msgstr "chiave ID" #: apps.py:74 apps.py:87 forms.py:19 models.py:47 msgid "User ID" -msgstr "" +msgstr "User ID" #: apps.py:77 forms.py:34 models.py:50 msgid "Type" @@ -46,7 +46,7 @@ msgstr "Data scadenza" #: apps.py:83 msgid "No expiration" -msgstr "" +msgstr "Nessuna scadenza" #: apps.py:85 forms.py:32 models.py:42 msgid "Length" @@ -58,11 +58,11 @@ msgstr "Nessuna " #: forms.py:31 models.py:39 msgid "Fingerprint" -msgstr "" +msgstr "Impronta" #: forms.py:33 models.py:45 msgid "Algorithm" -msgstr "" +msgstr "Algoritmo" #: forms.py:47 msgid "Term" @@ -97,8 +97,9 @@ msgid "Key management" msgstr "Gestione delle chiavi" #: links.py:37 +#| msgid "Import key" msgid "Upload key" -msgstr "" +msgstr "Carica chiave" #: links.py:41 views.py:160 msgid "Private keys" @@ -130,11 +131,11 @@ msgstr "Elgamal" #: literals.py:43 msgid "Bad signature." -msgstr "Firma cattiva." +msgstr "Firma non valida." #: literals.py:46 msgid "Document not signed or invalid signature." -msgstr "Documento non firmato o firma invalida." +msgstr "Documento non firmato o firma non valida." #: literals.py:49 msgid "Signature error." @@ -142,9 +143,7 @@ msgstr "Errore di firma" #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Il documento è stato firmato, ma la chiave pubblica non è disponibile per la " -"verifica" +msgstr "Il documento è stato firmato, ma la chiave pubblica non è disponibile per la verifica" #: literals.py:58 msgid "Document is signed, and signature is good." @@ -156,27 +155,28 @@ msgstr "Il documento è firmato con una firma valida." #: models.py:27 msgid "ASCII armored version of the key." -msgstr "" +msgstr "Versione ASCII blindata della chiave" #: models.py:28 msgid "Key data" -msgstr "" +msgstr "Dati chiave" #: models.py:56 +#| msgid "Key ID" msgid "Key" -msgstr "" +msgstr "Chiave" #: models.py:57 msgid "Keys" -msgstr "" +msgstr "Chiavi" #: models.py:63 msgid "Invalid key data" -msgstr "" +msgstr "Dati chiave non valida" #: models.py:66 msgid "Key already exists." -msgstr "" +msgstr "La chiave esiste già." #: permissions.py:10 msgid "Delete keys" @@ -184,7 +184,7 @@ msgstr "Cancella chiavi" #: permissions.py:13 msgid "Download keys" -msgstr "" +msgstr "Scarica chiavi" #: permissions.py:16 msgid "Import keys from keyservers" @@ -192,48 +192,51 @@ msgstr "Importa le chiavi dal server di chiavi" #: permissions.py:19 msgid "Use keys to sign content" -msgstr "" +msgstr "Usa la chiave per formare i contenuti" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" -msgstr "" +msgstr "Carica chiavi" #: permissions.py:25 msgid "View keys" msgstr "Vista delle chiavi" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Firme" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Home directory utilizzata per memorizzare le chiavi così come i file di " -"configurazione." +msgstr "Home directory utilizzata per memorizzare le chiavi così come i file di configurazione." #: settings.py:21 msgid "Path to the GPG binary." msgstr "Percorso per il programma GPG" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "" +msgstr "Keyserver utilizzato per richiedere le chiavi." #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" -msgstr "" +msgstr "Cancellare la chiave: %s" #: views.py:48 #, python-format msgid "Details for key: %s" -msgstr "" +msgstr "Dettagli della chiave: %s." #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" -msgstr "" +msgstr "Importare ID chiave: %s?" #: views.py:69 msgid "Import key" @@ -241,13 +244,14 @@ msgstr "Importa chiave" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" -msgstr "" +msgstr "Impossibile importare la chiave: %(key_id)s; %(error)s" #: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" -msgstr "" +msgstr "Chiave ricevuta con successo: %(key_id)s" #: views.py:107 msgid "Search" @@ -259,11 +263,11 @@ msgstr "Interroga il server delle chiavi" #: views.py:119 msgid "Key query results" -msgstr "" +msgstr "Risultati ricerca chiave" #: views.py:138 msgid "Upload new key" -msgstr "" +msgstr "Carica nuova chiave" #~ msgid "Unknown" #~ msgstr "unknown" @@ -284,12 +288,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.mo index 51520aa836cc4bb0f8f1d0ed272aac8b677b9324..ed2c5476c6f74ec5ca298346db1f26daff8feb93 100644 GIT binary patch literal 2352 zcmZ{jJ!~9B6vu}oeB=TIoDc|*Fd;x}@ZN{>q2!DaPR=$CabnqL7f1-kx6gay+nqVh z&iU*j5=A5$3JQ=yjl_pUgJ@|`Bxn##8bpDFged4xn$Q6Mx4UOMQ5fy)Z)Wz*d-MJ~ z@7JL{9}Bb-=+B}z?-SxQ_`xo`(B9oG#9mN=kANKzkJ!ZP0q`og54;9G2!05b!0X`4 z;HL$D0!J|a8+-^nz9;uL3hu|e4ziz%Ap2bg+0WbHV_+M^Ra0omCvL02C{hb5Hzy??b`(O?H3}m~X!NI1U zJmL$y*#Flc=W_#OyB|Q_|0Bq{-2{2x?;yv$1+v{g#rkfD!10Gb{{Iq$Y?&>ek8@*x z?CT|TZcpS8$G{`Sm^D0sF46h^azhAlG#d%=6!<*)A@qaj9237LYcCe$t9~4vb>j9k zI-hCKp22|6&UrtH&bo4Aow#wH{7<>DCNE?oA)aGS#*uZ}w-a%}k@DIa87fbru{bFj z6cZ0K$PR6$7<;8-a7~%W%9;5Y(Xg#vLdHv-%2Y>&LfMByspPtfb(pOw-*Z&Hhv}$P zW`_y;h^!5Fm>TN`ZmpBr+{0<##8!pyo)7YqPHl9x+mX<;HW9h5)5eS0q-)&(Y%XRC zzZi4=O1z0hbUE9|pkk;KZc5tFsZYzdy$lDwSkr+FBTzWCYmJYtSfIXq@qbK5zWmmiKQ+lo+Yr9lH61bARJ97jV1d>(`@PGqdQR5P)K67ksiKuGsniEer%W0v zZ(UtZty8Smj9gSI_S$shtCX*##lq`Rf;(1j+2l3sHc<~M2Tf8*T{e2Y)t1AT$+yYH zxH{>G9BzBxtye1je!uKFj$Wk=-d%AvRZd%1NjU9*!X&L=Q|7Q@;&(1zs*IH8X6L51 z1*(;+r3==0{M3LYu1ilFzS51AHsi9@RxTw!vDBOn&TiXr&{cB5lxf)z*Q_qju4un? z_PWesmFDA~Q*khDU6Nw0n@!V+v2mFXCx(qYHX&;x zdMzX;wnj3IspkoGIYSZDH2+(m5em9PD7l2ZBr-ChIMflzHpI+6;ru(QkL$76GAd!d z(=0Dmx}#V%+zvKKyDBY;?%o0JF50aWkX3ALmlMWq=Au=rq3abzOODK7h#Oz*5?8k3 z6f4m{h{aqQQ7}M_6hpZ}saMKN6{Eg#vlVI+lr3gOO%r5A?(6x%vPo9bH@-{jstG4IwSU_^i*1A4ig>*-e7op%~#r1Rt70s!f Lr;c9hYzO-fJxw`5 delta 347 zcmYk$u}i~17zOZ8ZLHRo+_YNd*x+i5>E8t>q8G>f3Ci%aP2s#`}_ z7dQU}{|_g9r&WCL, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-04-27 18:22+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-09 16:40+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 msgid "Django GPG" -msgstr "" +msgstr "Django GPG" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" -msgstr "" +msgstr "Sleutel-ID" #: apps.py:74 apps.py:87 forms.py:19 models.py:47 msgid "User ID" -msgstr "" +msgstr "Gebruikers-ID" #: apps.py:77 forms.py:34 models.py:50 msgid "Type" -msgstr "" +msgstr "Type" #: apps.py:79 forms.py:23 models.py:31 msgid "Creation date" -msgstr "" +msgstr "Aanmaakdatum" #: apps.py:82 forms.py:27 models.py:35 msgid "Expiration date" -msgstr "" +msgstr "Verloopdatu" #: apps.py:83 msgid "No expiration" -msgstr "" +msgstr "Geen verloop" #: apps.py:85 forms.py:32 models.py:42 msgid "Length" -msgstr "" +msgstr "Lengte" #: forms.py:28 msgid "None" @@ -57,15 +57,15 @@ msgstr "Geen" #: forms.py:31 models.py:39 msgid "Fingerprint" -msgstr "" +msgstr "Vingerafdru" #: forms.py:33 models.py:45 msgid "Algorithm" -msgstr "" +msgstr "Algoritme" #: forms.py:47 msgid "Term" -msgstr "" +msgstr "Voorwaarde" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." @@ -89,39 +89,40 @@ msgstr "" #: links.py:29 msgid "Import" -msgstr "" +msgstr "Importeren" #: links.py:34 permissions.py:7 msgid "Key management" -msgstr "" +msgstr "Sleutelbeheer" #: links.py:37 +#| msgid "Import key" msgid "Upload key" -msgstr "" +msgstr "Upload sleutel" #: links.py:41 views.py:160 msgid "Private keys" -msgstr "" +msgstr "Privésleutels" #: links.py:45 views.py:149 msgid "Public keys" -msgstr "" +msgstr "Openbare sleutels" #: literals.py:6 literals.py:14 msgid "Public" -msgstr "" +msgstr "Openbaar" #: literals.py:7 literals.py:15 msgid "Secret" -msgstr "" +msgstr "Geheim" #: literals.py:23 literals.py:28 msgid "RSA" -msgstr "" +msgstr "RSA" #: literals.py:24 msgid "DSA" -msgstr "" +msgstr "DSA" #: literals.py:29 msgid "Elgamal" @@ -133,11 +134,11 @@ msgstr "" #: literals.py:46 msgid "Document not signed or invalid signature." -msgstr "" +msgstr "Document niet getekend of ongeldige handtekening." #: literals.py:49 msgid "Signature error." -msgstr "" +msgstr "Handtekeningfout" #: literals.py:53 msgid "Document is signed but no public key is available for verification." @@ -145,11 +146,11 @@ msgstr "" #: literals.py:58 msgid "Document is signed, and signature is good." -msgstr "" +msgstr "Document is getekend, en handtekening is goed." #: literals.py:61 msgid "Document is signed with a valid signature." -msgstr "" +msgstr "Document is getekend met een geldige handtekening." #: models.py:27 msgid "ASCII armored version of the key." @@ -160,28 +161,29 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" -msgstr "" +msgstr "Sleutel" #: models.py:57 msgid "Keys" -msgstr "" +msgstr "Sleutels" #: models.py:63 msgid "Invalid key data" -msgstr "" +msgstr "Ongeldige sleutelgegevens" #: models.py:66 msgid "Key already exists." -msgstr "" +msgstr "Sleutel bestaat al." #: permissions.py:10 msgid "Delete keys" -msgstr "" +msgstr "Verwijder sleutels" #: permissions.py:13 msgid "Download keys" -msgstr "" +msgstr "Download sleutels" #: permissions.py:16 msgid "Import keys from keyservers" @@ -192,16 +194,18 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" #: permissions.py:25 msgid "View keys" -msgstr "" +msgstr "Bekijk sleutels" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" -msgstr "" +msgstr "Handtekeningen" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." @@ -212,11 +216,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -227,15 +233,17 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" #: views.py:69 msgid "Import key" -msgstr "" +msgstr "Importeer sleutel" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -279,12 +287,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.mo index 6e7a74b2b6b3501aaefc8fbe6f063eb4a0b2a69c..8ebc1319ea92f9e245ba46acbb73d0edba837eca 100644 GIT binary patch delta 24 fcmX>ta$01=4_0nNLtP_d1p^~1Q{&CdY#uBCWI6_y delta 21 ccmX>ta$01=57x;FZ0sy1R)z+fnb|y808;Y?2LJ#7 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 5381d7024c..3103cad4c9 100644 --- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 @@ -10,17 +10,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:30 msgid "Django GPG" @@ -99,6 +97,7 @@ msgid "Key management" msgstr "Zarządzanie kluczami" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -144,9 +143,7 @@ msgstr "Błąd podpisu." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Dokument został podpisany, ale klucz publiczny nie jest dostępny do " -"weryfikacji." +msgstr "Dokument został podpisany, ale klucz publiczny nie jest dostępny do weryfikacji." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -165,6 +162,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -197,6 +195,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -205,24 +204,26 @@ msgid "View keys" msgstr "View keys" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." +msgstr "Katalog domowy używany do przechowywania kluczy oraz plików konfiguracyjnych." #: settings.py:21 msgid "Path to the GPG binary." msgstr "Ścieżka do GPG binary." #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -233,6 +234,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -242,6 +244,7 @@ msgstr "Importuj klucz" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -285,12 +288,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.mo index 647ea756ab36c7ed6a0c9ed4ff2ac5a4b8558adf..29851cc43c847d2cb9603326b0b2a826132f1994 100644 GIT binary patch delta 24 fcmeAW>JZw%$jWVKsB2`bU|?irYP^|;^$#-uM+*hf delta 24 fcmeAW>JZw%$jWVCqHAQXU}$1xXt0@w^$#-uM@9wH 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 eb8ffeb102..b65ad439e1 100644 --- a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2012 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:30 @@ -98,6 +97,7 @@ msgid "Key management" msgstr "Gestão de chaves" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -143,9 +143,7 @@ msgstr "Erro de assinatura." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"O documento está assinado, mas não está disponível uma chave pública para " -"verificação." +msgstr "O documento está assinado, mas não está disponível uma chave pública para verificação." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -164,6 +162,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -196,6 +195,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -204,6 +204,7 @@ msgid "View keys" msgstr "Ver as chaves" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Assinaturas" @@ -216,11 +217,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -231,6 +234,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -240,6 +244,7 @@ msgstr "Importar chave" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -283,12 +288,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.mo index df1bf09a4aa652535e762ca6ea9240f1340f02d9..05c09456f1dc5e7f4192a8f452601015773131c3 100644 GIT binary patch literal 4121 zcmZveO^h5z6~_w_64;mzJ3t@~P~aGL#j`}ZRceovsCLw^GO-S-Kx1^(>;{Gd&KK#0$SQ{acdi{MAVE8vI02;@`; zJ_HWS@fX2I@O}$?7<>(U6ub>ifWHKnz_-Dtzz49HY=TqZ*TD~hFN4%`3#6PMfFA{a z3{w7^-~#wN5PxA3nE-y_+ECUj=E`w?OK<0djvg!NcHpzz4w} zg7m{}kn8>co&w(iY2SZA&N~DlkAa85L*Nw1`KLkJdmf}6YbCz{(w^%e=h>3Oa{NV* z`*{UC4t^h`p0`W>5j=tScRqqg8u<&#}k-*0eliQvRbL?K%q5&K5Wc&V#f+0vYFP;91au5G8&J!bI^akn8^hegXVz zIsR@r{s@dgcteiPgI_{tYogDhQ}*Z38IzBrvzs&^#n00K_sVvrK=`GdQ|R=|XV4i3=3)b#duC%S*${5gMn8f647x<0LuU-w7z5@t zbCr2eHTniF2s!wE@MJXr(vLjDY}4q>OU9;!PTzkKoj$D^<1%UsTT5$eQn|!B9m%0~ z-q=*yuFU#cUf26gu@LvHGg&_oiz<@d^iq}OPB+Dp(<9d7{%y8Xq*mw4FSYsg;9#CpI0f;g}jin%aqV z5CrQ@*K~qW&HKsN#WtjpLlv9%?Brf`(^93iDb&@oHmXTYZC06vJ(%=9LU+^HstAS@ z4>a0~mAI!86^oU*mFWyouHWWgSNla^GnA|a`a>(ut zXNE}MA~qW#xkQ2D(^rG-*ReYv>=mOA#k&`qNc=6WT&E9ooX*5nbw;Fij`oZ`c(Ijt zI@;V^N1Gvn3;77iB=CZXro7nJE)m=N11+wkA-!R_2_e0E>O7VOEm(DBzrHN{L1=h$n=!NywDxLQ<(wp>^HDwQkC>su3> znn~7J_dOFe7W1BOY}>Y+*m!=sQPqaVGMw9%b2GE28?&>Gxs!5cuKo1M#>}ai8BAY-u9xoh6+898^dJ#*&74BEsc<+H}NQ>l*?jzC*3#3t2p)oGLA0Gz{dPW4y9Z@2i? z?AWBa$&0w`I^Zu@U2t$Bk9%65p2TAiVnXbMvxz zJU^MrXXWhF{Dfe%4qmsisP2)X<{?UUsO1N5WG1m$?ci?YW{3v{vbr8hpA|O)OspOX z8RJ*f*D7J^*TiTy5{9t$nFwW=3Yc1mI1GfsGT5V(vR*84f~biV3&kRNjSlApg4BHP zdT~KJonq@wRth%5{ZVMq_;sFJ2Y<5`j!%mCKZ(>aDgXcg literal 1885 zcmZvbzi%8x6vu}UejSED5(qy6j0A-Z+WVylthEe^eHY}!mmKzyh60UupYH~CcaE9a zvk%cBB>sVj1|gvoAZVZ@qCmQi!bJoH2+>hcq=1SBiSOIpvjbwZGoShK_Whc9zn(mP zO`tu4eir@o9YQRD3&${^eFZ)UehoeVeh1zO9)Nd)H^KYCpTK*--$4HV7I-gs2Ex2A z!4u#j$p0;aHSiViN$_H|zYDUxv|7Ih9>@B9Z~^?V+P?;}-H*YCz|Sjw1L70kV_-W6 z6@LU-?iY~l-U3q&*$ogg=-`5Wy z>-hs@|4zUt%bfz*{#gvCz~?}=vkbyT(E&OBiy+_Y6%b(;jrFh&&iA9}e0~P~Bs%Nj z`+5SM8~etMbI1Najn4jYJ6)m}*%sS}nWC}p+&CB9@LY;F_z1}U@f|&m&JCdzF+RqN zH5E&zhne!ZrMg(Rq`WqnjFl(R**-5iln_q~$hT?gF!xF)po#L7GA}dZ3ndgwW2Md} zD$)N^+cA4tVpJ@;$xx*#5#9ZnzS%Yc0$&POEi@modT)K z)R5QIG)r#Rdw*G_C9_H9x&8Uc|d zFSh4tl4Py1^`i|Z24qt)n2t$Y)wEZcwdO5~e6SG*SK&3X8p@uUs!Vn}z3ti-amYc> z4Rsu>s;7sV%}^*FxaArX1)I-w;Zl2x+OJ0@ZP-$YZKNDoKym6CNu{tc_HV9jHI{0nFKY zNpQi~)P*t|7fZL=UXkT=bup7K%hu9LO`La57tdZvo9nbL@Z^<@Nk&$y*=Musrg;C| z{V2(`#fvS-{!OT?fn>y!stAnC@QYN1*4Rjsb0N$=MJ3F4QDUl&iqrcF`l?EpTP, 2016 # Roberto Rosario, 2012 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-04-27 18:22+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:30 msgid "Django GPG" -msgstr "" +msgstr "Django GPG" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" @@ -31,7 +31,7 @@ msgstr "ID da chave" #: apps.py:74 apps.py:87 forms.py:19 models.py:47 msgid "User ID" -msgstr "" +msgstr "ID de usuário" #: apps.py:77 forms.py:34 models.py:50 msgid "Type" @@ -39,19 +39,19 @@ msgstr "Tipo" #: apps.py:79 forms.py:23 models.py:31 msgid "Creation date" -msgstr "data de criação" +msgstr "Data de criação" #: apps.py:82 forms.py:27 models.py:35 msgid "Expiration date" -msgstr "data de validade" +msgstr "Data de expiração" #: apps.py:83 msgid "No expiration" -msgstr "" +msgstr "Sem expiração" #: apps.py:85 forms.py:32 models.py:42 msgid "Length" -msgstr "comprimento" +msgstr "Largura" #: forms.py:28 msgid "None" @@ -59,11 +59,11 @@ msgstr "Nenhum" #: forms.py:31 models.py:39 msgid "Fingerprint" -msgstr "" +msgstr "Impressão digital" #: forms.py:33 models.py:45 msgid "Algorithm" -msgstr "" +msgstr "Algorítimo" #: forms.py:47 msgid "Term" @@ -71,7 +71,7 @@ msgstr "Termo" #: forms.py:48 msgid "Name, e-mail, key ID or key fingerprint to look for." -msgstr "" +msgstr "Nome, e-mail, ID da chave ou impressão digital da chave para procurar." #: links.py:13 msgid "Delete" @@ -87,7 +87,7 @@ msgstr "Baixar" #: links.py:25 permissions.py:28 msgid "Query keyservers" -msgstr "Consulta servidores de chaves" +msgstr "Consultar servidores de chaves" #: links.py:29 msgid "Import" @@ -98,24 +98,25 @@ msgid "Key management" msgstr "Gerenciar chaves" #: links.py:37 +#| msgid "Import key" msgid "Upload key" -msgstr "" +msgstr "Envio da chave" #: links.py:41 views.py:160 msgid "Private keys" -msgstr "chaves privadas" +msgstr "Chaves privadas" #: links.py:45 views.py:149 msgid "Public keys" -msgstr "chaves públicas" +msgstr "Chaves públicas" #: literals.py:6 literals.py:14 msgid "Public" -msgstr "Público" +msgstr "Pública" #: literals.py:7 literals.py:15 msgid "Secret" -msgstr "Segredo" +msgstr "Segreta" #: literals.py:23 literals.py:28 msgid "RSA" @@ -131,11 +132,11 @@ msgstr "Elgamal" #: literals.py:43 msgid "Bad signature." -msgstr "Assinatura ruim." +msgstr "Assinatura inválida." #: literals.py:46 msgid "Document not signed or invalid signature." -msgstr "Documento não assinado ou inválido assinatura." +msgstr "Documento não assinado ou assinatura inválida." #: literals.py:49 msgid "Signature error." @@ -143,39 +144,40 @@ msgstr "Erro de assinatura." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" +msgstr "Documento assinado mas não há chave pública para verificação." #: literals.py:58 msgid "Document is signed, and signature is good." -msgstr "" +msgstr "Documento assinado e a assinatura está em bom estado." #: literals.py:61 msgid "Document is signed with a valid signature." -msgstr "" +msgstr "Documento assinado com assinatura válida." #: models.py:27 msgid "ASCII armored version of the key." -msgstr "" +msgstr "Versão ASCII da chave." #: models.py:28 msgid "Key data" -msgstr "" +msgstr "Dados da chave" #: models.py:56 +#| msgid "Key ID" msgid "Key" -msgstr "" +msgstr "Chave" #: models.py:57 msgid "Keys" -msgstr "" +msgstr "Chaves" #: models.py:63 msgid "Invalid key data" -msgstr "" +msgstr "Dados da chave inválidos" #: models.py:66 msgid "Key already exists." -msgstr "" +msgstr "A chave já existe." #: permissions.py:10 msgid "Delete keys" @@ -183,54 +185,59 @@ msgstr "Excluir chaves" #: permissions.py:13 msgid "Download keys" -msgstr "" +msgstr "Baixar chaves" #: permissions.py:16 msgid "Import keys from keyservers" -msgstr "Importar chaves do Keyservers" +msgstr "Importar chaves do servidor de chaves" #: permissions.py:19 msgid "Use keys to sign content" -msgstr "" +msgstr "Usar chaves para assinar conteúdo" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" -msgstr "" +msgstr "Enviar chaves" #: permissions.py:25 msgid "View keys" msgstr "Ver as chaves" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" -msgstr "assinaturas" +msgstr "Assinaturas" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" +msgstr "Diretório inicial usado para armazenar as chaves, assim como os arquivos de configuração." #: settings.py:21 msgid "Path to the GPG binary." -msgstr "" +msgstr "Caminho para o binário GPG." #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "" +msgstr "Servidor usado para procurar chaves." #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" -msgstr "" +msgstr "Apagar chave: %s" #: views.py:48 #, python-format msgid "Details for key: %s" -msgstr "" +msgstr "Detalhes para chave: %s" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" -msgstr "" +msgstr "Importar ID da chave: %s?" #: views.py:69 msgid "Import key" @@ -238,13 +245,14 @@ msgstr "Importar chave" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" -msgstr "" +msgstr "Não foi possível importar chave: %(key_id)s; %(error)s" #: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" -msgstr "" +msgstr "Chave: %(key_id)s, recebida com sucesso." #: views.py:107 msgid "Search" @@ -256,11 +264,11 @@ msgstr "Consultar servidor de chaves" #: views.py:119 msgid "Key query results" -msgstr "" +msgstr "Resultados de busca de chave" #: views.py:138 msgid "Upload new key" -msgstr "" +msgstr "Carregar nova chave" #~ msgid "Unknown" #~ msgstr "unknown" @@ -281,12 +289,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.mo index 8d112fb258922e33e295f6096c1d28a3cc304ee9..4c3443d54b2a9365fac1f4cece36fc091f2daedb 100644 GIT binary patch delta 24 fcmbOtG(~8`Zx(JtLtP_d1p^~1Q{&BStb8m0S-b`B delta 24 fcmbOtG(~8`Zx(I?6I~;71w#`nLxat1tb8m0S@#9; 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 c4c7ca6da6..d05753ffc8 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:30 msgid "Django GPG" @@ -98,6 +96,7 @@ msgid "Key management" msgstr "gestionare chei" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -143,9 +142,7 @@ msgstr "Eroare semnătură." #: literals.py:53 msgid "Document is signed but no public key is available for verification." -msgstr "" -"Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru " -"verificare." +msgstr "Documentul este semnat, dar nici o cheie publică nu este disponibilă pentru verificare." #: literals.py:58 msgid "Document is signed, and signature is good." @@ -164,6 +161,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -196,6 +194,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -204,25 +203,26 @@ msgid "View keys" msgstr "Vizualiza cheile" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Cale director utilizată pentru a stoca cheile, precum și fișiere de " -"configurare." +msgstr "Cale director utilizată pentru a stoca cheile, precum și fișiere de configurare." #: settings.py:21 msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -233,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -242,6 +243,7 @@ msgstr "Import cheie" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -285,12 +287,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.mo index d8b6935ba1e42f4477f98ad834573617e23f8881..bb93c5c08b3cd7f3a2937bfd705989c63982116b 100644 GIT binary patch literal 4886 zcma);TWlOx8GsMa($+vJX(54dIW0|y8?U|VIBl}dCZuuhmzu;0KfOJA0t$c^ZBiJ_|*E4Q_?U zA%CjDkLZ63E`t$V3I75gfd7W#?*k~~Ry_p8ua!{j4M2%+1N;o!3Gag6f)B%^P}ZG* zL+~^d|CXT0y$zScKfq7IccI9?55?aPp!jhQ#)K=N_|pqTE|YR7ogao0&px;ceiMqF z7gEl`wLG7OB6k^zod%RR-i9mSA0ejI-=Wm;UvSw+(Zz%Kv7AL;fotIB;VvkCjYH8h z0VR+1bp8iW;``HDVzp`iLdWa$Zbzahc8yS*^ zCm6DCq^8n`ImR#}&yY)UPU>41=``0`ejiWoX)RNW^wH#zu+^6tw6yvxgS4p)jK>(# zUvf#^r8d$(njv|X>vIgr{oV4gwNmzcC!DORC#{kWoU&_$b>Hq++kD#!9naMzE40I4jnZki;#nmeNp8gHKy9y-t*TW~+mF>8zaxJ;9Jg%yHQ#YVwacs8 zy5#tFG4%WyT@Q#q^mM?JZM0}B(9?FMA}o6Dgj24kx+a{89rUZ+)tcvrDP&2H% zb=lJKD$o(y%GlUCiyXzTEQhkX+NNFpY4{zNp--g+I`y2R4H_yIEVu}X&ODzPMM^q z;(56Zc z@mIB8B+r35NaG)}Ex$MkioPAHL(M&+ZQmDvS}y{1s9r4EK`>FTR3s%u+nJ)c=%*xW zz%x#%H&A1?UsYo>HCr8aO?%_HV@i6f=rGHS6;>UtNxz9i$8GDiYfmRrLE1yoQFtm1 z6iTTM6Ooknh?7VLB*%M>9?a}6WscAk?Df3fZ_QY)-afMbP|rbInk=(FC_AOhll5|t z8T0bGXY{GDO!I8WjF8;C9?a$*&*XBM!F4)2m|wpxlO4)t5zHL4rySASDVKdBliSFW z{9tx%maAu<6@-~F-*SVB#TLlxic|6WYnJO2nRCl^nk_SCTh+WiSPudR|JF=~VJ$x} zFg-opAIeH+!amkt^r{2C7g)aI`2$r6Bx9GV!9XQdGT_$-dVBWo-oL#aZ>~Svvn|O` zMk7*Ly}Q z?Ac0Yhv!#=ymo8mF(?cT>*Thu#$A=m7797NdbO6@?8AjzPH)j!jX2Mn3xmz6O@$%3 zH7l~4a)bK#@np&7+)yt|a_N#nAuCfxZgXLMd-=xR)_e3~rfG9i0S#O9APUy?4)>_& z`_W=_IcmfwqJ?-iT2j$#(R_3%n&-uhXf8glqnlA9y29^5d@??(qE~r48_ntXB=6s3 zW)8uH_`LaIL>JAAMNuZgU5`4t9xcY_;?w3ca)-HSK}^hx2|VNBbuo`Ojpz*wHE?1! zTF{tT6z5Wn(OmLrYJYN2(ul6dr=lg|xe?EH#UVcTX;CLX7}F@8Mf^m31~w!k9lBfA zZW=$5>|Bo)`o-1%ZbgqMs!@OYt=&zC^`b>$N6- zCJ!fx=ewAcO>{|;8qX5;1^l~W9Jxv&q(!mRq2(eCEXlq^22HxV=2^ft{RJ~pCdws= zr)$n=j)yt3lwC_fI#s6r%E}Av6tqPo{QuPgcT&${G(5VZ zC6oGjId((=J!wkZOgyQPeUlza()+i*=%^CHKki7jIexpkt1Go#!r~#(wfhjyx~1h` zB6AL#EGQA~a@sid3Q@fwadjOnW?PvfoHWXE9K8r6)3Wu`gDBZ&^j6F8hyQW*7;ACN!w+1{3#SBX>0arlBL_vNgR^!TV@G}ePxcR zw2XA03AZ6T0~5DB3DPsobXxkUm0n5?s#)1{vZthx*{0@U!JJ>onaO#T^8tfn?E-NH+V6ZKD1IE)JlY delta 1088 zcmX}rPe>F|9Ki9n=Bn%Fzs=gr(zV<|P5hHl>_wN>%F;?Pu%KkDNw)Tn%uLY|HHU}} zK`gwCZb3!`ox-rFpdzA6hb8FHq3GBl2v6Zb==&Sje$1QCd$Tj|{oZe8?{1%KaDRkK zXB82pZKfrBO6|r}2`6G;jZ)PZ$0|IA9O^WuGMvI7Cb1kZ;y%2J?fAavZ){^6E>)@m zvV&_#JwpKu#~ zMGm#ZX&6f>gZw^oh^6+r8ILW3q8l3SinwPM%hsZtIC937{VCJw=;s0@OhL< zDH$LO~v8f zSZ{AfH&Hok*iPrTWn}D>;bg5?WGp*nT22;i!%Al79|bI*ZVR5#Pl9#xi@_0}o~VlI seAOG@J^iz;Mdz!dB|{0_RnwyvYfjFawNYQtOQG=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" +"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:30 msgid "Django GPG" -msgstr "" +msgstr "Django GPG" #: apps.py:73 apps.py:76 forms.py:17 msgid "Key ID" @@ -31,7 +29,7 @@ msgstr "ID ключа" #: apps.py:74 apps.py:87 forms.py:19 models.py:47 msgid "User ID" -msgstr "" +msgstr "Идентификатор пользователя" #: apps.py:77 forms.py:34 models.py:50 msgid "Type" @@ -47,7 +45,7 @@ msgstr "Дата окончания" #: apps.py:83 msgid "No expiration" -msgstr "" +msgstr "Не устаревает" #: apps.py:85 forms.py:32 models.py:42 msgid "Length" @@ -59,11 +57,11 @@ msgstr "Ни один" #: forms.py:31 models.py:39 msgid "Fingerprint" -msgstr "" +msgstr "Отпечаток" #: forms.py:33 models.py:45 msgid "Algorithm" -msgstr "" +msgstr "Алгоритм" #: forms.py:47 msgid "Term" @@ -98,8 +96,9 @@ msgid "Key management" msgstr "Управление ключами" #: links.py:37 +#| msgid "Import key" msgid "Upload key" -msgstr "" +msgstr "Загрузить ключ" #: links.py:41 views.py:160 msgid "Private keys" @@ -159,23 +158,24 @@ msgstr "" #: models.py:28 msgid "Key data" -msgstr "" +msgstr "Содержимое ключа" #: models.py:56 +#| msgid "Key ID" msgid "Key" -msgstr "" +msgstr "Ключ" #: models.py:57 msgid "Keys" -msgstr "" +msgstr "Ключи" #: models.py:63 msgid "Invalid key data" -msgstr "" +msgstr "Неверные данные ключа" #: models.py:66 msgid "Key already exists." -msgstr "" +msgstr "Ключ уже существует." #: permissions.py:10 msgid "Delete keys" @@ -183,7 +183,7 @@ msgstr "Удалить ключи" #: permissions.py:13 msgid "Download keys" -msgstr "" +msgstr "Скачать ключи" #: permissions.py:16 msgid "Import keys from keyservers" @@ -191,48 +191,51 @@ msgstr "Импортировать ключи с серверов ключей " #: permissions.py:19 msgid "Use keys to sign content" -msgstr "" +msgstr "Использовать ключи для подписи контента" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" -msgstr "" +msgstr "Загрузить ключи" #: permissions.py:25 msgid "View keys" msgstr "Просмотр ключей" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "Подписи" #: settings.py:15 msgid "Home directory used to store keys as well as configuration files." -msgstr "" -"Домашний каталог, используемый для хранения ключей, а также файлов " -"конфигурации." +msgstr "Домашний каталог, используемый для хранения ключей, а также файлов конфигурации." #: settings.py:21 msgid "Path to the GPG binary." msgstr "Путь к GPG исходникам." #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." -msgstr "" +msgstr "Сервер ключей используемый для запроса ключей." #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" -msgstr "" +msgstr "Удалить ключ: %s" #: views.py:48 #, python-format msgid "Details for key: %s" -msgstr "" +msgstr "Подробности для ключа: %s" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" -msgstr "" +msgstr "Получить ключ ID: %s?" #: views.py:69 msgid "Import key" @@ -240,13 +243,14 @@ msgstr "Получить ключ" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" -msgstr "" +msgstr "Невозможно импортировать ключ %(key_id)s; %(error)s" #: views.py:85 #, python-format msgid "Successfully received key: %(key_id)s" -msgstr "" +msgstr "Успешно получен ключ: %(key_id)s" #: views.py:107 msgid "Search" @@ -258,11 +262,11 @@ msgstr "Запросить сервер ключей" #: views.py:119 msgid "Key query results" -msgstr "" +msgstr "Результаты запроса ключа" #: views.py:138 msgid "Upload new key" -msgstr "" +msgstr "Загрузить новый ключ" #~ msgid "Unknown" #~ msgstr "unknown" @@ -283,12 +287,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.mo index 46792062ac115d916008d3e8b0eb96fbef1395ed..b95d50b1db4509f326d1e59984bc52d02598d85e 100644 GIT binary patch delta 22 ecmeyu@`Yu>Rc=E=T_a-!10yR_)ro)ESxl@94K_ZQ!UzCSnFr(m 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 ec4cbfc33e..e4137c2a43 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 @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:30 msgid "Django GPG" @@ -97,6 +95,7 @@ msgid "Key management" msgstr "" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -161,6 +160,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -193,6 +193,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -201,6 +202,7 @@ msgid "View keys" msgstr "" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -213,11 +215,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -228,6 +232,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -237,6 +242,7 @@ msgstr "" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -280,12 +286,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.mo index b1d12eba6005bcd5be11df42606a1813e36186df..98e29e896c7f2b993c59e0eaa1d89b2911ecfbfc 100644 GIT binary patch delta 24 fcmdlWut8wMG8S$_LtP_d1p^~1Q{&AWS?ZYqTc-x- delta 21 dcmdlWut8wMGM35bSlC%itPBk{Z)B-w1^`si2Lu2B 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 a6908be5b3..3a37ebc8ec 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 @@ -97,6 +96,7 @@ msgid "Key management" msgstr "Quản lý khóa" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -161,6 +161,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -193,6 +194,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -201,6 +203,7 @@ msgid "View keys" msgstr "Xem các khóa" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -213,11 +216,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -228,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -237,6 +243,7 @@ msgstr "Import key" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -280,12 +287,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.mo index 16658929ed800a91b0b84cf5d99fd6bc02f2c7ba..fb3f37df1cef08b9236806739d6a468206b9f531 100644 GIT binary patch delta 24 fcmeyy|BZjceim*+LtP_d1p^~1Q{&C2Sag^HX{ZNL delta 24 fcmeyy|BZjceim*66I~;71w#`nLxatySag^HY2yb| diff --git a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po index 62378a5a22..c163015017 100644 --- a/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:22+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:30 @@ -97,6 +96,7 @@ msgid "Key management" msgstr "密钥管理" #: links.py:37 +#| msgid "Import key" msgid "Upload key" msgstr "" @@ -161,6 +161,7 @@ msgid "Key data" msgstr "" #: models.py:56 +#| msgid "Key ID" msgid "Key" msgstr "" @@ -193,6 +194,7 @@ msgid "Use keys to sign content" msgstr "" #: permissions.py:22 +#| msgid "public keys" msgid "Upload keys" msgstr "" @@ -201,6 +203,7 @@ msgid "View keys" msgstr "查看密钥" #: settings.py:10 +#| msgid "Signature error." msgid "Signatures" msgstr "" @@ -213,11 +216,13 @@ msgid "Path to the GPG binary." msgstr "" #: settings.py:25 +#| msgid "List of keyservers to be queried for unknown keys." msgid "Keyserver used to query for keys." msgstr "" #: views.py:38 #, python-format +#| msgid "Delete keys" msgid "Delete key: %s" msgstr "" @@ -228,6 +233,7 @@ msgstr "" #: views.py:68 #, python-format +#| msgid "Import key" msgid "Import key ID: %s?" msgstr "" @@ -237,6 +243,7 @@ msgstr "导入密钥" #: views.py:78 #, python-format +#| msgid "Unable to import key id: %(key_id)s; %(error)s" msgid "Unable to import key: %(key_id)s; %(error)s" msgstr "" @@ -280,12 +287,12 @@ msgstr "" #~ msgstr "Delete key" #~ msgid "" -#~ "Delete key %s? If you delete a public key that is part of a public/" -#~ "private pair the private key will be deleted as well." +#~ "Delete key %s? If you delete a public key that is part of a public/private " +#~ "pair the private key will be deleted as well." #~ msgstr "" -#~ "Are you sure you wish to delete key: %s? If you try to delete a public " -#~ "key that is part of a public/private pair the private key will be deleted " -#~ "as well." +#~ "Are you sure you wish to delete key: %s? If you try to delete a public key " +#~ "that is part of a public/private pair the private key will be deleted as " +#~ "well." #~ msgid "results" #~ msgstr "results" diff --git a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.mo index 24bac3d340e506ceafa3b3b66b7998f43bb7b3bf..b0a550b9352474d96a24039551d33b91ad60612a 100644 GIT binary patch delta 45 zcmaFN{+NBk3`TB4LtP_d1p^~1Q{%~t85d3tWQyYPNz6+xO-xUSB<7`;CZ?xaDI^w6c4ms+yqd{^5dcfD B4nzO| 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 936b2f256a..d250379d6b 100644 --- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po @@ -1,26 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -38,10 +37,12 @@ msgid "Comment" msgstr "تعليق" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -84,6 +85,7 @@ msgstr "إضافة تعليق على الوثيقة: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.mo index 3f1ea491c74be36c18ba08245928c1b0ecda6b85..64018411385737c1341685bda0ab5cfe72f6df2a 100644 GIT binary patch delta 45 zcmaFH{)~OY3`TB4LtP_d1p^~1Q{%~t8JA2BVT$7MNz6+xO-xU=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -38,10 +37,12 @@ msgid "Comment" msgstr "Komentar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -84,6 +85,7 @@ msgstr "Dodaj komentar za dokument: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.mo index 96c81c347204f56ce521031eab05aaa786655481..578fd9045b321e182b7b582a271c772815907700 100644 GIT binary patch delta 44 zcmcb_c8P7n3`TB4LtP_d1p^~1Q{%~t85d3tWQyYPNz6+xO-xUSB<7`;CZ?xaDWoJ$c4ms6yqak_05;YR AU;qFB diff --git a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po index 9258ee9f78..d30bef8e52 100644 --- a/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/da/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,10 +37,12 @@ msgid "Comment" msgstr "Kommentar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -83,6 +85,7 @@ msgstr "Tilføj kommentar til dokument: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.mo index f473fc66a0e28a2dde121341635574af1bb45c09..85da4060f8e287df422a20ac4febf71e9b725de1 100644 GIT binary patch delta 48 zcmbQmJ&St-7c;k^p{|j!f`O5hsqth{<^z+TGDq?IB<7`;CZ?xaDWs&vySQ$)V~Jq| E07iZd`v3p{ delta 48 zcmbQmJ&St-7c;kkiLQ~kf}x3(p}}NP<^%jbiFxUziRr0U3Mr}aF0PZWFh_5;XNhJ6 E06q~7?EnA( 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 4a41270a11..ea34ed74c7 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "Kommentare" @@ -38,10 +38,12 @@ msgid "Comment" msgstr "Kommentar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "Kommentar erstellt" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Kommentar gelöscht" @@ -84,6 +86,7 @@ msgstr "Kommentar zu Dokument %s hinzufügen" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Kommentar %s löschen?" diff --git a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.mo index 82e9040877766e2a9b24945df9e7de2bc214afdc..e8cf79ce35286d17c90875f01e76a19c21046357 100644 GIT binary patch delta 24 fcmaFP`kZxxA0xM+p{|j!f`O5hsqyAW#y&;>Tbc%! delta 24 fcmaFP`kZxxA0xMciLQ~kf}x3(p~2=z#y&;>Th#`c 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 8497e4cda4..0add17e181 100644 --- a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2013-11-20 11:56+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.mo index 75a0e992d17c14861e36b98d87a51988addbc681..37abc63a33bc2a72a2a3ad3c1643fca073f86031 100644 GIT binary patch delta 45 zcmbQoJ&$_>7c;k^p{|j!f`O5hsqth{=0%f_Fh}wDB<7`;CZ?xaDWn!}mSt&V1OOPV B4D0{^ delta 45 zcmbQoJ&$_>7c;kkiLQ~kf}x3(p}}NP=0!X{iFxUziRr0U3aQ1Dw=qX=mSbsP1OOBc B4B-F( 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 7ae7701497..3fb8867504 100644 --- a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Roberto Rosario, 2015 @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "Comentarios de documento" @@ -38,10 +38,12 @@ msgid "Comment" msgstr "Comentario" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "Comentario de documento creado" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Comentario de documento borrado" @@ -84,6 +86,7 @@ msgstr "Añadir comentario al documento: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "¿Borrar comentario: %s?" diff --git a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.mo index 877748f60d172770d508aa6279d30337fcb3f9a5..08241c25486a5c423d6f2aedc12a2d5900141513 100644 GIT binary patch delta 45 zcmbQsIhS*T7ZbOkp{|j!f`O5hsqy4crbUxkn4@@n67$ka6Vp?z6w(qm$1*!G0st5Q B43Pi; delta 45 zcmbQsIhS*T7ZbOEiLQ~kf}x3(p~2)(rbRqHiFxUziRr0U3TcUxzcEE`j$^iG1OOz~ B4TS&z 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 03cc5b481f..a5777a047c 100644 --- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,10 +37,12 @@ msgid "Comment" msgstr "شرح" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -83,6 +85,7 @@ msgstr "اضافه کردن توضیحات به سند: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.mo index 7dbebb10eac42d4c7efc3a04ba35785841bb67b5..d741a32707a456641be412af7b8766340560fd6e 100644 GIT binary patch delta 45 zcmeyt{eyc07c;k^p{|j!f`O5hsqth{<|C7zF-P(EB<7`;CZ?xaDWnx`wrAPN2mn5A B4n6, 2016 @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "Commentaires du document" @@ -38,10 +38,12 @@ msgid "Comment" msgstr "Commentaire" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "Commentaire de document créé" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Commentaire de document supprimé" @@ -84,6 +86,7 @@ msgstr "Ajouter un commentaire au document : %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Supprimer le commentaire : %s ?" diff --git a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.mo index 5dbf4a49e50ae186b83778d5dd78b62eb4576328..c7ea56a6c9b7caf0320f18126605ffba9aa98cfe 100644 GIT binary patch delta 44 zcmcc4cAafQH6yp7p{|j!f`O5hsqy4C#wC-@nWA`n67$ka6Vp?z6f#ODPhdI@050SX AK>z>% delta 44 zcmcc4cAafQH6yoyiLQ~kf}x3(q2c5<#w9#HiFxUziRr0U3K^x7HJPF(Ph>g<05P-< AHvj+t 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 f06ec4d955..4301236550 100644 --- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,10 +37,12 @@ msgid "Comment" msgstr "Megjegyzés" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -83,6 +85,7 @@ msgstr "Megjegyzés fűzése a %s dokumentumhoz." #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.mo index 34645575b5617256c33ce5ca54144558bc6b8ee4..55189323d8516f3ec28e5e9b90d64572e732ba1f 100644 GIT binary patch delta 44 zcmX@Xc7km~H6yp7p{|j!f`O5hsqy4C#-)=jn4)-m67$ka6Vp?z6f#pLPh{E-04b;r A1^@s6 delta 44 zcmX@Xc7km~H6yoyiLQ~kf}x3(q2c5<#-%(yiFxUziRr0U3YjUBwV0wOPh#2z04ysF A`~Uy| 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 ea99afeb47..6f563c7f4a 100644 --- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,10 +37,12 @@ msgid "Comment" msgstr "Komentar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -83,6 +85,7 @@ msgstr "Menambah komentar ke dokumen: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.mo index 312a86b43ec87a54f59631e94492f7565828ef4a..f14546d0d4bbd7e1f774bd5dfec5dd8dda5b57de 100644 GIT binary patch literal 1439 zcmZvb&ui=1vbxNeFtPee}ad>ry%F^0_6CwK>VWDjs6y7 z`}ZK%v+v+;yg881#~`0y0Qny7fP6O(K(6Bn$bNqVkCE7QSna$FW$B?4tW#&vVLbRVfpqJ#z|{a+}q>p3-?AEjKm|+XYXX z)_r8^lnjcD+Map#(F#_k9}2ostfaeAo*vGo@iNxGDw%F}y^{Fuig~B$tx}hT^u`((HGyU9upCmnm6D zuMECVAibN?2QhZi_)-SzI0u(mT9(zMR9?}wiuHch=>01Dsi>qb`*_A5aM~2LER+~4 zS*5fVWT{cXh5I2)(m3AU-tGtXtvA&}J`p?XrPJ2M6_+YhUir9eoWwfB7ki_%(Q0=i zgMQLmwkDu4#CT_da)Wvp;z=pBS)}Z~bY6v}jqwdJ-`R1*P36R@$!xAok<$D<9ol45 zg0f!LPL|?^b(K%aOs1+|8ZOfAbm@Yjvr9C%xY&!X7lp1(p=S?myOrATBC@k2%eFD` zQe6|2w83wq(A>Vp<3D;NyLcY}wn}se delta 434 zcmXZXy-UMD7zXfbK1^&X#Sai^g$!;IxJ!d#q?3+<5?oXeP6;Ja5@}P{I%IV^3WBJM zgV|kO`WFa-i{Rww?CkTl9z6LS$@|`$dvxyX;n#vOVpwxX6Dg2+hGv yT#vG|xR+;cl=WpV$<(!eSlg3nXCOOhNpkhBpQvr4w0C5B9(TJ^HO*C3n2kTaPCU>6 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 dd568f5e3f..f9bc51023d 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po @@ -1,27 +1,28 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-09-24 09:51+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" -msgstr "" +msgstr "Commenti documento" #: apps.py:41 msgid "Date" @@ -37,12 +38,14 @@ msgid "Comment" msgstr "Commento" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" -msgstr "" +msgstr "Commento documento creato" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" -msgstr "" +msgstr "Commento documento cancellato" #: links.py:13 msgid "Add comment" @@ -62,7 +65,7 @@ msgstr "Documento" #: models.py:33 msgid "Date time submitted" -msgstr "" +msgstr "Data e ora di invio" #: permissions.py:10 msgid "Create new comments" @@ -83,8 +86,9 @@ msgstr "Aggiungi un comento al documento: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" -msgstr "" +msgstr "Cancellare il commento: %s?" #: views.py:122 #, python-format diff --git a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.mo index 9f071a14ea9d704be2fdf9ca6194203378a26f0d..a9d56e03edc74afee9c5f0c5f9606b7f7324f155 100644 GIT binary patch literal 1260 zcmZva-A)rh6vtP^4_4HO7k;407&U>I>23=eT&xPT7!nEu3SOF_JG9g8&NQ>LEnN8w zCYtE2ui&i@!HqY@_yXSe1jhfAZd(Z_nf=Y2@7X!OCdWQHkZV|Xu|8nk#F{vR52OKJ z1_d|;rr<^JJ$MQH4BiI6fH%Nz;23xWUI4%M^*=#d;}2-#oU@K|9T*3#{}gxyB%sZa z11E9*ea>+nf`365d;n+59C#0W2HJk#fagI4j)N(93w#IO0Y8DZ?pLtaCuseSK-L+q>Jmnb;V6|4b0p>)YnGec3xsU}b`~ovZe+7>1;#;+RV_x+g}FP}Nea z56Gj$S?>GvIZz~IU+ELBnlr2YT@C3j*NIRvAQg7VBq^6F+wK-`D{W{csf&;)bTBj+hLS z88Y24rX6@*x7*DbTSx5k0~_sWl`t)o_F{W&%ELJE5Y$WP$>{C+nm6NCRx9P<56b6! zcUeh;7pB$2Hg0eDf$`cA6LNvn8cZkL6nCmCbbjb(i|%tx%d)0IA?pE|-xFrgdq8@% z+|4M}ETSt)#|d=p-Z3c_7Rd3oI4#NjBFWDzxX!NPb)woa*DWN(;BjYT^wfc!OTzG) zr%fbdIvY;A9fTsJqfU18CV`d^!5t3RQp*E2)GZ~?6650gPLZX5eadbY!nmGgGl&cV0)HXOo z%b*+R27+#(E9eS>el8$-kLe2!&wS_a`{pD4lp4OzS@#T?0VUvrEO-GrU!VxSK?-CO zj7`G}@I1T>Pr)vngKOjcJ=j9sg7tex@FO6wf;wrAdJfsz{|DQI^Vryd)9^7|fZMQc zcr{+XfoDUK>%8~I!-Y*Q46ycPCE)C<** z(aAN1>|Tg2)w%Rf_nYd#JW;Ray81P@%MBp|aZZw73OQ*iM8pm$8uZRQiqwO(s@|;9 EA2%6DY5)KL 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 784e3792da..8faa889e6c 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 @@ -1,31 +1,32 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-10-28 12:44+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" -msgstr "" +msgstr "Documentopmerkingen" #: apps.py:41 msgid "Date" -msgstr "" +msgstr "Datum" #: apps.py:43 models.py:27 msgid "User" @@ -37,16 +38,18 @@ msgid "Comment" msgstr "Commentaar" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" #: links.py:13 msgid "Add comment" -msgstr "" +msgstr "Voeg opmerking toe" #: links.py:18 msgid "Delete" @@ -83,13 +86,14 @@ msgstr "Opmerking toevoegen aan document: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" -msgstr "" +msgstr "Verwijder opmerking: %s?" #: views.py:122 #, python-format msgid "Comments for document: %s" -msgstr "" +msgstr "Opmerkingen voor document: %s" #~ msgid "Comment \"%s\" deleted successfully." #~ msgstr "Comment \"%s\" deleted successfully." diff --git a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.mo index d3ac7891934780bfcbdd7a907478c6ac13a5029b..8b127d81dd3fae0794f867ac487ba5dc3b07525d 100644 GIT binary patch delta 200 zcmey){gr#dn);`V3=Dgi7#R2&7#J3@Ffb?s=}kbI6G&eJ(p*6L0g#pk(yxKE7?5UX zWncg@8RUSpB#>4H(m=#u3navWv@?(v1k%w!ngdAZ0%=(wT?V8zfbIA3=Dgi7#R2&7#NnYFfb?s=`BE-6G-0x(p*6L5s;P!(r< zWncg@85DrDB#>4G(m=#u4+#ufb=vVEdr$Xvoi28 za03}vfC3, 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "Komentarze dokumentu" @@ -39,10 +38,12 @@ msgid "Comment" msgstr "Komentarz" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "Dokument został skomentowany" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "Komentarz do dokumentu został usunięty" @@ -85,6 +86,7 @@ msgstr "Dodanie komentarza do dokumentu: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "Usunąć komentarz: %s?" diff --git a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.mo index 206b8033dcae60b4234f90ca085f532bd5883ecc..e6415211864e33a4fb80f833de588746b4c9f29c 100644 GIT binary patch delta 43 zcmeBT?_%Guo{`(oP}j&Un4-9S67$ka6Vp?z6bdFEVLAo?7~~EN delta 44 zcmeBT?_%Guo{`(YMAyh%!O+CY&~WlD#-%(yiFxUziRr0U3I!#Tn|FW^}` zdGIKRs24q`2p;_eUIefC6#idN&ty@2Ox3Sn)vLEuz4>*l=Xn4*hH(z#4MrcvjUAXE z@4)@wd+;py1>6h%1be~X;2CfoJP!8k!~jo&toMO?z;dn+gNLEt0r~tqcp6kWpMpoB zzW~|KYw#fW7W{-5pTU#RQ*2%YpMjj;2k-#+6+93A0NL+4h+nX4cMzNadqK{>4?G3- z=j)^3KIn7c1#liD@CnHEy#zVmkKhsT8;EqWT7XOnnAwJfbKZq<2m>j1g>zxS@hlIH z$@Q{N7OsWgg71ulYuX~?QABmqY^uZuo4&~#icCG_^^p2qFqzxr>@GN3GRCiM%PqPaQRepV z4Hw*Z$_5Yg<{W3Od8F!I+>XQpWt}!jNL9He6Pli?-Yd+hma$$`T|-A=B5gQPGa(gb z@7Ba5$A`V(GDE7A%GX4>EGn0&R0*$M7Nskt5)8$hTGs4$n_c-jRbY4JQVCMHBb^sD zD-#z>Z)`~8u}&1tSf#ymbVIUwE1MVFYeRUzp#?jJqe&x`4JB$yHba_4zG)*>PSL=G zm5+5iNCQjWx58p^Wo2c^a}d3#R@p((8Yitbw%FvFg^HT480QX)E&p(0t~gkz-mXq> z+)jC@RG2i0N0W%!S_`Fnwd#wlSn6bi>Pyl(#6X~Q8((r=z z-P}XUVijiN)XG@Q7~6CqC9O<#qm>bAe~u0$G)CpYkplWw*Kw=T^1CCK@2^nDzgJ0a z^fg|u-PqkDXztE;*5Dn5TGGmHljrBGM!>`@8@D-Z*6Na5U6P_Dlbs`#EF+`o)q0$2 z8;rMPV{5YQhR^r6xyyUn@L#Z-P^31}LHlbN{byftysZX~HhaLoA#Gn88h>l}KgxcO AUH||9 delta 471 zcmXZYy-UMD7zXfb(yDFM6u-ZaOoBt?k`~3Hi&m&oP$Dim$h8e6sEwwn=pY5b&FygV zWACPe_!l_1>E@&kE-r$52cI|e;K}bU+Rvd{Dzb8501bTPN9a=cu?I8qzmTY04%^b6p$M4!4wQ&ge_y%9txyJF@!eK zAEAcW7aj=0L0^O3;ic)|gltA`<+hTPO+}=6#<1peGm|wo^E?J;k%wZQ%hPwR4a8+LCImTyJX8xbw{p6 fpNI0EFZ9iN@xTe(vS2GGrTx0=%Y~ROpJHSGvk65x 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 2a1821f271..23ae98d96a 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 @@ -1,27 +1,28 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-17 22:54+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" -msgstr "" +msgstr "Comentários de documento" #: apps.py:41 msgid "Date" @@ -37,12 +38,14 @@ msgid "Comment" msgstr "Comentário" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" -msgstr "" +msgstr "Comentário de documento criado" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" -msgstr "" +msgstr "Comentário de documento apagado" #: links.py:13 msgid "Add comment" @@ -62,7 +65,7 @@ msgstr "Documento" #: models.py:33 msgid "Date time submitted" -msgstr "Data e Hora Submetida" +msgstr "Data e hora do envio" #: permissions.py:10 msgid "Create new comments" @@ -83,8 +86,9 @@ msgstr "Adicionar comentário ao documento: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" -msgstr "" +msgstr "Apagar comentário: %s?" #: views.py:122 #, python-format diff --git a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.mo index 7d149ad753432b2c176a426235401fe69211d7da..b00cd1e8b82505d3c8ba9ac49c85dfab69a0df90 100644 GIT binary patch delta 321 zcmbQmzLUNFo)F7a1|Z-9Vi_RL0b*Vt-UGxS@BxUWf%qd3vjZ_NBLf2mkQN2f!a!OM zNV5QGBOuKNq|JdeKajSAiu(a+ka@vC`Zy3L0E%EgXcpK~kUCBv2007_n1GlS%mV6}crj+O8e@@> zp`oskv4Vk-m8r3=fr)_uSAf56P-3EePay0BN8Z3~WFQaxBOZAP0c}6A-h4SwLdq!}lzs<7#Ug_On%7N$?ubxmtLBfo@%8~lpi1DKRJ^rdh!*fjgxzsbpUtQ BA?*MF 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 469ac75d51..56513d1ea0 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 @@ -1,26 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-04-17 09:39+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -38,10 +37,12 @@ msgid "Comment" msgstr "Comentariu" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -51,7 +52,7 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" @@ -84,6 +85,7 @@ msgstr "Adaugă comentariu la document:% s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.mo index 25cd2338e83ebfd443e8e468d3f6bdf006e5d9f1..b7711739079d0290be88b9cdb78a30847a77e410 100644 GIT binary patch literal 1872 zcmb7@-)kII6vs!6zgF973R2O+?L*S8aZ`(8Un9eez|xbF&@UomuAI zF)b9S?W2VvR0I)3d@7W(4PBZv+4vWTcU}ZvgyNh3fUkbf?Cj=8N6@?6`OLZZobx^B z4Ex9E$TtSoDE9l<53rA8&%S^MRtJ0od<4D+_P|%c-@(_wXW+ZwU*J)2}l`_?2919e+nK0MaD0{w_$$^Ql9(ZA@CtMioK0}685jSJPZB}z5||lxzA;= z0=og4;P)Wu`~q_DH}Ehxf}%bEkAh?19QYRKfv3SZ;{&h=`%jSSJcQ=S9tY8K+6$1b z0-mHri)wxeo3v2!a8XaRP)0h(*Fox+v}w_->03Z9U2kR_;;iSfde~}-KpA`9nF^T~ z)?+%i*_bpIGM|jY1Ibpy=zwb^TqRf_)&`lSv51rO!Ia+;OvYDQzEZ+77DZFgRf>T> zDb61_LyoMT;mg3C)l)?z%RGh`UYhp#3u#=EA~G)fduv>d!p}rq@e3ZmEF$TLfz7J! zbvIy3i`7pGE214nidSXB_xQQEA$cvdSz-C(8ebrN_;YI0W@Xbl%`Jq+C)#e{*Krp#Vz(i9 zO}H(at;ACLsPEKOrP_9>w6?Z3p(xT{71t*4SxZqU-N+B4Qi~el!fVM=GfPs6;!?3t zy-;1+?bn(x3kzYO@Y#9odK=9saZQ!lP1g@*SpBLSNuiuewex&>*N+reMZ}kadg%E< z!)DW0d^IfAW>H*NZpM+@ zBf(^GreNrMdPhIf9lfqMl3U3grk~eZ&2o~dx?mX=tpY z=dRu+ogLi%43p-wMI*tK?i%_h(!fDFvIAzm)@J`7zdthHH7#r3{PL%d}W-Jc<{O zUOekVh<8OF!lU57Dmd`%w=>NC?6dn>yLy|nuL(5<=D{hL0QbPuJD39>pbEY~4LBvD zDcFT=cmZy}%YS_bHaQz`vrN>3x6$`4qG|Z<*D*cf!ZCP(O|XTuMYs;nz&^YJ@50ES z3NW8FyXHftkWbFf?f<|!A(He{X|S97&c`gg7Z_8(G9(aC- zi69ih;{oU62m4+mFOob_sb`i$=5w*;@wVp+=8KT8>rJcKh*V!@g<_G)<1A77*gCB5 g#pz%a5AY-#=?Cjb&)ToL<@EH86Y8zXl6I>*-;cFC>;M1& 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 0d14d52efa..383a39376d 100644 --- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po @@ -1,29 +1,28 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-07-14 01:35+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:23 +#| msgid "Delete comments" msgid "Document comments" -msgstr "" +msgstr "Комментарии документа" #: apps.py:41 msgid "Date" @@ -39,20 +38,22 @@ msgid "Comment" msgstr "Комментарий" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" -msgstr "" +msgstr "Комментарий документа создан" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" -msgstr "" +msgstr "Комментарий документа удалён" #: links.py:13 msgid "Add comment" -msgstr "" +msgstr "Добавить комментарий" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:22 models.py:73 permissions.py:7 msgid "Comments" @@ -60,11 +61,11 @@ msgstr "Комментарии" #: models.py:23 msgid "Document" -msgstr "" +msgstr "Документ" #: models.py:33 msgid "Date time submitted" -msgstr "" +msgstr "Дата и время отправления" #: permissions.py:10 msgid "Create new comments" @@ -85,13 +86,14 @@ msgstr "Добавить комментарий на документ: %s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" -msgstr "" +msgstr "Удалить комментарий: %s?" #: views.py:122 #, python-format msgid "Comments for document: %s" -msgstr "" +msgstr "Комментарии для документа: %s" #~ msgid "Comment \"%s\" deleted successfully." #~ msgstr "Comment \"%s\" deleted successfully." diff --git a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.mo index fdf7adf125bbc9a43a0ca53756bf5fd60be3f04a..32a7002e5bb03a1f3fbcfce924080397c8fd0576 100644 GIT binary patch delta 47 zcmcb^c86_48Y8!%p{|j!f`O5hsqy4O#!ZurnWFf867$ka6Vp?z6pC}=gFPqrFkJuu DS5yx$ delta 47 zcmcb^c86_48Y8!XiLQ~kf}x3(q2c60#!dV_iFxUziRr0U3dK3`!Jd|JNr%cXNsP@i>Vm^ DUF{D_ diff --git a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po index 92e3fcc158..447c47680c 100644 --- a/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/zh_CN/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:23 +#| msgid "Delete comments" msgid "Document comments" msgstr "" @@ -37,10 +37,12 @@ msgid "Comment" msgstr "评论" #: events.py:9 +#| msgid "Delete comments" msgid "Document comment created" msgstr "" #: events.py:13 +#| msgid "Delete comments" msgid "Document comment deleted" msgstr "" @@ -83,6 +85,7 @@ msgstr "添加评论到文档:%s" #: views.py:90 #, python-format +#| msgid "Delete comments" msgid "Delete comment: %s?" msgstr "" diff --git a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.mo index a2aa6cc47f3ef99eb2269a9b29295d10e533f943..ee0bee68944ea82f04630cfe105619f0100081b1 100644 GIT binary patch delta 85 zcmeyx|BHWvCX2D5p{|j!f`O5hsj;qsiGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6s ofv%B-f`Pe}vGL>>mdeSGSfY4*67$ka6Vri85{oulv+idC00KN1y8r+H delta 85 zcmeyx|BHWvCX2CwiLQ~kf}x3(p`osUiGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6M ov96J!f{~$>f#u{FmP#I<#Ju#<#B`u^V$tL)EYX{7Sobjj0Q<5Ss{jB1 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 a45cd02b56..3ed97bc974 100644 --- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-10-28 07:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.mo index 1d3775f31d615c850dedaec70ccf599efb7b75e9..82a948632ab239d407fef580d478cd3b3f0e53bc 100644 GIT binary patch delta 61 zcmX@leV%(mEEBh(p{|j!f`O5hsqy3tCRuJn16?Bv1p{*{W8=vam}(|VGDq?FB<7`; RCZ?xaDI}$DE@F;l0s!){5U&6L delta 61 zcmX@leV%(mEEBhZiLQ~kf}x3(q2c5VCRuI+V_hRd1tUW%1Ix)1m}+=@67$ka6Vp?z R6q3>>b2CS8E@qBl0s!_15T5`5 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 7147eefca0..52ea6c168d 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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-10-28 07:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.mo index d97099acd48a4eb9a12b5df74419319dc4fc1210..04b1e5f48383cb37f0caf0d031292d260cbd23f4 100644 GIT binary patch delta 88 zcmdlYuti{lCX2D5p{|j!f`O5hsj;qsiGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6s rfv%B-f`Pe}vB~5ZmT8ljSfluT67$ka6Vri8l8WP<95+X^-edv*4dNJ) delta 88 zcmdlYuti{lCX2CwiLQ~kf}x3(p`osUiGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6M rv96J!f{~$>f#u{FmTCMxiFxUziRnP;q~drd$H^aAqBqB|-e3X%8#Ebw 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 26fedbc5e6..2bbbb288a3 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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-10-28 07:34+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/da/LC_MESSAGES/django.mo index 9d2e47774535f9cab6bcfdd5e5180ff6758e8126..1aff61ff6c8b2c5765a1d4b4eb8aabc281f3f222 100644 GIT binary patch delta 60 zcmcc4dYyHH86&r$p{|j!f`O5hsqth-MpRR?EnA( delta 60 zcmcc4dYyHH86&rWiLQ~kf}x3(q2XjlMpUV2xuY%7=<3Tx^cFwr-MXe zZx-*k&;?_Fm>4u9nvj@I5+GdQ2sgkDTxh)DMvWRT{F9JiAcXI)JrLgX>E}J~dHeo* z&gpk6XFH2`7luz7_%Al&{_09UA0u3! zz!&ip*5L)@W7qgvj5n~|tZ2VbSwurkjadp?Pz!kvTd{zRcoOUJ9IF2XdGQZuX^1M1Q3Y)QB)DJgd0}i0>?+YA9O*|D`pF<6N z8Fdn~s0IFv9rzD2g*De!#%V>(la$PFeL+J%YT|U@JAsE$JDUhRhOcq`AvWO^REln+ z7W@~g|ARoAZ`RNC98@aOs1wCTg6As1(d)m3lVXQP;&zDx};t5WPef zp$^X$JzUCLjLS4{ zT|z_&rJ;rBBlIU#MJPo)gHKC0wKW8XR^I)S8_KY{qv>1J#+3lg;^#KkPa=FY6w6eD~=1DEG?0N;w_*{?fNKja8A%WNxVZOWH~o z=Y14P#^cdM(upNf>ypt}cPv)Bb4PTSJDJNfd~`EIq?|-7-V=?-qKWlRtT&bHo_>G+ z$Dc;_HVkCEp+aVe9$9yAbGo!AG81Zh*Yn+p5pT?Qz43xK;yaTpvm@`g6M5eq9d*6w qNPX9Wbmgkx4dvNF;b^I^elRqBpuVMaqG4}U-LuQgmwsy;2t5YVd%AG| delta 1395 zcmX}sT}YEr9LMpqsmq+(bfvwj%hc3bZd23k#=4s-s?1M-OeE z+K!+GIwtAgyrH2?rffgsZqC2rTFlE@UV=*0KpRodx7wb-2F}~igM+vQM^OX#gc|4< ze9ZFxL@iM->y>DwF-$`);0uiN7Gd?b*wL}G|3}d(v8?g+}pdW8x6%Jqyenc(h zH`{sC`~IK?;PEm4;Kn?UAs^clt6i*|E z`9Y=MEu!wHGd%||3zhjXEX2zR8rn?vkd1Giqh9qP>!+p^6YCgi3gs|8)T^WgH~|5ECM* zi8?~1VwqH}eWWF>B(%pgd)fmtZ^gX^rrYRdFEt|S4U$EEJ89o=2AKxbF`-hIjb>{FK0V>yyD-k_^_ ba^lLl^T~#sJS*gDbXbpaTAbFBKkoPk6bFF@ 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 92c888c88a..26cf2c0e75 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 @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-10-28 07:34+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_indexing/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.mo index 12df1f0c433fdcddc52def5b02f5c9771a980817..097ad6810ad481aceef42e42badaa236a29eac93 100644 GIT binary patch delta 24 fcmX@idzg1a12eawp{|j!f`O5hsqyA+W(#HjT7U*~ delta 24 fcmX@idzg1a12eaQiLQ~kf}x3(q2cCkW(#HjTEPZ( 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 1cb22378a2..8a2bde3c51 100644 --- a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.mo index 96acae55060fab337d35e797f0c13f41dc7b7035..75df19f1e7d7162fa8cc4f00dc165a53b62cdc24 100644 GIT binary patch literal 5238 zcmbuCUu+yl9mfYK1x)zUl+se5ol-(#%H7#X>V`|BK=37X6}!Q4QX#5}@$LA$$==Sf zvunqZ`hpNhh$5gW5-mcC-~kCm6+)sSFA=fSHy(K50YwN366q6&hw@ScpWp26-PtkW z-^#P!+nL||=J$Vo{_XDDo>x4NGCst3<4sDP2Cu(`7tg-8Ds>My37!CtfycqGf#< z{ByPbj|%VPFgbTGDEl4xM%6WGqtmr!h3f~i;`0ot38{7bKo%(t;{~Y)U zzF!8#-+u%@3BCb-0GvU1*>?)O5A1?M|0NJn)k~o8y8?>*zW{~)51`P!4hr3a?^WuX zU=v&fuYwYHy9pxkQxoJ!H3N$L9Z=%@DNyJ(z(>I6tM6Ze;=k8Gk?XIZ*yj!oZ-LVw zCQ}9!J^CQ7Q(pyT-?u=K`vp+^bqPdN^)pc7eh+>gd<_&mI|PlK+XH3) zS3vRGi=f#368IGO63Cz01<@3!L81FBDEprTac{8s!=Ttq&K-Zm9v@{KVucz zsY94A(ysW;jP#CYV38KM)rcvonE$jE%vdH zn>5nJATqg)^!lnzNBfyGy1Q!9p7qTwd{P(L|CPLgCj+h`k6H7gz( zS+CycRVRw`@VZ%NSsL3DK5uD&PAah*sSX~?@O)m|h_i8TWV5C|x8@UPpGt z6bV6I5~86_SSn1<>V2zuKJe{U3%mGc6t)a9cg}Y6X4mywHf>EeA8BQFrB$EfTgye9 z{ZB9~?t+P5Q&yUKnK7d*VP=Mqjcf-(4F5eA27Oh~|1{Fe)ye zlUyv{9OZM9cI~!LUwwxd-9{7UYUwMw%!(3`{$gPZve_5iF7mAuNwU$bNa`IS_R2Zp zImkkh*mBUe>3ZiDVqd4I*uU0Lg14lSxC^{xd1N3p2Q#lunq`})lXgws#NUvCR|{q> z?u8T!%oa$(QM#%H@`hJx)e|XR&v3cas%0}QbZ%hD5XsQK+0eN;Z?$)QYD_FIhb*>R zi?}ZlsqtveWxh6+ ztm(J)>48aOzglK5$-BP3-ppltykakeyv@puSqrC{v|*#ZZ`DcPvSjYW{M>wJr1W%i zYNEOW8cSS;Z7h5tZ&7^X^swA)nYa0oGfT%ChemXAA|7gV(yoh$+qOQm9Opw}+uHhx zQ%RATq;cG3ec#sUAbk2G`w#2#=aGG>e&C3no;*CEmg0evay5)@`HKC(rE>jBZ6FlL zSom@!Y+g>ImM%cC9~as$uyi$ zl{=2{BvW9H5L__xCaZ)t+6}t#=1)`2O>9b45(!!-a&KPYrgeR%3$};**hX@fZ?VS) z;HO(O{$PA@sd91+=&xY#UI3W?xw|I<{&=VWwyRTg>i8ay%OTdV*OLIy?;7Zz8 zA|F-b#N+dUh297fAc+@YZ00B;c;FVNSGB&BT2!d(nDaYC;|^0^+cYr}ZC?MIWs}q< z2zH(w#!F}n#9DL$x3*P9QCTvuxpuXh{7=mHm|2b!4v8Fh4FMAs7rTaVGh-GHk=e6! zlBQ}T;G9^gKj*N|m~%oLlwHRE+eb9@cqb9EcIXMz+@Y6{ERvPcRe5tS(Md-B8OlJ8{^ahS4@#Q8ed)ZFT$y=>pdp;E(8jb7kfJEvZo#6b$+>oQ=&?B4p?n-wC(6{Qb2*rFOrNZFINR%rr!up7`J$SO zuuHrWcga7p-OG(cALQtaDcRZPrBoMGy>NGVP3J*7lo5z#kg%sq69HjJ&sFT04cnvG s@L$0AmDp69m$GGt|HiU)6b_WtVMIVeS*oeGRwx=LUq6Y*KEtF^xxCm++E+PIEwQe$2iu}{!5vLu*zr5Fizn#uAnCB_cI`#!mW4_*|fRmwjZF5 z;th7;N1O?A5#rz&!?d7Y=s+!~2laf|eSQuHX?up%tQ5UQjRRHb@Qr5!{qXb6wt z3DiWdQ17jxD*PQ8+WZPof1P<2qv;ULVWx}K?qvP5fs){P1 zXd_kKRy7Fyv$aWWINHLGLgi5CJ5cN-bu@|^GLziC)R?n7!=^nA_OYkU{_z~lPG35k zvbVem&xA8Fo*K33+*zBGXYF#{Q#xjm>!m)UF zd*{*%|7@l`6o}XxfrR}LNZQx=LHoS0&)4USjE#?_ozY3VTy)hQFMe;G;1_RiY9ck| ROj##TVXu@l+x*hg{{gbqc!vN0 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 df12495a94..ebe1770c8d 100644 --- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-10-28 07:34+0000\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-23 06:46+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" @@ -132,7 +132,7 @@ msgstr "Instancias de índices" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "" +msgstr "Introduzca una plantilla para generar. Use el lenguaje de plantillas de Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). " #: models.py:118 msgid "Indexing expression" @@ -253,12 +253,12 @@ msgstr "Crear nodo hijo de: %s" #: views.py:196 #, python-format msgid "Delete the index template node: %s?" -msgstr "" +msgstr "¿Borrar el nodo de plantilla de indice: %s?" #: views.py:218 #, python-format msgid "Edit the index template node: %s?" -msgstr "" +msgstr "¿Editar el nodo de plantilla de indice: %s?" #: views.py:286 #, python-format @@ -273,7 +273,7 @@ msgstr "contenido del indice: %s" #: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" -msgstr "" +msgstr "Nodos de indices que contienen el documento: %s" #: views.py:341 msgid "On large databases this operation may take some time to execute." diff --git a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.mo index 80c742eb7ba9da2316d25789c78f7623a098a754..7b6a192551409473c5a57b47194679eac3c97323 100644 GIT binary patch delta 1105 zcmYk*Pe{{Y9LMqR+*Z^1XU)=!rf>iM`cgDs4&x$#5PJWHsAmr?7i zVu`{P+D~)Ulm(<2hsxwuoBbF^=PF+=OkM6I0j$ z)R7JHk!`1Ql+HH1jLQ5Dp29`!#2{(wiwRUE`q9HN)Sbzo?#xX$UO~ouhMkV&hJzqxt>=hpwe2cqrh}E`Z1}UD+qmF0+b+q?z z4;E1Clu&o%Qw{0(=xCs(mz8l-&gZYqYU&uFraDj#Ya^)V`dwElY7s(p=q6O?e@$D_ zO;Sq#H-1Xi;T|aMWcX84?otjP;8-g)^xTmKp(d)$%$^E^#flyPpC*GAfVzok+AJ(^9^8K72Ot2bsrh A-v9sr delta 1056 zcmZA0KWLLd7{~D^|1>d8Z4;}pCiZRB*lHt5EJ#wU;-Dyk4kAkF5UR-_5e0R~5(gU) z6os@79fO0oh-B*6)x|%PgNPzHRS;bSA^82hy~!i@e(o-LpL_04+TMq;*5_n+#VC1d zhWa32b{sc?JSbm6W@qp#p2n%L*$upfJMj|^;BVZ67BSlb8Qg{Yu!6HVi1#ptOUNrN zdqQJ`fo1oDm$;Sw8eYV8Okt9!G%be;G>sacbzZ;;`irjLM#Wi0CE7*JvxZT8iz()} zk2Dl`!}-hk2Q^XOnIIY&TgEw#C+X)fjdk3P_ucnTohz7Nd=1!}%GIKuq)jz*hp z|BjF8H`pKf7n}HS8{3HC_~r^G@d*7nBsXiI0^h-__zZ{fC-SNVIUgNSg2zD|#Zf$k zEoHnwV-XuTjqgz}_E9?!BYh9ks5??d-I2?#zl@6W8kNYp^Bd|8Ljnkwo})Nl%$s0p8=?#3$&ppsNc z>V|kUGM(X2s-?}*Nva&CvVZ=@D}>TwIesCEf7kOkv^nHIm9kFu|H5C#4!OZBDs}w_ zc2l)%?GYufKSG-!a(~r*gYO!3f*NtBb F{{#M>Sw#Q< 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 3e0c3ea8a1..a18b5229a3 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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-10-28 07:34+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.mo index 746085f2aaf3204e81c3f4c87a9afd3f0a8495de..fbfe04634f66d42d4b0142c0087dfce90f6bd32c 100644 GIT binary patch delta 1664 zcmZA1U2GIp7{>9lOKG9qwr;5?Na@j9L3Ck1N?VqXDq4Z0gbI=v5aQaImZ4?0+3upC zVJ{>xLI{ve6T_v1(5mrf4TTIP+wLIeIH+;{}Hz1 z52z)&ic0t^C|3;N^*%QG; z8Puj3#20ZNYT{2&r9F%KqI0Nw_An*=KH{;)rcN_a1_?~PO8glEh+QY~`~ z^#!L;iG3bAgKyIR8dY))QpGH)Qd>|H?ngc6;%*!d@Bf4;`oE*bHL`wMl1iKtmfWl- z`iRwpHqYZtmC(zQgtC9s^zW*#Q(GQj)*w0hAF~uyHML%%o6v8AnyPH||F5P^qimG9 zvQ%lcK@tQ@XF7;=gnp!=1lz;k$>6shj@nqNq{{xNX^*IBGizDY(gFUl%j^i&j}7l{ zEQ(<=gf>t31ISs>RQ8t$ZM3z7%D910`JX2?6799Sb-j`1kptd@WAg>awT01YXZ`Bt z*NSegTaL<1#YrCfgYF{?Qqp{p!Z_Iy^ zYqf6|9*bmBsYE(slj-c*Od{EnOg0YhNbGbEds9rGc%3P-Hl0lMCQ`{ny5A=IvYDRh z!KNeCJ576HL%IA|IXA|T(PC{|?8nHWe8DX{*3FOR@+CW2C>OJ~dcS#nToYOHA1Thw z`tPsyv}|rG+d~CsZf1g8EBw6O+NUjr$nxz4#~bzBqUBC7qx0C%+O5_z|ND}oZL^X8 E0PAPP$N&HU delta 1396 zcmYk+OGs2v9LMqh_{zuV=$K`eI+>P@X*0f+z(TMV*@KkK9;jqeNl_pa6$4=f24PJW z1V&M~Fp1#02&zRG1Vy+gXct5a=>b74(!l8Zo37Ad&i&jo_s%*0`~ROilfiqXkq`ca z5u-KISJ1zC%(mmxcn-AL1hZV6!_DYVG;6_5Jc@U538p8Rd9fImV;K2ZD~F}nhO4k2 zb8r}0Gh$<$XyK1oh<`8(3l^DWUxhj9yz<7)hg zrI^Pg%2+e1w4JCu(eESwYdIO@3r+kGmBPoUCwPv^z$aAdXK@5A)2s__U;uxio-~)) zSG*(REB&Jc8XF{i<+nv^}{x7$4>Y9BMdWsiMnqNRRXO> zNn=eVQ`3VeXw9RbOXvzpCDJQeMpvV%7OCb?NiU|WX_5b1J_9|e>a70=HL`6rbfsEt zJzWo>rgxm!Vrh=U0=fcK8Pup?>;Yl}z5nYt3%Dbpw5X-gwdrc<74$rM16})Kp;4t+ z+Cx}HuX8VGPc1ak(JyKFX`!m}%5b1E+!$(z`n{*UTf2|-4RrVQHUf#qZ$##$bq#Ju#<#B`u^X3FFfjM0+~m}UV0wAL4^ 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 4c0026ce12..74491109cf 100644 --- a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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_indexing/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.mo index 5466ef2d9ca304711dfc958b755852ebd74ff975..c236cbf878d0f08415a85c7608411a53e12237f5 100644 GIT binary patch literal 5358 zcmb`KPmEnv9mfv{0%KJKL{N~^BD5pC_hzPrwyzyZWnN`sr;P2;82?1i+Pcn z-*?a7-=FXAcYgEtdv1F}@jOF&h_>rirOtr=`4lgn=Wkc)0dN`oCb$ls0N(=7f&T*U z2Y>MCa$W)M;`?XdSHPcxp9S9r`BU%k`V#mq_$c@u_(kxJJCy2z4}&7dcfd!$5%>l0 z4e)c|o1n~p8{7l_3A_vZCwLq9VKx3SDD&^TQ>oqHqaagn@F9f!GWg31e-E-m{TY;X{{Y2bAA_Rz-3TT2 zdJud9JPL}uo8S@f5-4`MQsH~m_+59G`|JUQM+d;KgR3AWRWF0G|4%^C=QU9L^gB?_ zc?XnvAAqlcAAzFJWrWk<`=Ib~*FB}(?*%zp?Ez(<1@J-e1h^0U5h!wB24&r^K$-WO zs{aZodj17Ob@d@A_PCQtBIo0v$kPFZFNZ1MP9=ur`DzKO1Il@#yYS->O`fM|;$O)L@(4Gy{NUM36PpPS=V_v^*rY`hTZq1g zX_A|6rHP%O;rKbguP14kI@q8d5If5wc|lDQW4*m;(`G$=Mn{__?OWfT+9%Co`$@Oiw9&aznrv9OER}sW z%@+HKgkfhB720^s;aOT3m)cx!WcgSyMvytps!2nWi?%XjW0V)0%$8k5WR^4J!&uP0 zs~^K6xkXzvbBSz&D%r;5K$uz2O6~Ue;L?6#Q`tde7qh7)o7gd2Ke-%6JzLw~4u*+H zAZN?L$Eq!wIg`Dmx=|1sRq|}0eUzIb+SDdV!kV$mgXp6AQcZ%= zj;Ue4W89_vrl;i8c!Th%6PKQ|@s3GVuei4{eZA1DUhInSy53+iG_fXp-qd=%REQs| z9`4SeO;H<|v*AW;^R|A`TfOuWT+a4-9or2vN{EnhA{y$1p^@oZy>GK9hQ8bB#98Fq zaac0UvzKgCw4-d$v1w<%eXx_;jZS@z@2rnpQefZCtm@@CObjZ^zU&gB5s&Vxf6w|O z+MXZg)_X`KBh8nL$#-N!bj*77JfTpp3`T`7%M!@to1-eXhR*S)uZE|5JK0xDU-jiy zl!*0@M|MOi@S`X~zKv0mTxeHQ>J@=6Wgo#1j=i2lQ{DB-smZ>M?;UokwiMolO=P$+ zkXmLluTGkEo2Zj^OWyErY$C5tnJw23@hM@XP7%RPtgBN59k0}?7gD^Q<8n!K>t>uK zv!NxtB)kXaf-cNCt9>>gK{D0Wr*8VxYFyEa&^u!#` z%t_;m)>>{-Po~WBu3j;Dl zVG@T1A+(9??d|P$A$z+Gdp-npo_UkIEbriPleTO;@SQp%bX?Jyomp94=`|LaZ_mwC zw@Yh{YqpE|&lerix=WA9otb-EEWWsQqIIa5Cnw^*RxgdR7*cojp>jXOGONH8*rR=C4XI86SR_rEc9NPMt8?U;Qnz zSP5xgreOzjhMD(96WcJUtO6Wm0EIxmj|Ec9%>r&%^0q_PHc~j))WMu`Zet{oBqg-r z2|RfvX`q1h!HlB1CzbP8x{;%Mc6Lu!=W3lpExmpGgM9ul>#!PqioAb zj&M;UN~VYuBOa8?Jt#(%MQ|sHQN6?sTu_~@$182K+KuP3zoQPQFFkQrkgAdP*yP+v zHJX9au2$z*(ii!t{6@B7RG|N)5H;P@vRphD(O~+-X~I;q$g&78W-XPG?+IE-rpGoH zFP3&__;x+ZukXQ`Nn$1C-)u~(rAZGiReCtJf>bcbjDJk2J7x2FYNbT*cis2D_~E$3 zWRQS^P+Eqo(|EFw$sE}{(4p&V235BQ2 z7+;q$5*9bDW0oh}O~o(4Q~6E)TggIELv$%<%Rea-RZU=7D4u1wCS9O-U=4jCE*l=M z)v=&XPt#enV}D7512UkLrU((6P~k}Ln9B7Q6*0#wZX(N7Lk+QatYK%#LXti(YeVTk znjrF+@2c0>Q5+m(Y(|gg1$vOwEx2im!cg;2`6Q%}n#CcHlyMO3S(QN{j>CzkvaKpd zmg!0=p^WOt`%#*yRT3N?A>oHoNOtRUD{|Gwls#OP+$&_jP#cxGfugveXrxx*zqeek zJD>H_F+I5-YTG*kV`mnjPO3aphCrZPW1<_4s@2@3ksFfV%d+X)<+VoPBx(NYuQirV z#Aw`LF~N>t2@>j1JV^r2x$kpFQN#ZTQ+FaIRLz))L&kl>@xkF9sL~izsmT=VOI3v& QlvSQ9NW`eTIHA>l0c_py=l}o! delta 1226 zcmZA0Jxo(k6u|LYK3eDplok+y>H`F=w5EkdVhKhUObiA?aM2L+TAHR>DJexFOC?c6 z6QkzBAZ|`*+*rg(6DJlmBu3Hru{aoH&_xG7{s*6nH#z+7yM6DTd(XXW24@4scfPU( zMGF(n#3h?jeYjD=AKHgfrH+vnR@f$XwDp$%5&A1KQFpj-gh3Byn zFC(86)eSmz49r_E+(!q`D|j5ApdWqAN>_EDOcX*H@3kDnR-TjA^DN3dizo}di;`yr zEAScm$**3~k%>1fzgm7rN%YIo!)&ZrHCwjeA)Y(10n=EG7p>oKS}vf6@kMOGC6s)t zSVw;KoX&O1{s~Q<3)JT{zQh^a?^LQ0AEFD_Fo5q-cJdQt=XQSV#UR#T3Z>LjDDTan zEZ`bSK?kywRrT?XCK$yWPS zA>Hq~?TW<0T|GuL7LP{tXICH^=?-^Ajjm`sa-cIpa}Jmjh466R9Gl3Rg&Of3{Yh#Y=\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.mo index 59a8b59c7030d75abb6ae4c19fcca05eee7dd6bf..2b7a12d84c5c8a57c7e80c9cb8380e50c28b19a8 100644 GIT binary patch delta 1368 zcmY+CJ8Tq55Qf{{hrtGHo;DA|*bcY@*?2Lw#0mj6Z&(%yTZir}0lmA;GTzyl)jW)m z5E~OAF(M*`6od#N00IIMw4B&eB z7_L*Qsa`T!P2e5mQ6CsK!zI`O|AQI$KV*YyXCd+Ra24DNH^M>4qb6EB)Z!GBeWzQz z1UX7wOW33eCPxW0pj7%4cEh(&D)|U`)Mo}s>??eMN@>cIieHh7Ttq#&=V+$y?|2T>sEXb z_OM=po8UJn-=#TB*a@XIJ+LXg=w;Fc|AZpVc#C;B&iV+Hiz6uC--BD=LnsG5Z@qsF z5hhU)B=7h=5|e#HxD;mLVeq5y8ip#}=xY#yaD%yohE2L_Xcqc9< zRf|%hPEs+HpKkysw-uANigl^o%M+13vB`ODJG$f;tKyZTx^Y7*yxB0pvzKkDwv6po z%tHLUy?^a7-{{cxT&to(6TfdS_gTqH+pVhOzwL~3sj>KSYT)!4+01*(EHr!*1ngF4 zLQ@Y^L6?l93T9qL+pVqK9jKzYVU@4jPQ`M)icv*|_;%{*&_z>kn{ZnpP3HYfmF delta 607 zcmXxg%S#(k6vy$anaO10BR&WUHaNQS70jfz;vmveunSWuDk#_z#s?xw0!ivlvXTA+ zr_yD2t_5AXP@&LeyHbQIxN{>E1UD}FJs}=A^SLMC&iwAZN&ZPxuRE-LLv_+G=wmuX z=NfoWr}!Sva2nl4W47=k_TULd@e;f61_OLV7qby#ES$t7zC{NYvDKKW$=81qj}1 zX`-L2g@uOF(%a#XwJw8&0$V?1psCX_cSJDfmuu$F(E5%aa%@tSHOO+y)!_sC^ennRkxv;SD sCEQpKyux;VHYY>Qvg|t}^4GbOtJt8lx%2YXeJ$s1T7vkJoX1oD0g4DvVgLXD 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 11730bf64d..2295889bb4 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 @@ -4,14 +4,15 @@ # # Translators: # Translators: +# Evelijn Saaltink , 2016 # Lucas Weel , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-10-28 07:34+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-09 16:41+0000\n" +"Last-Translator: Evelijn Saaltink \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,16 +26,16 @@ msgstr "Geen" #: admin.py:26 apps.py:139 links.py:48 models.py:41 msgid "Document types" -msgstr "" +msgstr "Documentsoorten" #: apps.py:49 #| msgid "document indexes" msgid "Document indexing" -msgstr "" +msgstr "Documentindexering" #: apps.py:125 models.py:25 msgid "Label" -msgstr "" +msgstr "Label" #: apps.py:126 models.py:30 msgid "Slug" @@ -46,11 +47,11 @@ msgstr "Ingeschakeld" #: apps.py:133 apps.py:163 apps.py:176 msgid "Items" -msgstr "" +msgstr "Items" #: apps.py:144 msgid "Level" -msgstr "" +msgstr "Niveau" #: apps.py:152 msgid "Has document links?" @@ -58,11 +59,11 @@ msgstr "" #: apps.py:159 apps.py:170 msgid "Node" -msgstr "" +msgstr "Node" #: handlers.py:18 msgid "Creation date" -msgstr "" +msgstr "Aanmaakdatum" #: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 @@ -71,7 +72,7 @@ msgstr "Indexeringen" #: links.py:31 views.py:36 msgid "Create index" -msgstr "" +msgstr "Indexering aanmaken" #: links.py:35 links.py:64 msgid "Edit" @@ -83,7 +84,7 @@ msgstr "Verwijder" #: links.py:44 msgid "Tree template" -msgstr "" +msgstr "Sjabloon boomstructuur" #: links.py:54 msgid "Deletes and creates from scratch all the document indexes." @@ -91,11 +92,11 @@ msgstr "document indexeringen vernieuwen" #: links.py:57 msgid "Rebuild indexes" -msgstr "" +msgstr "Opnieuw indexeren" #: links.py:60 msgid "New child node" -msgstr "" +msgstr "Nieuwe node" #: managers.py:56 #, python-format @@ -116,7 +117,7 @@ msgstr "Maakt deze index zichtbaar en 'up-to-date' wanneer document gegevens wij #: models.py:82 models.py:109 msgid "Index" -msgstr "" +msgstr "Index" #: models.py:101 msgid "Index instance" @@ -134,7 +135,7 @@ msgstr "" #: models.py:118 msgid "Indexing expression" -msgstr "" +msgstr "Indexeringsexpressie" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." @@ -148,7 +149,7 @@ msgstr "Selecteer deze optie, wanneer deze node alleen documenten dient te bevat #: models.py:134 msgid "Link documents" -msgstr "" +msgstr "Koppel documenten" #: models.py:139 msgid "Root" @@ -168,7 +169,7 @@ msgstr "" #: models.py:156 msgid "Value" -msgstr "" +msgstr "Waarde" #: models.py:159 msgid "Documents" @@ -227,7 +228,7 @@ msgstr "" #: views.py:81 msgid "Available document types" -msgstr "" +msgstr "Beschikbare documentsoorten" #: views.py:83 msgid "Document types linked" diff --git a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.mo index 35d6bc7b4226a597b379eca136f70f688c68f4e8..bc6e72ca8114e946d91f70b543d9e5b5777da99b 100644 GIT binary patch delta 1051 zcmX}q-%Aux6u|Mj{#bR@EYnu)hqI9(>C)`3rVSW@VVGiK4}nij?kMArnb?_a(;fsX zf~bdB63UkzDyT=dhaiwZjR^b$Bq|JodhD@>pzj&CE_3f^e%zUJ?wPyO_&vJ#rM~Qu zqQ&Tk=*L1zoy5)(2HFp7!k>5^OG=d*zzaBo5Agv0!5VBRQ|chbuon9;j6)d3F*I-* z_b9cfo^w*gjn~Mb))*Rb9V>7fZ{rS@<0Jzws#%ohH?a+GVI{sq4z*hJ4f3j5E4q$n zx&DAn#8*|MSI3Q`C=-*&Gu4BVNFTnZDwnW@>lUJ1!EPMDWt2*MMp@w?tJ#Mp9!C%5 z`%jQ5>J>I)0egwBwm8{~;mB?!qDU+iLkZZ99IBt;K8~O~|AbPBZzz@cg&p`C>f7Yi{ga0NN(yKN+KVTLIl}E5R~5@G+D7US?Liv zIRs4t|7)_PWG_i9X?$}!*gW;S*TEXttBKZWvmdmw#4zqP9O{nZE5hTH5rj!dB^- zkYRb6}P`s`7Y8NC=Ev##47QR3%_VrWS{aVnnB)n|Kdm(C_?W3>{hXUwupHYgY*&tkIxcTKUf5ik nFHT-B44>m9zQP2)$8r3K75s@iaLP4H;XHEn>?FO% zzyc<53Gd)Cj^cOJjlWUz|8OfNnAChG)H?r_252ca4nv{hg|lM&SQP+^I?Ou zFK|B-H(2EoK0qb?g-UvaRd?Z2JcJSIK|aw<;5R&qe{mgsQJBQKS(pGq*+wbgQ%^Yj=#^L7CeqhTE#NfP+NZ&_u#X5{tfci_7=792F9m42*Qx{ z7#rNA1llg0*|2mI$7~#(?H&%Iwo|p8rUjH%2~`R(EQL_%cvX78^q|^)1=&m1!HcJq zXf`T)J?0 zrc}(Aij_h+{E+C5)%;fdre6;#`RglTEqO6|o$NcIpDIV|sk2UQv9%mD+pD+yRwJ-; Wt83jWR|7lM={6fd#}7}ZpZo`LGgqJh 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 c4d91a61ff..5b67bfd82d 100644 --- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-10-28 07:34+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.mo index d5e2822ed7990954391f4f36aa7e4d2a9afb9376..efc7a19a4dbe409bb66af3e73c7598193e6416d9 100644 GIT binary patch delta 60 zcmaDM@IqiiBMY~op{|j!f`O5hsqy3<7FljX16?Bv1p{*{W0T2SSZXKRu|{$GB<7`; QCZ?xaDHLp;#(Ief00saN#{d8T delta 61 zcmaDM@IqiiBMY~IiLQ~kf}x3(q2c5n7FlisV_hRd1tUW%1Ix)==%5-R`z 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 8d722f643e..a88f2d4264 100644 --- a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-10-28 07:34+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.mo index 82c4b67e94f6a14f5e65d1f02aa17838b2a6623b..a2d7540553aa9fba30def76abc1c067c6baf0083 100644 GIT binary patch literal 5378 zcmbVPON<;x87}f5u!Imy9Kyr6AUN?RnVEe!u|1CM*x7Ns$ZH#WVaV~4cm4a;jytXhJV)?;8t>h=32`3y@7wXgbMj6h9sn)_p85BOo=4Iuu+ukiUe@O9vWz&`?a0`Iy@h&FH+kaBzpxEq)Q zKMK48ya#v{NctPV&jEh}{2=gc;2pq!l<4n+Vc@$K+q(6TQWSss4NV+$GjOV`qDc?N^8v5q}Ann`$a^E75az6F{U5_jMb`g5o4H z;cjsV?|!^ZyyP?aP%qkY4liY|9_A@?m=9&*)4~gpd<>KS0la*kz`F-8YXTq2B>4jm zt40ri>ItV<1_cpw=6LqYfefUA&(2n$V_0ax&=$}XYFCi96B+yUv zB|=@y;-&u=@zPGT{p7P71I8z9{y1LmJ0N4_^LP*Ag(-zNHdH23-AK#O2Khk8nanOF z+KH!C?zEHHnsL&^q2834m0c}|#u<{UIFxx3s!WG+V@=27{g_iSSW|IdyXF+1*oON5 zWwWM(^+Fn(WX8tiv!;gNM+rS=6=YI5iNkH2DHH2d_H0@Uh84&h+ma|zDYYd%IWF*6$$4xdFfXn%J5?$iw^QkH^sTqWK2Utk7&52nyg(`uG9HD2Ej{449!jqiBb+dr4Yf&{UG3gfp6Z8WA0o)zY(Siq%wOq73@! zk$2VB0(gN(i3{dtrR{7H>W$^FaY3g=e6FZVDwdt4mGd*_bYj!2vEuqBY#h(~uCZ#{ za^~!r)kakm8%wBdZMiTv|3qVczOk?<=N8(JFE-}(&CP+ZaZdBV;w^z(DIh)<|2(}iP+*s9W(3WQ* zZ{CM#k=n;ob=gF-MUErIH#Rn!84oc%z3H<%wN9nRrY*Q$#SI+}T&pS#tt5N?__@~X z%*yggXKbDM=G;tq(==9b<+kC9&8&qIZ{kC|KU1f(!_TgsXdD>R@ld$3(TM{aBEZ}7 zK-Xlo>}~1KnmHTgsfrpWY&vjl87F?|4lf*%#m~cgV|hf*&mNi)t0u9mY;_`VWL#q7 z(Y2vAPMlDek#GYhxYQ2U&*)kl8ibP57Zuw9(nS&-L6*a?msMy%i>uZmLBegkao_3z zZXlFgt~R&xk4M+vJ8v9PR!Yn3dYbi$N=vDgw8`k|=toxK+E-&;coyWwt!@Wa<^yC( zU=oAdUl)`$cLxn)GN>pMWeO6TXK+6juRF*cDgj848b#bV?wRWu)~sl5um@jBl`m7_HJ&avk#Za|93iGEjuS?jUO?Ipn4^l7!6M?) zd~}Ub&XR~`2fdEI7H+n2^FN$SS}91_wVLv!H-j(3=P+p8)*F294=N zJ@8Rf&|to#CPisqSeu3)$#p6_Xv9^VN1Dutcb z(H6yP`9O3AvX9FM|1Zg+1%mEHxyK#BYK!t-7F_$PAB-zwOMf?x-{2mnm delta 1652 zcmZA0Pi$009Ki9Zl>Xlqx?7O4z_g{+mKNGdf^37R!5WfAOzFjF)Y;u}eX{%By6^2q zd#N>I;=zcSau5>_c)*Y}9uOn(WY&{0LE?q@ho~_e40@0YC*$|G`w9t@%zkF(z4^_| zZ{EH=@pXFTMt|#BMVX?esqeHXbp&rczz^lOO-enDzvDcPw<>iC%eW1H!5+MgJ5g;` zstwY(9Y-*ObJ&YD?8MW^loj;>jR6MM;ukJrJN+y8EPjJY>?bNsHHH#s5@mcY_5=>o z&&BhIIFl7KgJd2s&yKY>aS2v(#eI&gkh8njH66^6y;7A zaTH%eN$nYwja)$4*ykwkeUGw%KQV>>pqzXY=@2^;se`QFrFl;=nA z1Rg_4;acpMC|7bl_E+3O{|_9)+b9bSa*9FJNTM4tfHld#rXjnIKX_Wr@(@Tir0k=T z95q6fj7czJH;Qan(mzF&#W#v;pi-~Cbd^uejwLwe?5W@g6y)xB$G`jM&G89h6b znLfO4n$opk!f0x#V*IdZqM(w|i$T^_q5wlv@dCHllj~bBexYg#HlxeYOHVGkFM6JL zdlLKHsl-^zr28;2@SG_|wqoiR>X&V(^H%3gK4>QCn@IswsNQgm-&;CsKg~40N@GepJ8c z`L^P6z2hAvt!o{N?#9*~D+Km(RyCp!D~ya!xBh-(xG_*a@8>)tDPc2r zpDfu@nS7I{=J?5K&W53EOfTAO)hp)7pnku(sId2@jjJgId0Pyc LH>BN, 2016 # Renata Oliveira , 2011 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-10-28 07:34+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,23 +32,23 @@ msgstr "Tipos de Documentos" #: apps.py:49 #| msgid "document indexes" msgid "Document indexing" -msgstr "" +msgstr "Indexação de documentos" #: apps.py:125 models.py:25 msgid "Label" -msgstr "Label" +msgstr "Etiqueta" #: apps.py:126 models.py:30 msgid "Slug" -msgstr "Slug" +msgstr "Identificador" #: apps.py:128 apps.py:148 models.py:38 models.py:126 msgid "Enabled" -msgstr "habilitado" +msgstr "Habilitado" #: apps.py:133 apps.py:163 apps.py:176 msgid "Items" -msgstr "itens" +msgstr "Itens" #: apps.py:144 msgid "Level" @@ -63,16 +64,16 @@ msgstr "Nó" #: handlers.py:18 msgid "Creation date" -msgstr "data de criação" +msgstr "Data de criação" #: links.py:18 links.py:22 links.py:25 links.py:28 models.py:83 views.py:75 #: views.py:235 msgid "Indexes" -msgstr "Indices" +msgstr "Índices" #: links.py:31 views.py:36 msgid "Create index" -msgstr "Criar Index" +msgstr "Criar índice" #: links.py:35 links.py:64 msgid "Edit" @@ -84,7 +85,7 @@ msgstr "Excluir" #: links.py:44 msgid "Tree template" -msgstr "Template Árvore" +msgstr "Árvore de modelo" #: links.py:54 msgid "Deletes and creates from scratch all the document indexes." @@ -103,35 +104,35 @@ msgstr "Novo node filho" msgid "" "Error indexing document: %(document)s; expression: %(expression)s; " "%(exception)s" -msgstr "Error indexing document: %(document)s; expression: %(expression)s; %(exception)s" +msgstr "Erro indexando documento: %(document)s; expressão: %(expression)s; %(exception)s" #: models.py:29 #| msgid "Internal name used to reference this index." msgid "This values will be used by other apps to reference this index." -msgstr "" +msgstr "Estes valores serão utilizados por outras aplicações para fazer referência a este índice." #: models.py:35 msgid "" "Causes this index to be visible and updated when document data changes." -msgstr "Faz com que este índice seja visível, e atualizado quando alterações de dados de documentos." +msgstr "Faz com que este índice seja visível e atualizado quando dados de documentos forem alterados." #: models.py:82 models.py:109 msgid "Index" -msgstr "Indice" +msgstr "Índice" #: models.py:101 msgid "Index instance" -msgstr "index instance" +msgstr "Instância de índice" #: models.py:102 msgid "Index instances" -msgstr "" +msgstr "Instâncias de índice" #: models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "" +msgstr "Insira um modelo para renderizar. Use a linguagem de modelo padrão do Django (https://docs.djangoproject.com/pt-br/1.10/ref/templates/builtins/)" #: models.py:118 msgid "Indexing expression" @@ -139,13 +140,13 @@ msgstr "Indexando expressão" #: models.py:123 msgid "Causes this node to be visible and updated when document data changes." -msgstr "Faz com que este nó para ser quando alterações de dados do documento visível e atualizado." +msgstr "Faz com que este nó seja visível e atualizado quando dados do documento forem alterados." #: models.py:131 msgid "" "Check this option to have this node act as a container for documents and not" " as a parent for further nodes." -msgstr "Marque esta opção para que este nó ato como um contêiner para documentos e não como um pai para mais nós." +msgstr "Marque esta opção para que este nó atue como um recipiente para documentos e não como um pai para outros nós secundários." #: models.py:134 msgid "Link documents" @@ -157,15 +158,15 @@ msgstr "Raiz" #: models.py:144 msgid "Index node template" -msgstr "Índice Template de nó" +msgstr "Índice de modelo de nó" #: models.py:145 msgid "Indexes node template" -msgstr "Indices Template de Nó" +msgstr "Indices de modelo de nó" #: models.py:153 msgid "Index template node" -msgstr "Indice Template de nó" +msgstr "Indice de modelo de índice" #: models.py:156 msgid "Value" @@ -177,7 +178,7 @@ msgstr "Documento" #: models.py:204 msgid "Index node instance" -msgstr "Índice instância de nó" +msgstr "Índice de instância de nó" #: models.py:205 msgid "Indexes node instances" @@ -185,11 +186,11 @@ msgstr "Índices instâncias de nó " #: models.py:213 msgid "Document index node instance" -msgstr "" +msgstr "Instâncias do nó do índice de documentos" #: models.py:214 msgid "Document indexes node instances" -msgstr "" +msgstr "Instâncias de nós de lindice de instâncias" #: permissions.py:7 msgid "Indexing" @@ -197,7 +198,7 @@ msgstr "Indexando" #: permissions.py:10 msgid "Create new document indexes" -msgstr "riar novo documento indexado" +msgstr "Criar novo documento indexado" #: permissions.py:13 msgid "Edit document indexes" @@ -205,7 +206,7 @@ msgstr "Editar documento indexado" #: permissions.py:16 msgid "Delete document indexes" -msgstr "Excluir documento indexeado" +msgstr "Excluir documento indexado" #: permissions.py:19 msgid "View document indexes" @@ -219,7 +220,7 @@ msgstr "Reconstruir índices de documento" #, python-format #| msgid "Delete document indexes" msgid "Delete the index: %s?" -msgstr "" +msgstr "Apagar o índice: %s?" #: views.py:64 #, python-format @@ -228,41 +229,41 @@ msgstr "Editar Indice: %s" #: views.py:81 msgid "Available document types" -msgstr "" +msgstr "Tipos de documentos disponíveis" #: views.py:83 msgid "Document types linked" -msgstr "" +msgstr "Tipos de documentos vinculados" #: views.py:106 #, python-format msgid "Document types linked to index: %s" -msgstr "" +msgstr "Tipos de documentos vinculados ao índice: %s" #: views.py:145 #, python-format msgid "Tree template nodes for index: %s" -msgstr "Árvore nó modelo para o índice: %s" +msgstr "Nós de modelo da árvore do índice: %s" #: views.py:172 #, python-format msgid "Create child node of: %s" -msgstr "" +msgstr "Criar nó filho de: %s" #: views.py:196 #, python-format msgid "Delete the index template node: %s?" -msgstr "" +msgstr "Excluir o nó de modelo de índice: %s?" #: views.py:218 #, python-format msgid "Edit the index template node: %s?" -msgstr "" +msgstr "Editar o nó de modelo de índice: %s?" #: views.py:286 #, python-format msgid "Navigation: %s" -msgstr "" +msgstr "Navegação: %s" #: views.py:291 #, python-format @@ -272,7 +273,7 @@ msgstr "Conteúdo para Indice? %s" #: views.py:331 #, python-format msgid "Indexes nodes containing document: %s" -msgstr "" +msgstr "Indexar nós contendo documento: %s" #: views.py:341 msgid "On large databases this operation may take some time to execute." @@ -280,11 +281,11 @@ msgstr "Em grandes bases de dados esta operação pode levar algum tempo para ex #: views.py:342 msgid "Rebuild all indexes?" -msgstr "" +msgstr "Reconstruir todos os índices?" #: views.py:351 msgid "Index rebuild queued successfully." -msgstr "Sucesso do Rebuild da fila de indice." +msgstr "Índices em fila reconstruídos com sucesso." #~ msgid "Index list" #~ msgstr "index list" diff --git a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.mo index e096c9d664197dd4c552e3e490adc1d5855d78b9..70c927f433f46ad922c98ce7c09cf7f6da70ba54 100644 GIT binary patch delta 618 zcmX}oJ1j#{7{KwbRZ6|8NQqa)WVp%g!y_Gp#3K??>0l7AOKxbC3dMv$(wHnaBAQrO zET*n(O`1pyb`chd$zm|!f9l4U`<>r8_ug~Pch0l-w(juR=QQOYzM10@cJT z9K>sE!gu?-laFe_ax73>JI*nFW06%Hrm76yU?)b{jYpF7vtR>aytH^3n1?v}Yu&y}zE3PJYK_7}qvP8R?G delta 515 zcmYk&ze_?<6u|NGdhexW<&TI86P2hT5Z+TEdPq1#ErHO|5K#_d6ch;261YigT^gDi zjFubJse>0fAU>wD!P9XR)M-p_OI=|p>xdM{>O3lSsd$QGF(3kD1Eh#UBX z>-dXDSR4|GV+*J86+QgM5saH67B1ivF5v_gF@PluiqvJBLch3=MXcZq-lL7rsDIGK z7n*XuNHgJOea!0{Vr0v^5{XrK?_9!Xm=66v1~Z5VRhTp#meIj&kNqQK}1mn9GGV=2PlEcoCj~SK%}8HXMc(c}f+-H((Wf z89f=ZinSC21SusC<#A- z5`P0qg0G-7vH_2w;%(T9{RdUd!z#K<$H7E&| zU?;o<`5xURvwYCImt?Y}C_>yNiDZcqwQN*(y9e$#EGT1=g~0AABfnd*B$tn_F6(#a zEMF}jxho}wyB*2gWudq`Yq_syH?Z$#i+Zx;pCJDz8KX3m%a(PReOzvynh1s?!GXv@ zZG}b$6C*krx8hgEbZq6@9A8d;I2zKI?e*N6@}6-WjE6^~Rwx+Ps#iyJT-!h8)|OiF z3)*ty0#<$Ol)aPN+mf}z(IM5l=g@mhD-wyZ7BuOS%<$9GRrr=!%QL+Y&L&t7>N ziwC2F`W`dp+2eX35srkciwT|3AuE;`9MrMctBFYDN=r6Gd!bU-*|;8wslMQVj;KC8 zp-)6qe{do^eW=`JOKhMk3ilHO+4ND$CD#iCqoIac*=p zZvW^T-rv^N+}>fewgub>>>^ zQh!VGx*Oni>7OC$UoY7w5{7*PRJo-U)q3i7@wdS=^Nlo;mojVqj&1-)^g zq4cmW!h1K1CQU75NgMlF|L4{2Bq)$3*7h{$q)yRckNu0ksYIC%s9$QQ5WBYM%zrvZ B6siCK delta 692 zcmZY5&ubGw6u|KplO|0!ZDO=UVt*_MdZ?9bOc57_qQ#;VEQlcVV%iL$q;9E6pb8Sy zi$4y6QxD?FKR_(j;zeUU>mfPmMZJl~fZ*BhOG+<3c>9^z-I;mw{*M1T*!Yo-JQLyo zIYPcAN6EPm4`K&r@e^La_&$*e&f{Txj~V=iK6WsU6Je1EPT?^67{hrS!fU;GL&^;L zd9jMRU>&FN4j#fL_Tg95jlN@sL;m0s=1x@PF}}b@c#Kod;v39k2N&=NhorHAS$vA; zq#^Q(K}vr_tt>?OY6`U@<2Z_2@q Bb_)Oi 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 258c4fe6b5..a427ce095e 100644 --- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-10-28 07:34+0000\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-02 04:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.mo index c9ac031f217db7d497ee18a0d8eb5ce9533ba026..0b45da13cfb75fa44c7d354b4d479d9306819a82 100644 GIT binary patch delta 274 zcmZ3+cA2gIo)F7a1|VPqVi_Rz0b*_-t^r~YSOLVGK)e!&`G9yc5VHdDAs}V};uApZ z0K{j3_zELX4G@FWKW2ice+#5RX8!@wAoa}53=CdCngd7!m3jb~5CtF_s0Iu`7Qg^d z9atlSOMY@`ZfaghF@tAbN@|5dW?pegVqS78gHK{oYR<%kQ@ITdb&ZS_42-NyjVC)Y z%5nkuhUN+e7FMQ{GZ?!kGc!f;`y}S2mnNpCS}7Fg#0Ps$j$x`|^RLQF%ubwql_?Ma D<;^V+ delta 229 zcmcc2wv4U*o)F7a1|VPsVi_QI0b+I_&H-W&=m26)AnpWWJ|Lb9#4JF(2#6hkcsUSX zVPs%<0i;3d_A)`#9S71Nb=QEj7m&UUq=Cv9n1L7sKypB!1hyC`2edgqximL5ucVm4 zGcP5zLLoD+xFj(zId$UksoVx8x<=*-h9*{qhLh77Ww{KDb&U)aj0~*|CigLR^ZO*` drI#kAr&=i#=fnqlPL^Pbp4`k-IhmO`0076uC delta 63 zcmbQoI*)aO0wcG9iLQ~kf}x3(q2Xk0MpSKNSz0F_VTt1RNz6+x UO-xUF096|j)Bpeg diff --git a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po index 3e7c975d7f..14e3e06cb6 100644 --- a/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/zh_CN/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-10-28 07:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" diff --git a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.mo index ebcce8d232d76eec501bc9e256961a0f20d09082..1b1733fe7b7c163de5efdd29e34db7685fd2e12f 100644 GIT binary patch delta 24 fcmZ3=v6N%O14eE`LtP_d1p^~1Q{&CA8LgNAT)777 delta 24 fcmZ3=v6N%O14eEG6I~;71w#`nL&MFl8LgNAT>1v> 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 34ec64e1f9..372cfc4df4 100644 --- a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -30,10 +28,12 @@ msgid "Date" msgstr "Date" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "Key ID" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,18 +54,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -98,6 +102,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -198,10 +203,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -210,6 +217,7 @@ msgid "Verify document signatures" msgstr "Verify document signatures" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -242,6 +250,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -260,6 +269,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "On large databases this operation may take some time to execute." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.mo index 9c484ac73192ba947eb29c6ed82063d97ca20c13..a3d59316ccfa130e1be0fd56603e7ac9eb228d82 100644 GIT binary patch delta 24 fcmZ3^wVZ2%856gmp{|j!f`O5hsqtn_W%F@ 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 0aafa3c458..b0a31d6e7a 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pavlin Koldamov , 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -29,10 +28,12 @@ msgid "Date" msgstr "Дата" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "Ключ ID" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,18 +54,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -97,6 +102,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -197,10 +203,12 @@ msgid "Delete detached signatures" msgstr "Изтриване на несвързани сигнатури" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -209,6 +217,7 @@ msgid "Verify document signatures" msgstr "Проверете сигнатурите на документа" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -241,6 +250,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -256,11 +266,10 @@ msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" -"При големи бази данни тази операция може да отнеме известно време за " -"изпълнение." +msgstr "При големи бази данни тази операция може да отнеме известно време за изпълнение." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.mo index a6e6e483450f2a050ca238d87181c53b7172370f..270f10e31db7a438462f54233d51a17da48f34f5 100644 GIT binary patch delta 24 fcmdnVv6ExN14eE`LtP_d1p^~1Q{&CA8U2_5V0i~7 delta 24 fcmdnVv6ExN14eEG6I~;71w#`nL&MFl8U2_5V7dn> 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 be2185db2e..1b58bda6c4 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18: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" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -30,10 +28,12 @@ msgid "Date" msgstr "Datum" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID ključa" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,18 +54,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -98,6 +102,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -198,10 +203,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -210,6 +217,7 @@ msgid "Verify document signatures" msgstr "Provjeriti potpise dokumenta" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -242,6 +250,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -260,6 +269,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "Na velikim bazama podataka ove operacije mogu potrajati neko vrijeme." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.mo index e92e70ddb3c240545c51b062dba9f8fa96248d49..9a860e19625770c944f86d8ff67fff5cf9c9896c 100644 GIT binary patch delta 24 fcmaFM`j&M=FeA62p{|j!f`O5hsqyAG#(qWsT_Xmr delta 24 fcmaFM`j&M=FeA5tiLQ~kf}x3(q2cB@#(qWsU1SEa diff --git a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po index ab20dce17d..2bb0e24574 100644 --- a/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/da/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -28,10 +27,12 @@ msgid "Date" msgstr "Dato" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -52,18 +53,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -96,6 +101,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -196,10 +202,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -208,6 +216,7 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -240,6 +249,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -258,6 +268,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "På store databaser kan denne operation tage lidt tid at udføre." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.mo index 1e4e1bfac7c765b375fd9be060a41e7541124037..4eb6b4ed82cecc93172447d6268562f94194e7b8 100644 GIT binary patch literal 5013 zcmb7{O^h5z6~{Xt=3_DBgYe}Ls5o(0ll08&*bd&YH~!jn;>1ff*|iUekkvC?Gt=3g z?xCvM>&+1nfsk?mMT!(8B9Ti@K}7KZZ4PL-_`rc2B9Q}1IB+5o5<)^kLHz&KJw4Ss zvtUZ<`E^yjdiCnPS5-ZKy8HH5Jd`CoU&nL%t)90I{`EHepd8|6r3;kJ@8wo|Fqz5K+63Y+z8F2z^!q(n^dsOyU=3Uc z8{iK>+W9v44e&1@_3y)CeQ+K`lXn?B0)`;t^C}1vy*G;fw?NwYE-1kFK<3NeLE3Q# zf=xfngJ|*=LB{O~ka=)cb3Y{Z1(1JSV{u;4|PU@MW+L{vM>A zpMV^{fW_n0dlKY)&x3b^3Z(yE0%_;#Amg(GQvZkGaqu4??X6+ZVQ>j#e)mAmw+Xhu z*Ffrjzi9s$q~80G?A$Ml;5>K*L`b|Jg9x*Y0q3EQS-94R@K86FY;B?a%!L{r#)gHu zI4`EL<(v4WKWGEb4aWKio+cjJJ1z@&IfjS6#L{eG{xAmj<6-Xb>|ue4wmgd8Tk(7; zui8B2tH8rpu`pN0h360p_Z`>DIGn`uZ9Mcb3v-$Kg}HPT4`V_9G6(6eaiQ;7=u4Kb z;Q5Yy%YS%A*|HoM>G4PCsF%plTb8k8lZ6PS2|9fl+TOrqO18uyy>~CW@)7nWit`3g zbW^okOWMf>GBJ~8NRQjDN~NPTnQE9}(#^AVVPh>}jKlBN zj2M(;a8qY9pKw#cb8A^UjyeMG!d=Naf>Zj?%WGpt7C9yk9?}QJ7ThI*Qgo7(H!)~B zO{#-*u6=qp>6voV>I%7WhaF{8j=|uf@`{b`q}q*Q>GZ;XV+E(2W_qlmg$+X`HMXWJ z7f0GS!{EHA8+Gy|`hF&}sa!4%$*s30=I20}%0&e1p|ZgwyEJ6>Pohvt>hU7=luX%W z&zN$AtGiHJN_v-R{k90=Sd;@QCzL)lOGb|y%R!||bVYK@TF&Dx?M@UsGUcncrqUOX z;r@lthcP_sT4FWW4id4lyt+R3tQ@Aw_^Y}Xh5p&Br~QqzCFa(i-tf;A+u7&2-4e~l z!lVAeg5NwM8qLS*AabQx_ z5*ukd3ba@Y?^j;?Fm zm5H}5hXD>iDK5cYg*K#`5pmINbA6_W#Cf_)$Mh{a+Q}#7Zp!cCbkp9VGRd6jV8(LU zQS5~27P|y3?RkyaU3>p8;aRg;-I8}oTN;CJiks5E_kfvm{CA6YO*vD;R;EHJr0S+| zPsym$w+BB$io53t1{NWVgAil)iW$?O^tI?$#;i=%@2z+G@n}bD89T2&Pu{YF`Q8os z3bU;!ZDbrHu{2KgYyfv^F_F~XnRXmx-PwH;Isd%9)q{4Zvd*S6RXlnFp>Z0xt=#Ha zB$Rm(yNB03{9?3sRz{+y($O#ASe`veJ4iP1z8NIAVfLW}v-d_jv59(a$5y05(U!^RIyxXjeAv)^(%n-7W<1iGVHY48(QfY#UK*h8fv!KN1F5&3M14%6=KA&CDb#$GYkLKgUm0 z3U}V>K62*UCGXBPHKwv?N3!A#&Dh%$&u(USOjQn9C?juWlI+#9?^IRVchVCRxN5c2 zC$6TdA0&u#b-Yaci})0g-stCTey@&px=5KR3lU{^SKBpWgZHto-5KG(YE^W3#FiU6 zDGtx^C(6wp11UE3_}Jj*aMdGwOd|T@VRky#ut}G9CXTDxu+-`yG};+^hR(C{<${FU e>EwClYy&8)O5sl(KWaFOYm}W>m(Hs0CGS5n__TZg delta 702 zcmYk(ziSjh6u|L0&F*=7n>+6Z8uQDGB2grA7ekc8!a~8AU?CBeSh%?zy})HxcUM9R z4Pq0p9MbtGSSe_sofejgA_$sB!NyV~ND9Ai-69X(eP(uN=DoSy7=P)mZC3j>6j3LK z$=Bovc_YUU@gDo|1KRi*2k{&3!7a>VZkJLuEZ|-oL0NYKhj0dEz0M4f^VZY~11azT z&*CF2;aha@Bg*?tl!L#c9Q+%fP`tcbDU1127D<6;*uYmPjeX7hfdkBcVFfKVjZ$Cj zXK;uI)7X#Kv52>`d5m)Nhd7JtSjA5$js8S>P=9bA{>39$VH5qOLCy5vk#+Q)hFnfv z`#(-^#=i7GxrH=R&fdwVk&xR+;hiBjk!D>|nk1c{DV7A@UMbReCmosSybu+!~%zL~Ba F`v, 2015 # Mathias Behrle , 2014 # Stefan Lodders , 2012 # tetjarediske , 2012 -# Tobias Paepke , 2014 +# Tobias Paepke , 2014,2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-04-27 18:23+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-05-20 22:09+0000\n" +"Last-Translator: Tobias Paepke \n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -33,12 +32,14 @@ msgid "Date" msgstr "Datum" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "Schlüssel-ID" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "" +msgstr "Unterschrifts-ID" #: apps.py:99 forms.py:83 msgid "None" @@ -50,59 +51,64 @@ msgstr "Typ" #: forms.py:23 msgid "Key" -msgstr "" +msgstr "Schlüssel" #: forms.py:27 msgid "Passphrase" -msgstr "" +msgstr "Passphrase" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" -msgstr "" +msgstr "Eingebettete Unterschrift?" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" -msgstr "" +msgstr "Datum der Unterschrift" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "" +msgstr "Unterschrifts-Schlüssel-ID" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "" +msgstr "Unterschrifts-Schlüssel vorhanden?" #: forms.py:73 msgid "Key fingerprint" -msgstr "" +msgstr "Schlüssel-Fingerabdruck" #: forms.py:77 msgid "Key creation date" -msgstr "" +msgstr "Erstellungsdatum des Schlüssels" #: forms.py:82 msgid "Key expiration date" -msgstr "" +msgstr "Ablaufdatum des Schlüssels" #: forms.py:87 msgid "Key length" -msgstr "" +msgstr "Schlüssellänge" #: forms.py:91 msgid "Key algorithm" -msgstr "" +msgstr "Schlüssel-Verfahren" #: forms.py:95 msgid "Key user ID" -msgstr "" +msgstr "Schlüssel-Benutzer-ID" #: forms.py:99 msgid "Key type" -msgstr "" +msgstr "Schlüssel-Typ" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "" +msgstr "Alle Dokumente überprüfen" #: links.py:39 msgid "Signatures" @@ -118,7 +124,7 @@ msgstr "Details" #: links.py:57 msgid "Signature list" -msgstr "" +msgstr "Unterschriften-Liste" #: links.py:63 msgid "Download" @@ -130,11 +136,11 @@ msgstr "Unterschrift hochladen" #: links.py:75 msgid "Sign detached" -msgstr "" +msgstr "Unterschrift seperat" #: links.py:81 msgid "Sign embedded" -msgstr "" +msgstr "Unterschrift eingebettet" #: models.py:31 msgid "Document version" @@ -142,11 +148,11 @@ msgstr "Dokumentenversion" #: models.py:35 msgid "Date signed" -msgstr "" +msgstr "Datum der Signierung" #: models.py:45 msgid "Public key fingerprint" -msgstr "" +msgstr "Fingerabdruck des öffentlichen Schlüssels" #: models.py:51 msgid "Document version signature" @@ -166,11 +172,11 @@ msgstr "Eingebettet" #: models.py:88 msgid "Document version embedded signature" -msgstr "" +msgstr "Dokumentenversion der eingebetteten Unterschrift" #: models.py:89 msgid "Document version embedded signatures" -msgstr "" +msgstr "Dokumentenversion der eingebetteten Unterschriften" #: models.py:122 msgid "Signature file" @@ -178,98 +184,102 @@ msgstr "Unterschriftsdatei" #: models.py:126 msgid "Document version detached signature" -msgstr "" +msgstr "Dokumentenversion der seperaten Unterschrift" #: models.py:127 msgid "Document version detached signatures" -msgstr "" +msgstr "Dokumentenversion der seperaten Unterschriften" #: models.py:130 msgid "signature" -msgstr "" +msgstr "Unterschrift" #: permissions.py:13 msgid "Sign documents with detached signatures" -msgstr "" +msgstr "Dokument signieren mit seperaten Unterschriften" #: permissions.py:17 msgid "Sign documents with embedded signatures" -msgstr "" +msgstr "Dokument signieren mit eingebetteten Unterschriften" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Separate Unterschriften löschen" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "" +msgstr "Separate Unterschriften der Dokumente herunterladen" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "" +msgstr "Separate Unterschriften der Dokumente hochladen" #: permissions.py:33 msgid "Verify document signatures" msgstr "Dokumentenunterschriften überprüfen" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "" +msgstr "Details der Unterschriften des Dokuments" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." -msgstr "" +msgstr "Passphrase wird benötigt um den Schlüssel zu entsperren" #: views.py:77 views.py:182 msgid "Passphrase is incorrect." -msgstr "" +msgstr "Passphrase ist ungültig" #: views.py:98 views.py:202 msgid "Document version signed successfully." -msgstr "" +msgstr "Dokumentenversion wurde erfolgreich signiert." #: views.py:129 #, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "" +msgstr "Dokumentenversion \"%s\" mit seperater Unterschrift signieren" #: views.py:240 #, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "" +msgstr "Dokumentenversion \"%s\" mit eingebetteter Unterschrift signieren" #: views.py:267 #, python-format msgid "Delete detached signature: %s" -msgstr "" +msgstr "Separate Unterschrift löschen: %s" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "" +msgstr "Details für Signatur: %s" #: views.py:339 #, python-format msgid "Signatures for document version: %s" -msgstr "" +msgstr "Unterschriften für Dokumentenversion: %s" #: views.py:375 #, python-format msgid "Upload detached signature for document version: %s" -msgstr "" +msgstr "Seperate Unterschrift für Dokumentenversion hochladen: %s" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." +msgstr "Bei großen Datenbanken kann dieser Vorgang einige Zeit in Anspruch nehmen." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "" +msgstr "Alle Unterschriften der Dokumente überprüfen?" #: views.py:403 msgid "Signature verification queued successfully." -msgstr "" +msgstr "Überprüfung der Unterschriften erfolgreich eingereiht." #~ msgid "Signature status: %s" #~ msgstr "Signature type: %s" diff --git a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.mo index 8863c7d035a3a8335e220578c33ae8891e8eea4d..76295457a52435d38dc7a5edb2d43e5da94e855f 100644 GIT binary patch delta 23 ecmey%@|R`8Uv5J~T_a-!10yR_K`448J*gcq<7uVXnrKs{jA>A!dSKT&H<;i+62H)f(Av#|iRfErwfZJ2>a z(Zlmi7Z=)D7`4-j*oK!-H%{ROoWV+*!#qr7HF{71HejXWS*)Nx<~WVIZyx=)glqA) z%Ji7U?(cGea`qO z#<&NH%zl=s6}O{O+KKtt?Ktd=-$XWHY}CYeQ4e~Kx%dWkbn~c;c$l;j z>u?*M&LsbvxVXl^W}I|Bc!^rr0;(o{IQ>G>p#_$sj-VR#paZCRPN9V(7{J@8vww_C zVP2q$@-1?T=8N**#l<%UR0Bt-5bg9NDwTsye-hb*nZ}*?8e4D~w_pqT)=s;TA#)Wq z-x#V0?;(HY3IDXP8C0e|#JJGU=qu`r>D*m|`KX;9LZz$&b=FZV!7Heun?OD29oFJU z)O=o^qKs6aYTz(xzCPrnO&zV77E@Xj+Rawl4w@FC)v>0;m$svJsnB9tY0Q%d9osIN zjzjMcExw)>qUmRuj35_{G!-&yOaw;|OB9%Pq;t_rNTD-RG|_k;CC*rV)r7*LQLBm2 zu9KmiD^zScF8yqG)2e97fhP delta 1331 zcmX}sOK4L;6vpurO{?~%tybHru_m#tjj7S3rsjcE!O}$)syjhY3Pvf2o4Bw(2uSe- zx-bf^)q;o%CE~(`Qe4!n(1LChM2Lz?77F4<|KIJ@Av3?3n{*!M%x%5rd#wDvEqL1~ zdFlr0r-0cQK3Ymc`5ZLkV_#@I{DF=52fHxPV74A3xEu?(4EN$X+=r{Nh%0dt_4{iW zHY?jSon9WypeCrfaovqOSWSD0pcd|?X~qPu!W?RWQEbH{*o3E0^G%{Qei3z$8@LB6 z*u?raM`tY$K42VwV+Y1Kh8D_U21lIdu#fR$=Ude8v|0#Sum!`;1ZuuKDgp=GcwFDJ zzMY}dkC#z9uVOd8K<)UW8`p4vvA1Gjq9N4p#&8XmP@%ozp5H@0HcNAzw7x-tYDWo& zHeAFqhqV%&PCV4DG|@ap@h7%nJKI!lYE!!$Olte z7PB~vy71=}|4nqB@t_yqp)S#1)P$`JbjiY~+$B*P8$w0mAnGkRj(lv2W-H!8opc7{ zIEzYU9b@-U>x$$HLH3$k+bgDP4<2 z^Jx<*+MFK=)JAmw`~|eQa;LDSsVd6hX6hhS(NW0QxZYd8Y;!92IoB8cuCKeZovOEM zCsip~EJ}M+>l10eD4cy%y#YF@E+FaqUzX5QZdLS;N<|^m1xsk)ilV8aG%4gtuTrRc zqf2MQ`gsEjmBS1&Y91-(=zIgpK}Glg`z67ssd)L=4|kEYUvbiSJLo(8H{ Hn`^;;G23Z? 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 9efc77048f..3cc61a9523 100644 --- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-05-09 01:19+0000\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-23 06:48+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -32,10 +31,12 @@ msgid "Date" msgstr "Fecha" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "Identificador de clave" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "ID de firma" @@ -56,18 +57,22 @@ msgid "Passphrase" msgstr "Contraseña" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "¿Firma integrada?" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "Fecha de la firma" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "ID de llave de firma" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "¿Llave de la firma presente?" @@ -100,6 +105,7 @@ msgid "Key type" msgstr "Tipo de llave" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "Verificar todos los documents" @@ -165,11 +171,11 @@ msgstr "Integrado" #: models.py:88 msgid "Document version embedded signature" -msgstr "" +msgstr "Firma integrada de versión de documento" #: models.py:89 msgid "Document version embedded signatures" -msgstr "" +msgstr "Firmas integradas de version de documento" #: models.py:122 msgid "Signature file" @@ -177,11 +183,11 @@ msgstr "Archivo de firma" #: models.py:126 msgid "Document version detached signature" -msgstr "" +msgstr "Firma anejada de version de documento" #: models.py:127 msgid "Document version detached signatures" -msgstr "" +msgstr "Firmas anejadas de version de documento" #: models.py:130 msgid "signature" @@ -200,10 +206,12 @@ msgid "Delete detached signatures" msgstr "Borrar firmas separadas" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "Descargar firma aparte de documentos" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "Subir firmas aparte de documentos" @@ -212,6 +220,7 @@ msgid "Verify document signatures" msgstr "Verificar firmas de documentos" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "Ver detalles de firma de documentos" @@ -244,6 +253,7 @@ msgstr "Borrar firma aparte: %s" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "Detalles para la firma: %s" @@ -259,11 +269,10 @@ msgstr "Subir firma aparte para la versión de documento: %s" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" -"En bases de datos de gran tamaño esta operación puede tardar algún tiempo en " -"ejecutarse." +msgstr "En bases de datos de gran tamaño esta operación puede tardar algún tiempo en ejecutarse." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "¿Verificar todos los documentos para firmas?" diff --git a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.mo index 0757606e2dca9978580dc955fb9559cc696f9e32..5339cabc6033709c6d3bde98217906ffca61bbb4 100644 GIT binary patch delta 24 fcmcb^bBAX`EHk&Ep{|j!f`O5hsqy9v<}XYDT_gt> delta 24 fcmcb^bBAX`EHk%(iLQ~kf}x3(q2cBX<}XYDU1bLw 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 36a6eef3e2..fc81baf490 100644 --- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -28,10 +27,12 @@ msgid "Date" msgstr "تاریخ" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "شناسه کلید" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -52,18 +53,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -96,6 +101,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -196,10 +202,12 @@ msgid "Delete detached signatures" msgstr "حذف امضاهای جدا شده" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -208,6 +216,7 @@ msgid "Verify document signatures" msgstr "بررسی امضای سند" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -240,6 +249,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -258,6 +268,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "در پایگاه داده بزرگ این عملیات مدت زیادی بطول خواهد انجامید." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.mo index 611802732e8df2c672081fbcb8a5fbbe2e89e666..d78dac99aa3b4d7a61ebe2a71db5dcbd282b22af 100644 GIT binary patch literal 5026 zcmbW3ON<>y6+k<-!)Ib3gkR$DDI6P*6Zg!#@hA3k{GCrUWCl+>W21nw=;^NartN;+ zO;@+av&jY_1WQl^5}P0hVuV=nS-=Vn8;2c8EFzQz3y=^#n{ zpqTmylk(_13f~70!VkhjQ06}YKL9VoF}Msx-xr~*D}b`j6kdh}6uFgnx(chyST~@V%wJr=j>~x@ylrk^2IC4u(+d zc^!)X-hg87udDVwI8FO+Q1mE-MXm!s3~xa3>#gejS0JL!7TkKoaee|t->VoYep`dm zpF{EgYw$Dh`w$m6zkw{l`5lzF`2!Tc{1b}5A7{~G_YvsAWjFy}gH!OwQ0#jLir#%J z)`iC*ubj`r4%ATW_!boVzFYPG0Dgq_Pod2JR>eOC=C;4FL-%K7>Wl>IrtVnyGx@CbYn zivJ@h{`)p$o2~E9Lh-Sbb5!xa=w`{*W|rb`EbV?BhEm3hBxQDwhmua8qdNfrMM3*lpnqdsq+%0Ka~Ewf&(9r;rx z?8iEAW_6_Hm4ym)?)mFFu)SVhWV)-4ng{nvS2@Bygi-kds$P=auO;z|fsXU$HPXX( zcXVdLBp!LOi%ENt8P%-xU`+=>du^kNMrC$UB%ZUr8697DJz$v3UiiK?rdLGK<^&ox z;wbUhhw7nOZ!mOCOX*y-2InQcDOD}ZT6j@E$-;bnU|W8sy&Pw%Kz3Wi^xZVf?t9k@ zsC+#%DoJ&vd*E%V z+`CP1B?GPUQ2r7o*M5=f31`_eCSA`M*?LrH2xC9VGVSMW8R>|%mK{S$ft&o><%G92 zo?9-~qR>}7tM*D(*qqvjPT3kdvWhWv_^3IoHgK2nYSAVr_b_NQOm+@3rS{R&WOkJs zRaeOkJM1VMa3}4oRYL#?_dc#^S=`QItid!=EqqCePw}^0eA#gE9a$Q#~ zd7ECW=4O{x#;)r$$#Qqe^uxftTJ(*(nsn9J^0ifWraI29*|wt}M?j z&aGZkFRV#>!uL|S5t7T^8rj5XubA+Y!9|A0{le>OcU60XuA0wu?60fw^*m3zlam`8 z8xy(c4tx5p44BLk<7HuzO_CbC*ww+nOh%QC$zC>jd~9i9X|C}|XJTq>CW&)m(Ukz{ zs$AdAC)3Ca#U5n7ijfBXzkE%56wz_EL2d`5hqbv&eM8V zi;{rt6qUm2oa`81%aSrmVT`oXKUA8;oo{dTGnTv;aY^(;`Mv4igAGQdNs)=C9&YLb zRVmCb*d{Kh)$OfldrP8>n{j7LMLV~!aZ}6X3&Z6(Gw5*^W-G7w(z-Idqldn-Z{O9uIy_?RtLCR4rN3(iA(miJ};dpA?QLff1kz-_M5F=*zvz^B4&CZe{j3Pcz zN|WqjcX5hJ(o@Iy>?=A=0kry#7D$IBe~d4ee9B}*^8F;OU^<-7U!G6 zBZ-fi(p^a9Nnxzrb#JTlzV)=C-?^ED91q;s+)M2Z*>R85W;p)? Df7q?# delta 730 zcmYMw&ubGw6bJCBHi_A6Oie@Q~R@9snst^^SZ4RY)=rlV`7dE?bc0=2P z?Li6!j}K2?L{IVRQE%}Nun0;I_MjIPkAf|D@cT9^4!r%$?wgtSW?x)*V{RYhd!Gu7 zB4P;f7BP%?(1QoYd)N#2U=n_WgYYvv0S{pc_8b$U0MoD!4ntmd8J>X^$m>$Fr$V{J32BNyzRCLZ5pod10 zUK{r_lQR=jSFO@axl|%Eb2fgxR-T%^G>Ku{lR-F9)zS-G8Tz_x&HF1#hdvCXc6{2% z{75gfnoaFAl%|*FbviPy(6{W(v1+I7cG|Tysq0FMiWhd;b=_%;%B*E8%av9QX`0I| gjox-@YmUg@3cS>+kt-nlB9g1u+PE0{{R3 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 ba4025dbb9..f575ff469c 100644 --- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Bruno CAPELETO , 2016 +# Christophe CHAUVET , 2015 # Christophe CHAUVET , 2015 # Pierre Lhoste , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-04-27 18:23+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-05-23 19:54+0000\n" +"Last-Translator: Bruno CAPELETO \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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -30,12 +31,14 @@ msgid "Date" msgstr "Date" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID de la clé" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "" +msgstr "ID de la signature" #: apps.py:99 forms.py:83 msgid "None" @@ -47,59 +50,64 @@ msgstr "Type" #: forms.py:23 msgid "Key" -msgstr "" +msgstr "Clé" #: forms.py:27 msgid "Passphrase" -msgstr "" +msgstr "Phrase secrète" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" -msgstr "" +msgstr "La signature est-elle intégrée?" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" -msgstr "" +msgstr "Date de la signature" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "" +msgstr "Identifiant de la clef de signature" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "" +msgstr "Clé de signature présente?" #: forms.py:73 msgid "Key fingerprint" -msgstr "" +msgstr "Emprunte de la clef" #: forms.py:77 msgid "Key creation date" -msgstr "" +msgstr "Date de création de la clé" #: forms.py:82 msgid "Key expiration date" -msgstr "" +msgstr "Date d'expiration de la clé" #: forms.py:87 msgid "Key length" -msgstr "" +msgstr "Longueur de la clé" #: forms.py:91 msgid "Key algorithm" -msgstr "" +msgstr "Algorithme de la clé" #: forms.py:95 msgid "Key user ID" -msgstr "" +msgstr "Clé de l'ID utilisateur" #: forms.py:99 msgid "Key type" -msgstr "" +msgstr "Type de clé" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "" +msgstr "Vérifier tous les documents" #: links.py:39 msgid "Signatures" @@ -115,7 +123,7 @@ msgstr "Détails" #: links.py:57 msgid "Signature list" -msgstr "" +msgstr "Liste des signatures" #: links.py:63 msgid "Download" @@ -127,11 +135,11 @@ msgstr "Transférer une signature" #: links.py:75 msgid "Sign detached" -msgstr "" +msgstr "Signature détachée" #: links.py:81 msgid "Sign embedded" -msgstr "" +msgstr "Signature intégrée" #: models.py:31 msgid "Document version" @@ -139,11 +147,11 @@ msgstr "Version du document" #: models.py:35 msgid "Date signed" -msgstr "" +msgstr "Date de signature" #: models.py:45 msgid "Public key fingerprint" -msgstr "" +msgstr "Emprunte de la clef publique" #: models.py:51 msgid "Document version signature" @@ -163,11 +171,11 @@ msgstr "Intégré" #: models.py:88 msgid "Document version embedded signature" -msgstr "" +msgstr "Signature intégrée de la version du document" #: models.py:89 msgid "Document version embedded signatures" -msgstr "" +msgstr "Signatures intégrées de la version du document" #: models.py:122 msgid "Signature file" @@ -175,99 +183,102 @@ msgstr "Fichier de signature" #: models.py:126 msgid "Document version detached signature" -msgstr "" +msgstr "Signature externe de la version du document" #: models.py:127 msgid "Document version detached signatures" -msgstr "" +msgstr "Signatures externes de la version du document" #: models.py:130 msgid "signature" -msgstr "" +msgstr "signature" #: permissions.py:13 msgid "Sign documents with detached signatures" -msgstr "" +msgstr "Signer les documents avec des signatures externes" #: permissions.py:17 msgid "Sign documents with embedded signatures" -msgstr "" +msgstr "Signer les documents avec des signatures intégrées" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Suppression des signatures détachées" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "" +msgstr "Télécharger les signatures externes du document" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "" +msgstr "Transmettre les signatures externes du document" #: permissions.py:33 msgid "Verify document signatures" msgstr "Vérifier les signatures du document" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "" +msgstr "Voir le détails des signatures du document" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." -msgstr "" +msgstr "Une phrase secrète est nécessaire pour déverrouiller cette clé" #: views.py:77 views.py:182 msgid "Passphrase is incorrect." -msgstr "" +msgstr "Phrase secrète incorrecte" #: views.py:98 views.py:202 msgid "Document version signed successfully." -msgstr "" +msgstr "Signature de la version du document réussie." #: views.py:129 #, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "" +msgstr "Signer la version \"%s\" du document avec une signature externe" #: views.py:240 #, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "" +msgstr "Signer la version \"%s\" du document avec une signature intégrée" #: views.py:267 #, python-format msgid "Delete detached signature: %s" -msgstr "" +msgstr "Supprimer la signature détachée: %s" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "" +msgstr "Détails de la signature: %s" #: views.py:339 #, python-format msgid "Signatures for document version: %s" -msgstr "" +msgstr "Signatures pour cette version du document: %s" #: views.py:375 #, python-format msgid "Upload detached signature for document version: %s" -msgstr "" +msgstr "Transférer une signature détachée pour la version du document: %s" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Sur de grosses bases de données, cette opération peut prendre un certain " -"temps." +msgstr "Sur de grosses bases de données, cette opération peut prendre un certain temps." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "" +msgstr "Vérifier la signature des documents?" #: views.py:403 msgid "Signature verification queued successfully." -msgstr "" +msgstr "Vérification de la signature ajoutée à la file d'attente" #~ msgid "Signature status: %s" #~ msgstr "Signature type: %s" diff --git a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.mo index cb7faf331f8d1ae342f7fbbc8d8db8f588c99cb5..41a1aa6146933863b45868edaa5dd352796c0df3 100644 GIT binary patch delta 24 fcmX@fdXja69wWD*p{|j!f`O5hsqtn@#tDo7Q(6Wc delta 24 fcmX@fdXja69wWDbiLQ~kf}x3(q2Xpr#tDo7Q=0}L 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 56220d2e2e..0180d893cc 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -28,10 +27,12 @@ msgid "Date" msgstr "" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -52,18 +53,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -96,6 +101,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -196,10 +202,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -208,6 +216,7 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -240,6 +249,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -258,6 +268,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "A nagy adatbázisok esetében a művelet sokáig is tarthat." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.mo index d79685738217d2d314d27b9bbcc7dc5682c791fc..3667e8c27963e5b2890f0a1dcf1eb8155b42ee0e 100644 GIT binary patch delta 24 fcmdnNx`TCtAS1V-p{|j!f`O5hsqtnR#yN}tP00n# delta 24 fcmdnNx`TCtAS1VdiLQ~kf}x3(q2Xp3#yN}tP6`Fk 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 0f02a2d084..d5e39cb143 100644 --- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -28,10 +27,12 @@ msgid "Date" msgstr "" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -52,18 +53,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -96,6 +101,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -196,10 +202,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -208,6 +216,7 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -240,6 +249,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -255,11 +265,10 @@ msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Pada database yang besar pekerjaan berikut mungkin akan membutuhkan waktu " -"untuk dilaksanakan." +msgstr "Pada database yang besar pekerjaan berikut mungkin akan membutuhkan waktu untuk dilaksanakan." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.mo index e7032207eea4790b9c5691b18499bbd465829ed4..58b430eeda592b7075f146e45212a62acf4ac29a 100644 GIT binary patch literal 4713 zcmb7`OKe?78OJA0O2LFz3lvfy)0DIh?YR#pEy+zChuRJp;?yJ#3lN~W=gvKMn)B*; z#Buh3U`bU}35kc;0D=_{RUj4>u!zJ4#D*eu(G3z0i6t8<{{K019`<#lGVFTi($cfd!$SHX{hZ@Bg&P|EfvLFx;^hrq9aC&3?p)PKjd|K!^L z0cq+XEQ(KYFZd4dDEJ=m7|8XX0N({(1Q)<9kovv=a$ggW`%J-$U@liN|@x9`hgD22_$?@0V zS+rjR;bQS1HqY_nAmj54$oO6XY4>%I`}{J<_@p5B`E~Gp;CI~k&q2=ry=(swr2f~z ztKi>3?spl+bDy6AKMn>U^?n!RIxoBaJK%Y=522I$SqACnG01%TDoDS*1XAz!LHvoI z;D`SE4M_j|89WaD4WxbdVe-eo2S6MNaRH?N)D&xq)c(X`U`jo}1V1IcJ zvCv=i3FG!OD*ZwqurMa{BYn;DN?)BqWz2cM)CK8a3-2D52T_?1bz#hHSyP1;{E@i{ zVm%RSI@Ij4kP}@ff2JpPR25~WNAhHT_fZa2Gwg>6s}4|3lWf11#4jTq7i~AB>%N;h z%S{r`bsS*Qn~|BMdhZ-(wNjjNZwuk(CbhT(1x8g}9^ zQHX>4X!kp*UDHvz?)D%)qjy>5#+ro+gCsM>EV3;>)2e_o<%H3un7);oY+v8h#DUJz z%*2J233VJ4Gy7TWrq#SM*BRHilEhj(8_Q5-fu>qDR=Lh)F*CVLQtfm{YF8HO29hg@ zv@8sN5-hI$vd}%TrSd$TWtiFdl+a*eKglxf7hM?+#9A|AP*TE8{*7wE8ycS5D#xMm zCB9{MC)W_1#)qP6)sA#ICQqEqPskm(OR7e+P0BYhX+BN%PRc9o^QS34P;OqGldA{p zESqu+1~*kTY<%11)P%Y-3jfs#Ryy7E*d8tHNHd+|Xm;g7lNX(7aGseOze=L#OI^<8 za$`tky*07A2bxrN5wMraHk0gn%It5W&`9R>Ci6L&X2{+#&5W*Yr?!z4pQH7=QiY*x zChWPP@|A;R^18E`)TqRe(L2_1UU$i~RoszjKE+m+JckVTHYOg7;axY9n`&3Za(!*{ z+QLJrlH=h+~AzIbVd$OkA~+SAD}E;R(auVXDZG^RU{d0$oxdEswfSS0`lpI?Vj)2 zy~w{9M9PFcKZ!12b{v!{(B8II(MWC-Dm2)^;;bmrQNO>lv(qc6+f4N>&gf@Jt}>Hk zeOwJH_Vgsm`=L|PH%0%{!sf>2dh3y4Z?LeM#07HEV}guip>GxaG*l)&Fa4Rya$PK6 z-@fFXZRNP)RA=5gu8|3DwUInKHbrCXNTRV7mYE8@OGy^xBN?Z*nJ+J$m(}O;Vk{qC zmcvu$7x+FZ`-7V$i!FEETn*`Z2yZJ6lJaqK5a`qBN z5@I(U!N!itu2x7NB-9#9e>orRv9I0_)`y5bP~>vgfIXZ0?GGh<2?M8e0qEnEb1!Pr z6W4qso3CnGDLh7gQbnotp%EK=a;n{m)tON@wb)pb?&}lPa~dVcI6K6QfM+FN*4s83 z-GSU!6CK}%HBM2KX2@YaF7$%yycMND(S`+f&CvmqyFL~!vk_FMo-TDKRo_(zo7tzRJras3 z#B;Le_PB&s*=2&YM8N5lNpNqYY=v`O3LsRC!6R#x*|+4s3>$_V+B zKs|Oh*?&xEVzonE-#-Vtzj~*Urnmxmu$=BDe%%A*BpQD=LP(qHj%(MbFBPl5qgpk) yKu)>Kp)#>3i^9mxrRAP$8Z|f8XlZWNy>}$W;bQ!EX76Gfo9ZHJ_mhY!0{;WF&J!B| delta 725 zcmYk(KWGzC9Ki8cZIb44Z8Z(zpQcUKp`ewf7L*_;v{s_x&}ML`;OpHJ1DCsaISn1O zh>MHUqoYe#M;8Ytad8k8r66LV2!iP7pqt;{C4)ci-RJ#(zjycJ_(OMNr#QH&h!SO- z@{&@ftPb!Z-s2#Cz$|X#Vf>0i_y==1ut%ve%;P>Rqs%*nN3f1E-}DWU{WesWiX89& zFW@5_!Pn^EN0jj$l#RckZ2TLaaQNun-uP1{$pKq<0H2|(f7S1Qi=(u+v54RCDCeuc zX@%QodN(*fz;JF2nXHg?iEWbZg7``o!!n4O=Q zJ5#C7*Q!9z-PHF?rM_r)M^>kont`eKvbb`q Y8Mm}r;%!u;*^bmgy13VGCyG=50PNj!$N&HU 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 f4b5d5ef2b..c7f2f178eb 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po @@ -1,24 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 +# Marco Camplese , 2016 # Pierpaolo Baldan , 2012,2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-04-27 18:23+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-09-24 13:19+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -30,12 +30,14 @@ msgid "Date" msgstr "Data" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" -msgstr "chiave ID" +msgstr "ID Chiave" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "" +msgstr "ID Firma" #: apps.py:99 forms.py:83 msgid "None" @@ -47,59 +49,64 @@ msgstr "Tipo" #: forms.py:23 msgid "Key" -msgstr "" +msgstr "Chiave" #: forms.py:27 msgid "Passphrase" -msgstr "" +msgstr "Passphrase" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" -msgstr "" +msgstr "La firma è integrata?" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" -msgstr "" +msgstr "Data firma" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "" +msgstr "ID chiave di firma" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "" +msgstr "La chiave di firma è presente?" #: forms.py:73 msgid "Key fingerprint" -msgstr "" +msgstr "Impronta della chiave" #: forms.py:77 msgid "Key creation date" -msgstr "" +msgstr "Data di creazione chiave" #: forms.py:82 msgid "Key expiration date" -msgstr "" +msgstr "Data scadenza chiave" #: forms.py:87 msgid "Key length" -msgstr "" +msgstr "Lunghezza chiave" #: forms.py:91 msgid "Key algorithm" -msgstr "" +msgstr "Algoritmo chiave" #: forms.py:95 msgid "Key user ID" -msgstr "" +msgstr "ID chiave utente" #: forms.py:99 msgid "Key type" -msgstr "" +msgstr "Tipo chiave" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "" +msgstr "Verifica tutti i documenti" #: links.py:39 msgid "Signatures" @@ -115,7 +122,7 @@ msgstr "Dettagli" #: links.py:57 msgid "Signature list" -msgstr "" +msgstr "Lista firme" #: links.py:63 msgid "Download" @@ -127,11 +134,11 @@ msgstr "Carica firma" #: links.py:75 msgid "Sign detached" -msgstr "" +msgstr "Firma scollegata" #: links.py:81 msgid "Sign embedded" -msgstr "" +msgstr "Firma incorporata" #: models.py:31 msgid "Document version" @@ -139,11 +146,11 @@ msgstr "Versione documento" #: models.py:35 msgid "Date signed" -msgstr "" +msgstr "Data firma" #: models.py:45 msgid "Public key fingerprint" -msgstr "" +msgstr "Chiave pubblica impronta" #: models.py:51 msgid "Document version signature" @@ -163,11 +170,11 @@ msgstr "Incorporata" #: models.py:88 msgid "Document version embedded signature" -msgstr "" +msgstr "Firma incorporata versione documento" #: models.py:89 msgid "Document version embedded signatures" -msgstr "" +msgstr "Firme incorporate versione documento" #: models.py:122 msgid "Signature file" @@ -175,99 +182,102 @@ msgstr "File della firma" #: models.py:126 msgid "Document version detached signature" -msgstr "" +msgstr "Firma versione del documento distaccata" #: models.py:127 msgid "Document version detached signatures" -msgstr "" +msgstr "Firma distaccata versione dei documenti" #: models.py:130 msgid "signature" -msgstr "" +msgstr "firma" #: permissions.py:13 msgid "Sign documents with detached signatures" -msgstr "" +msgstr "Firma documenti con firme distaccate" #: permissions.py:17 msgid "Sign documents with embedded signatures" -msgstr "" +msgstr "Firma documenti con firma integrata" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Elimina firme allegate" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "" +msgstr "Scarica firme scollegate documenti" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "" +msgstr "Carica firme scollegate documenti" #: permissions.py:33 msgid "Verify document signatures" msgstr "Verifica la firma del documento" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "" +msgstr "Vedi dettagli delle firme documento" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." -msgstr "" +msgstr "è richiesta la passphrase per sbloccare questa chiave." #: views.py:77 views.py:182 msgid "Passphrase is incorrect." -msgstr "" +msgstr "La passphrase non è corretta." #: views.py:98 views.py:202 msgid "Document version signed successfully." -msgstr "" +msgstr "La versione del documento è stata firmata con successo." #: views.py:129 #, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "" +msgstr "Firma la versione del documento \"%s\" con firma allegata" #: views.py:240 #, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "" +msgstr "Firma la versione del documento \"%s\" con la firma integrata" #: views.py:267 #, python-format msgid "Delete detached signature: %s" -msgstr "" +msgstr "Cancella la firma allegata: %s" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "" +msgstr "Dettagli per la firma: %s" #: views.py:339 #, python-format msgid "Signatures for document version: %s" -msgstr "" +msgstr "Firme per la versione del documento: %s" #: views.py:375 #, python-format msgid "Upload detached signature for document version: %s" -msgstr "" +msgstr "Carica la firma scollegata per la versione documento: %s" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di " -"tempo." +msgstr "Per un database di grosse dimensioni l'operazione protrebbe aver bisogno di tempo." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "" +msgstr "Verificare le firme per tutti i documenti?" #: views.py:403 msgid "Signature verification queued successfully." -msgstr "" +msgstr "Verifica firme messo in coda con successo." #~ msgid "Signature status: %s" #~ msgstr "Signature type: %s" diff --git a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.mo index ba7e25e138ceb04987762fdb50f301ccf7b0cff1..c3ff84a49d5c702aa8cd5b0e1974a273cc002800 100644 GIT binary patch literal 1831 zcmZ9LO^6&t6vtbQU*mWDiqS)P2<$37AG;FJ&7sOoLY5WINsAOSCWQ4mRPf>-~qrzbO7Q2pzwdR6cLUe){c=#h^C zv}e(uL;oB71p1G6;DdJc&LB7fO7I@A58el6;Jx4&d>niSd=$J^u76hYI(Qf6zXW;z zS0LMe3s%6NK|b#{kp27#o&#@z4}n!|eh@qhJ`A=?z5%koq#RE{KJR^y&$(8ve+)i> z@#o4+0Ta{>-iLX3j6|Ozu%SfKY{G$7m(xsy&T^Jk7E1} z$hs>Cmd`r|vYr#*N$>@bbzcP^0p9}I&$}S!t{IyyGB!RQ41w)LTn}vq$4N% zAa%mzRPN8@On5mY;Y>!tr~EO3rqmmGss{UzDQF>sM}=q>vK$l|mcxFkXk~Rc*S%a< zsq@Qq7j#+f<(wm4rX{#SHto-ZR7%8U(p=yc0)jnj4yotEb{xWz(-w)2oJlQO&CY)1 z66MDFu;Y?64qq81F6^2}RQ4`*!}FGk)P;Oek=Up=PKAv|xUnhf8_~(lu>MlL4#V&g zjZ;4Ne|GgVqH!wPJo925t+FGX54%=sr=&MF60I?*^iYd^DV0z4P@JXtj4LP3B^h2q zwP&)Iv0Eo2nNZjznMI;G^1Xpr+a*6BtE7(Ix>y@{pGURYWHPCG_LKH$%DZdUIB8R3 zYq&zGLy9w3!=~cEnpSV_?$p*Ropz_SOi-g*ubem9;{k@8^+Le1U4^n?ydn5{9l|41GQiT_c%^c?PV(7Lvw#58*drgby zw?$)ps}dmdql|BOk{-rngB{}%8k#&O6$h_Uf|TiHT?~*3PeamhPFx-H5-O?%m9{9B zHddW72rk%Hgx9MU4EeRrr?5#GljFsX7E?vx;K9xfoWZ++2ApyQzXCrZu{ia135g*d zSxj%!qKXJLrV|mPm~}PivQoiPOEIsl$Y&)*@M4TZRs#!G%?`+U?E24~aC3ot#HuY` j8_H>Q2GWa?TAdT4qP{pPuB(*Da%mx|GMiXgwGaLUYmwCP delta 308 zcmZ3^_m8#yo)F7a1|VPqVi_Rz0b*_-t^r~YSOLT!xs^c74#XRPm;;D+05J;?9|U3t zAU+1f^BI9^fS41=Ud{wjw-HM30@5J$hk>*ykUjyVfl3{LOa=yKAO=Z-ECK!jS S5rcbbdTLo}9+FKeY&HPhUOBY@ 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 12765a7dd9..066f1c5c20 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 @@ -1,39 +1,41 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-04-27 18:23+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-09 16:39+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" -msgstr "" +msgstr "Documenthandtekeningen" #: apps.py:91 msgid "Date" -msgstr "" +msgstr "Datum" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" -msgstr "" +msgstr "Sleutel-ID" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "" +msgstr "Handtekening-ID" #: apps.py:99 forms.py:83 msgid "None" @@ -41,29 +43,33 @@ msgstr "Geen" #: apps.py:102 msgid "Type" -msgstr "" +msgstr "Type" #: forms.py:23 msgid "Key" -msgstr "" +msgstr "Sleutel" #: forms.py:27 msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" -msgstr "" +msgstr "Datum van handtekening" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "" +msgstr "Handtekening sleutel-ID" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -77,11 +83,11 @@ msgstr "" #: forms.py:82 msgid "Key expiration date" -msgstr "" +msgstr "Sleutelverloopdatu" #: forms.py:87 msgid "Key length" -msgstr "" +msgstr "Sleutellengte" #: forms.py:91 msgid "Key algorithm" @@ -93,15 +99,16 @@ msgstr "" #: forms.py:99 msgid "Key type" -msgstr "" +msgstr "Sleutelsoort" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "" +msgstr "Verifieer alle documenten" #: links.py:39 msgid "Signatures" -msgstr "" +msgstr "Handtekeningen" #: links.py:46 msgid "Delete" @@ -113,7 +120,7 @@ msgstr "Gegevens" #: links.py:57 msgid "Signature list" -msgstr "" +msgstr "Handtekeninglijst" #: links.py:63 msgid "Download" @@ -121,7 +128,7 @@ msgstr "Download" #: links.py:69 msgid "Upload signature" -msgstr "" +msgstr "Handtekening uploaden" #: links.py:75 msgid "Sign detached" @@ -129,11 +136,11 @@ msgstr "" #: links.py:81 msgid "Sign embedded" -msgstr "" +msgstr "Teken ingesloten" #: models.py:31 msgid "Document version" -msgstr "" +msgstr "Documentversie" #: models.py:35 msgid "Date signed" @@ -153,11 +160,11 @@ msgstr "" #: models.py:71 msgid "Detached" -msgstr "" +msgstr "Losgekoppeld" #: models.py:73 msgid "Embedded" -msgstr "" +msgstr "Ingesloten" #: models.py:88 msgid "Document version embedded signature" @@ -169,7 +176,7 @@ msgstr "" #: models.py:122 msgid "Signature file" -msgstr "" +msgstr "Handtekeningbestand" #: models.py:126 msgid "Document version detached signature" @@ -181,7 +188,7 @@ msgstr "" #: models.py:130 msgid "signature" -msgstr "" +msgstr "Handtekening" #: permissions.py:13 msgid "Sign documents with detached signatures" @@ -196,10 +203,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -208,6 +217,7 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -240,6 +250,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -258,6 +269,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "Voor een grote database kan deze operatie lang duren." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.mo index bf7d1de1ebb622495d565605894d79d2e182f760..9097a5b7f7f6af792ebcc3587fcfcfba97b4b7f7 100644 GIT binary patch delta 24 fcmaFI@s4AIEfcq)p{|j!f`O5hsqtnHCN(AiTOS4_ delta 24 fcmaFI@s4AIEfcqaiLQ~kf}x3(q2Xo^CN(AiTVMt! 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 9bc59e199d..d6762f34f8 100644 --- a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -30,10 +28,12 @@ msgid "Date" msgstr "Data" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "Key ID" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,18 +54,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -98,6 +102,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -198,10 +203,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -210,6 +217,7 @@ msgid "Verify document signatures" msgstr "Verify document signatures" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -242,6 +250,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -260,6 +269,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "Na dużych bazach danych operacja może chwilę potrwać." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.mo index 4204ec5d24aaf24dec625173a5291ce313359f5b..e95fd256603e6573ec4380d7827fc68132343568 100644 GIT binary patch delta 24 fcmdnbv7cju5)-$fp{|j!f`O5hsqtoACLtyOP#6V# delta 24 fcmdnbv7cju5)-$9iLQ~kf}x3(q2Xp-CLtyOP+0|k 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 a05e54a2e5..60ae06c37e 100644 --- a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Vítor Figueiró , 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -29,10 +28,12 @@ msgid "Date" msgstr "Data" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID da chave" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,18 +54,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -97,6 +102,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -197,10 +203,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -209,6 +217,7 @@ msgid "Verify document signatures" msgstr "Verificar as assinaturas do documento" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -241,6 +250,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -259,6 +269,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "Esta operação pode levar algum tempo em bases de dados grandes." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.mo index 8fa2794d8cf8f852088d2eb5d26c044aa1615608..87da528bb53e1583c113c27b2b013d18f90f2074 100644 GIT binary patch literal 4934 zcmb7`ON<;x8OJLx0*iUXkU*ROg@ehOq-S>5cH+#&Uhm6cNj6^WF$bau)y~w+wB6G^ zuIklUe zs{ZP$ufF=~tNz2`+n*OGXHf4)z5P}pE`fi&4Sy)7??4~;82EnhEchPq3*aZfFM>zF z1bi>}9q>-@Iq+WaN8m@m*T4^hH^2wLx4_SU|MBeypp@+=KE9;E+X1ZnSYeESACgZAG*>X8tp+%))6@G?lhUh)0k03j-V0=|BW5I+a0 zFM^SW!D}FvD!vX%@O$8=z*j+zdlSSG#P7jRf`0_L-~R-sgw_-24-yAMU}X zV+!#g_%ZMlNd2qe1+WcL?@J)%UjaW0{t{$7z5{YScjDza@P2Rsd=?DA7d?LqQtn?M ze&Q|!AMHB|-VL7ed=jLe6v*@QHIU7@Pi3GF$G%0gW&RH$`@ zu`r9uvp~OduTP-Ppz=HxWf~8sP`MT?#TCXC_u$j0^aXPd3(qObBdE8c(r+w`Hx`M? zwXo0^Md7+xc?z}z@eh!r}#=;n)AL-kZsEirL7h{+4R}_SeD~ur)#>}JcDgR?k zxU!^DE%+yG*pGErEa^zI%RzQ^syYMRb#GOg8Qqe{?7?sODj(qKsHmTqFdYnCt7EiE;Y``(Zc|Ke zjY6}huNTIBZAK=HQzsMYxStN(W4b-c$7NO<&hc~-YjGi#kurTvwQ5~iZDl$LtxQJR z>mI6YnX0P@u4JfX8uBl}rvQ|c$W2*T*Bs*J`{PYaHNkhdGwe)DmURSsY=l*C~soWc$n-SWOMD~ zr^)UsH?Gdh6))T<7joPTE-G)h{jHk4Fw(WR@L!=|uGUSD?b5=IkG{MZ#v7F?vh@mxF%CRiZzp5L4*e@-2lcg z*R|xT+E%e#URu30aZ!&FlLo7{A9jO-)QMo~xtJYS@x%us7>xh#NV%VANN`=(wC5r0J;DY;JCD zHd0O!_VgANG)-ca2@}&qj!zyx8e&0(TgrIUR8_9p<9g)UEDgJfSRAMgEmoH3VnivP=kx1%=)9hH zF{-GbV?wp_va_p@E?(uA_MVq3L#FC{Az>e97748w*j7Uo4{DRN!x37Tq_jxO%w{`3 z#!0M(J+0$GHWbT4iA{)8=PzDLLpAB&?hnUF4YJS-( z(-4=SR^|W21)r*h*!eaun@(sGi5q92e2CNQ)R)`Z5bv^1Iof%HcfS(VIjDBUcT&~9 zJMJ!j?sPUh-~{AajT894RFr{R+E50Xb-`6-k6lNonDAYsOVzf%=(5*GTcv-$gf(xj zW#NVkh?-zNIX?9jcFCX9xq9?6P-^lnx_9>#Uk`dtJcW-27uVGYcZ%JogAZk0Q%Aqx z!w$It-zxZ!ix468p_O%IF5GWR@(&6`yI55CknA&(cI8N)kN2j_O1dUr#Zr-e51cad zpD#&mI1`dvuEBRJj}Lyeoy{|PWt{)+KsfI!U(<%`dH14fYAFW0{jITU$Cv=B`9-Bd F{14sEcPRh> delta 712 zcmYMwziSjx5C`x%&E4g8*IeA3Vl+!u#ET%2Ts%;&GMW^pq7YJ8SokjckcGQ_$^P(? zLQ|wrYzJHa0Z=XgmP*@4sW1+2l(P!9eEC*gM}!;Y4T zPT_p=ketSY1t=5Vh4MiJZ8$8RZ^N6oe+-YnPsRQZh??{VO5qZUG~rQ*{_-XJ@^{cH zq3?XjaCB=g&nLt8`Q&o=Aw<2{lcKU@IycYuFNcvzlMX_fmx*anrJB3tll-XMsG8Mm zpre%URHpc2+2#9{GZVw8Z&W}_gPslo9ndws$^Gh8c525e39W3dX`Z$wdEIL8j&;MH zYtPPK@LTOptHqA(wTk}UxZruO? 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 fcddca370e..c0e3f7f3b5 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 @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Aline Freitas , 2016 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-04-27 18:23+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-17 22:53+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -29,12 +29,14 @@ msgid "Date" msgstr "Data" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID da chave" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "" +msgstr "ID da assinatura" #: apps.py:99 forms.py:83 msgid "None" @@ -46,59 +48,64 @@ msgstr "Tipo" #: forms.py:23 msgid "Key" -msgstr "" +msgstr "Chave" #: forms.py:27 msgid "Passphrase" -msgstr "" +msgstr "Senha" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" -msgstr "" +msgstr "Assinatura integrada?" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" -msgstr "" +msgstr "Data da assinatura" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "" +msgstr "ID da chave da assinatura" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "" +msgstr "Chave da assinatura presente?" #: forms.py:73 msgid "Key fingerprint" -msgstr "" +msgstr "Impressão digital da chave" #: forms.py:77 msgid "Key creation date" -msgstr "" +msgstr "Data de criação da chave" #: forms.py:82 msgid "Key expiration date" -msgstr "" +msgstr "Data de expiração da chave" #: forms.py:87 msgid "Key length" -msgstr "" +msgstr "Tamanho da chave" #: forms.py:91 msgid "Key algorithm" -msgstr "" +msgstr "Algoritmo da chave" #: forms.py:95 msgid "Key user ID" -msgstr "" +msgstr "ID de usuário da chave" #: forms.py:99 msgid "Key type" -msgstr "" +msgstr "Tipo de chave" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "" +msgstr "Verificar todos os documentos" #: links.py:39 msgid "Signatures" @@ -114,7 +121,7 @@ msgstr "Detalhes" #: links.py:57 msgid "Signature list" -msgstr "" +msgstr "Lista de assinaturas" #: links.py:63 msgid "Download" @@ -126,11 +133,11 @@ msgstr "upload do assinatura" #: links.py:75 msgid "Sign detached" -msgstr "" +msgstr "Assinatura destacada" #: links.py:81 msgid "Sign embedded" -msgstr "" +msgstr "Assinatura integrada" #: models.py:31 msgid "Document version" @@ -138,11 +145,11 @@ msgstr "Versão do Documento" #: models.py:35 msgid "Date signed" -msgstr "" +msgstr "Data da assinatura" #: models.py:45 msgid "Public key fingerprint" -msgstr "" +msgstr "Impressão digital da chave pública" #: models.py:51 msgid "Document version signature" @@ -162,11 +169,11 @@ msgstr "embutido" #: models.py:88 msgid "Document version embedded signature" -msgstr "" +msgstr "Versão do documento da assinatura integrada" #: models.py:89 msgid "Document version embedded signatures" -msgstr "" +msgstr "Versão do documento das assinaturas integradas" #: models.py:122 msgid "Signature file" @@ -174,98 +181,102 @@ msgstr "Arquivo de assinatura" #: models.py:126 msgid "Document version detached signature" -msgstr "" +msgstr "Versão do documento da assinatura destacada" #: models.py:127 msgid "Document version detached signatures" -msgstr "" +msgstr "Versão do documento das assinaturas destacadas" #: models.py:130 msgid "signature" -msgstr "" +msgstr "assinatura" #: permissions.py:13 msgid "Sign documents with detached signatures" -msgstr "" +msgstr "Assinar documentos com assinaturas destacadas" #: permissions.py:17 msgid "Sign documents with embedded signatures" -msgstr "" +msgstr "Assinar documentos com assinaturas integradas" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Excluir assinaturas desanexados" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "" +msgstr "Baixar assinatura destacada de documentos" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "" +msgstr "Carregar assinaturas destacadas de documentos" #: permissions.py:33 msgid "Verify document signatures" msgstr "Verificar as assinaturas de documentos" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "" +msgstr "Ver detalhes da assinatura de documentos" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." -msgstr "" +msgstr "É preciso senha para acessar a chave." #: views.py:77 views.py:182 msgid "Passphrase is incorrect." -msgstr "" +msgstr "Senha incorreta." #: views.py:98 views.py:202 msgid "Document version signed successfully." -msgstr "" +msgstr "A versão do documento foi assinada com sucesso." #: views.py:129 #, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "" +msgstr "Assinar a versão do documento \"%s\" com uma assinatura destacada" #: views.py:240 #, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "" +msgstr "Assinar uma versão do documento \"%s\" com uma assinatura integrada" #: views.py:267 #, python-format msgid "Delete detached signature: %s" -msgstr "" +msgstr "Excluir assinatura destacada: %s" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "" +msgstr "Detalhes para a assinatura: %s" #: views.py:339 #, python-format msgid "Signatures for document version: %s" -msgstr "" +msgstr "Assinaturas para a versão do documento: %s" #: views.py:375 #, python-format msgid "Upload detached signature for document version: %s" -msgstr "" +msgstr "Carregar a assinatura destacada para a versão do documento: %s" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Em grandes bases de dados esta operação pode levar algum tempo para executar." +msgstr "Em grandes bases de dados esta operação pode levar algum tempo para executar." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "" +msgstr "Verificar todos os documentos para assinaturas?" #: views.py:403 msgid "Signature verification queued successfully." -msgstr "" +msgstr "Verificação de assinaturas colocada em fila." #~ msgid "Signature status: %s" #~ msgstr "Signature type: %s" diff --git a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.mo index dd25ece041e92dc19e0e1780f747d4f3b70d620e..97d263275eb895fb88c84b202595c51e5007efe1 100644 GIT binary patch delta 24 fcmbQuIh%8XEfcq)p{|j!f`O5hsqtnHreG!jOuGfG delta 24 fcmbQuIh%8XEfcqaiLQ~kf}x3(q2Xo^reG!jO#B6~ 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 296dee1846..b02cd1679c 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -30,10 +28,12 @@ msgid "Date" msgstr "Data" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID cheie" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -54,18 +54,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -98,6 +102,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -198,10 +203,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -210,6 +217,7 @@ msgid "Verify document signatures" msgstr "Verifica semnăturile de documente" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -242,6 +250,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -257,10 +266,10 @@ msgstr "" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" -"Pe baze de date mari, această operație poate dura ceva timp pentru a executa." +msgstr "Pe baze de date mari, această operație poate dura ceva timp pentru a executa." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.mo index 574d7b78a5e3c63f0b1362c82ac4797f05963aa1..f66faf89e34a70c20fab29cdfec4aedfa65fa2c3 100644 GIT binary patch literal 5994 zcmbW3Uu+yl9mlsMp~QrLq5MlJOj8_e(zWj#C$%rRxHNVv114_b@Icjv&E5FC&3gCP z-K%4%68Y2Mins}sL`X#tprEP}502Aoo!E6$fsi5|*hL_uN`S-*4}io=5icOV-`Tyr zy}h$!Wu&>!&g^e~^ZPfm_vf8kuWD#T^iQL2eUGLc2mi4JKWIbSFb58U?*|Wq?*+dE zJ^(%m?gAa~ec-pjd%^F4p8|gXeiW>O9|rG$4}tH1p9B9Fj~{|kj-LRj&jRlU7r<`t z6_EPx#N*$^RC^8F ziJad6VUqT182JhCw;=cb8+ZWxcT645P=6W3lvV?C;5qO?@CNu<@DJb-@Lg~W9ELKE zzX@{uORx{zj-+t?5cn8qf_SC<0(=5o1-aiA{LsGpK&aFn09hY47cjO!*5&uX zkAZcNb?_T-5BMjL>$hU^3b+$woxTe8f^UN};NL;Ub82Vg*8=!7#;?V^7e#dxV;Qp! z((i2uHkNALAmjK*%%h;dxB~K=y#VIHpM$jbk0ABE3)25F7(Wb7fvoFG;5c{{G{C=r z-0zDhM#j?s9|m6q2f^QiPlDTF1ob@y-UH^)htL@VHtxZ=^rIuxs#XvpZ5ulCvm2eQ z2fcs}_f_NG2hp*O@`roxLmxojg5GHKaX&h1m~mml5mG*}UKsl#IvYZ$+5!BcBvt-6 z!8&CV=qOXw^q2(W$HsHVn&f#sgwA^48DL}W@VxM>Gd?^E%=c%|yU`nsv0`Iwv8fzJ zkLs7TrrN0CON~FmGb^?%YopSVoKg^F=^LdPSypcizvjw<==L^#%U96~^<@d)n=vbH>V-pn0r>bp6S?a6CF(2j7+;`A!kp@ayji=yP|fP4vH8#6`S_;$*T>P zarauOBt37sW?A!n&@g9Pj)6SH4^4l|jnJf&j>SG`UzYRiVtiD=uquvg`ZKd?RC1-^ zBbcJhY*S30u9|LUZrZdf(yh9t?JF5e+7*9BJ^J(2XkE>dF8BDVV@vI*EiA*WNUAkX z8lLooKVy2rsmfUQtT8Wq;}nX^nU%sf`Qu=7S*rQ6Pn$G6uR7ymW$IBtgK3u>*Oetd zEyEYKl*|~E)DWi9sc6Gf5|Nv%owUr7z_UnuavaG?VyH!;-C_>m5=J80 zEXqwRYA=)4MP8)6{WN(U<=WN7a*Y>il`1(VgHA;QmEY!Y+O%ZqE#lWuFp`>P#9Fj) zqUuTyM>8#FnVz3ohTxggW+^J7Z`5S1t(Fr*BI}ij(LIoqa-0EmsZ6oRPE=X_%`7C6 zUc*VRO(uDz?wDjnT6e5Ak<`9M>*s}GSt41`azl9|on*YmWU?qxiC3naQe;Ht9Ogpu+X>vJPW-*A>KsF>lynY;@vy*D+ajTwkB?DrQ-KtXA>#DW@R1CXY_( zN8;nG^WH9qfn5H8p3mz8`$TS_uz#PP8_eY(s2`Khn$(+?%RQp!hq0uP%kRyhb$!L~ ze0|C_Y|k=$$1MoUw4A=GVVfnqvnw^DBK0Y0%ofD4n&+9YuV=>htA+mlxw*MMpDWF2 zdAhIU%=WvEXSk;0_T%6iwl2%FUcVJ9>33`WyCYUpz7OxIWaB`7-&{W2o6JKmwrT8ns0a-sVgL&E^&afff-AvNcrI8< z9z<|ESPx#u?@D+!SkZ!4Fjxv!F+3M8W`-hI$Kuz6daxRPH+U;}D?A@wYS9obs)Lqj zsY7ZdsHYZUF&AD8FSIPg^i3`JQA53wQdZV!F745RYqT^xgWv1Wu^yhqs}%uzR>RA! z%2pyP)Pja<6kHE(h3A7cYNuK)cqyodXXrRJba_`h2T;I?_25m^9Bo$Rmr{@j!B-Y4G}RHgPNJ+XMngHv0?+J*lf$62 z%>EQ}x6?DUpB1?pF2W}G%E)0$b+A%){g4^tbpf3yNr8i?79kfaJkZx+;+t5D$H=kh zpocHg39h82XCUyc$mKOmy@9E7g3E9yFEe2R2GR*O9lSdaWi|~1FN97y8iMCU9$w)!R73Fxm@;Z`NjV))C z*LAkEm!f~CN>%D^$KE)h3~>B)2p7XkcdvapbAN4Gd&b=GV&rtnQq;j33o~u&WlnXp zwu8QmZJX1l;@aZWlDY>{R?vdRQBGUO`JbVXZU(C@R%a~ku)|2}RnxXQzK}BW7^>3) z*Q5IcWvt3&gm+`~=~p*L+IICpR^La|+VeQ^yi%ici@R$Dg^6lId7Z}x6ggp7dHiF| ztovnVYC)ZNlxVn!lXb0GP8nyJ!1zm^$&gY-Eo$5N)2^;Ce!p*E{yYx2`oEGY4RsoD z{cQejzqp~UaHBsviOJ2cnsOuaA0YZS(q?Na+Wbmgi!T`7kg+!@3C3rcw+)IF!B97B zW}EN=^4UR)TG4jy!;2k-Q(LnB+H#?C2orF1Bl-9)MK_FErW|PbZQmp< IloSH-e~WxZ9RL6T delta 562 zcmXxfJ4?e*7zW@|ZPg~Nh_$UqkrX#?*jl_41cwe*#T&XCHAtW)l0;M-1RVtFAe?p( z9IXCZ^H6P$xxa0NEQZAkm~U<=Gb+LwoP?gCE20;F$zKnZ@;)(_b)Ug$zs17l$%g3v_? zoTdX4a0JdmA3TOpcvfG(fqsmi>b}4n#&0kTEl=&9Q%H@S!vws9E;e7Aq>lcp5ijVW zS~8xvhhcB^Bh;7|p`yR12C1oPrBp}bX-~A*W+}~4^$axEceXUcQEYwFP@Nr1qq$up zW2zf$M%(9^=4tNpb~f2;d4F5ux)k9hX-*zW48%v3SRxsVai82>AC4vC!+k?2X;!tJ zfn`fI?2PJ|R#I6q*EGv9p{-iFSz3_~T>fiuD~jSllq*M-EbsS^dvoHhazt}{F&N~} p!PY>LiGsKn#mWhSZ7iMQKW#<6(9z=+WhSmfSv>O9kix%1p+Cx^a0LJW 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 ca80b0a5de..5a32610ce7 100644 --- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po @@ -1,26 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# lilo.panic, 2016 # Sergey Glita , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-04-27 18:23+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-07-19 20:01+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -31,12 +29,14 @@ msgid "Date" msgstr "Дата" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "ID ключа" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" -msgstr "" +msgstr "ID подписи" #: apps.py:99 forms.py:83 msgid "None" @@ -48,59 +48,64 @@ msgstr "Тип" #: forms.py:23 msgid "Key" -msgstr "" +msgstr "Ключ" #: forms.py:27 msgid "Passphrase" -msgstr "" +msgstr "Кодовая фраза" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" -msgstr "" +msgstr "Подпись встроена?" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" -msgstr "" +msgstr "Дата подписи" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" -msgstr "" +msgstr "ID ключа подписи" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" -msgstr "" +msgstr "Ключ подписи предоставлен?" #: forms.py:73 msgid "Key fingerprint" -msgstr "" +msgstr "Отпечаток ключа" #: forms.py:77 msgid "Key creation date" -msgstr "" +msgstr "Дата создания ключа" #: forms.py:82 msgid "Key expiration date" -msgstr "" +msgstr "Дата устаревания ключа" #: forms.py:87 msgid "Key length" -msgstr "" +msgstr "Длина ключа" #: forms.py:91 msgid "Key algorithm" -msgstr "" +msgstr "Алгоритм ключа" #: forms.py:95 msgid "Key user ID" -msgstr "" +msgstr "ID пользователя ключа" #: forms.py:99 msgid "Key type" -msgstr "" +msgstr "Тип ключа" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" -msgstr "" +msgstr "Проверить все документы" #: links.py:39 msgid "Signatures" @@ -116,7 +121,7 @@ msgstr "Детали" #: links.py:57 msgid "Signature list" -msgstr "" +msgstr "Список подписей" #: links.py:63 msgid "Download" @@ -124,51 +129,51 @@ msgstr "Скачать" #: links.py:69 msgid "Upload signature" -msgstr "" +msgstr "Вгрузить подпись" #: links.py:75 msgid "Sign detached" -msgstr "" +msgstr "Подпись отеделена" #: links.py:81 msgid "Sign embedded" -msgstr "" +msgstr "Подпись встроена" #: models.py:31 msgid "Document version" -msgstr "" +msgstr "Версия документа" #: models.py:35 msgid "Date signed" -msgstr "" +msgstr "Дата подписи" #: models.py:45 msgid "Public key fingerprint" -msgstr "" +msgstr "Отпечаток публичного ключа" #: models.py:51 msgid "Document version signature" -msgstr "" +msgstr "Подпись версии документа" #: models.py:52 msgid "Document version signatures" -msgstr "" +msgstr "Подписи версий документов" #: models.py:71 msgid "Detached" -msgstr "" +msgstr "Отделена" #: models.py:73 msgid "Embedded" -msgstr "" +msgstr "Встроена" #: models.py:88 msgid "Document version embedded signature" -msgstr "" +msgstr "Встроенная подпись версии документа" #: models.py:89 msgid "Document version embedded signatures" -msgstr "" +msgstr "Встроенные подписи версий документов" #: models.py:122 msgid "Signature file" @@ -176,99 +181,102 @@ msgstr "Файл подписи" #: models.py:126 msgid "Document version detached signature" -msgstr "" +msgstr "Отделённая подпись версии документа" #: models.py:127 msgid "Document version detached signatures" -msgstr "" +msgstr "Отделённые подписи версий документов" #: models.py:130 msgid "signature" -msgstr "" +msgstr "подпись" #: permissions.py:13 msgid "Sign documents with detached signatures" -msgstr "" +msgstr "Подписать документы отделёнными подписями" #: permissions.py:17 msgid "Sign documents with embedded signatures" -msgstr "" +msgstr "Подписать документы встроенными подписями" #: permissions.py:21 msgid "Delete detached signatures" msgstr "Удаление отделенных подписей" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" -msgstr "" +msgstr "Скачать отделенные подписи документов" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" -msgstr "" +msgstr "Вгрузить отделенные подписи документов" #: permissions.py:33 msgid "Verify document signatures" msgstr "Проверить подпись документа" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" -msgstr "" +msgstr "Посмотреть подробности подписей документов" #: views.py:67 views.py:172 msgid "Passphrase is needed to unlock this key." -msgstr "" +msgstr "Для разблокироваки этого ключа необходима кодовая фраза" #: views.py:77 views.py:182 msgid "Passphrase is incorrect." -msgstr "" +msgstr "Кодовая фраза неверна." #: views.py:98 views.py:202 msgid "Document version signed successfully." -msgstr "" +msgstr "Версия документа успешно подписана." #: views.py:129 #, python-format msgid "Sign document version \"%s\" with a detached signature" -msgstr "" +msgstr "Подписать версию документа \"%s\" отделённой подписью" #: views.py:240 #, python-format msgid "Sign document version \"%s\" with a embedded signature" -msgstr "" +msgstr "Подписать версию документа \"%s\" встроенной подписью" #: views.py:267 #, python-format msgid "Delete detached signature: %s" -msgstr "" +msgstr "Удалить отделённую подпись: %s" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" -msgstr "" +msgstr "Подробности для подписи: %s" #: views.py:339 #, python-format msgid "Signatures for document version: %s" -msgstr "" +msgstr "Подписи для документа версии: %s" #: views.py:375 #, python-format msgid "Upload detached signature for document version: %s" -msgstr "" +msgstr "Выгрузить отделённую подпись для версии документа: %s" #: views.py:392 msgid "On large databases this operation may take some time to execute." -msgstr "" -"В больших базах данных эта операция может занять некоторое время для " -"выполнения." +msgstr "В больших базах данных эта операция может занять некоторое время для выполнения." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" -msgstr "" +msgstr "Проверить подписи во всех документах?" #: views.py:403 msgid "Signature verification queued successfully." -msgstr "" +msgstr "Верификация сигнатуры добавлена в очередь." #~ msgid "Signature status: %s" #~ msgstr "Signature type: %s" diff --git a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.mo index 5c9ab6d7f97ff7928cd68f4622807a22c996411c..89a180821a31b1ef602094cade3f9b0a13d75a95 100644 GIT binary patch delta 24 fcmbQiHiK=09wWD*p{|j!f`O5hsqtn@#`}x_OI8L9 delta 24 fcmbQiHiK=09wWDbiLQ~kf}x3(q2Xpr#`}x_OP2-@ 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 d806a92665..50e13a83cc 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 @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:51 permissions.py:8 settings.py:7 msgid "Document signatures" @@ -29,10 +27,12 @@ msgid "Date" msgstr "" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,18 +53,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -97,6 +101,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -197,10 +202,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -209,6 +216,7 @@ msgid "Verify document signatures" msgstr "" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -241,6 +249,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -259,6 +268,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "Če je baza velika lahko operacija zahteva nekaj več časa da se izvrši." #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.mo index 341cfa8eea3b1573b14bd98e949db0d0f2f26ab6..47fe2505cbcb1b289cc7651e07c5f89d755bb1ee 100644 GIT binary patch delta 24 fcmZ3&wuEg%9wWD*p{|j!f`O5hsqyAY#?_1fQq~4= delta 24 fcmZ3&wuEg%9wWDbiLQ~kf}x3(q2cCA#?_1fQx^tv 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 06cef302a6..2a771651f4 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -29,10 +28,12 @@ msgid "Date" msgstr "Ngày" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "Key ID" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,18 +54,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -97,6 +102,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -197,10 +203,12 @@ msgid "Delete detached signatures" msgstr "" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -209,6 +217,7 @@ msgid "Verify document signatures" msgstr "xác nhận chữ kí tài liệu" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -241,6 +250,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -259,6 +269,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "" #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.mo index 0ca22d51f449caf84189d7aa2d3a649a9da57c20..89fda776a719efa5a1a0f5fd1b7fc07cff922cc5 100644 GIT binary patch delta 24 fcmeyt{)2skG!wU>p{|j!f`O5hsqtntrb~ diff --git a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po index 2e12e29216..4cd853a3a0 100644 --- a/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-04-27 18:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:51 permissions.py:8 settings.py:7 @@ -29,10 +28,12 @@ msgid "Date" msgstr "日期" #: apps.py:94 models.py:37 +#| msgid "Key ID: %s" msgid "Key ID" msgstr "密钥ID" #: apps.py:98 forms.py:71 models.py:41 +#| msgid "Signature ID: %s" msgid "Signature ID" msgstr "" @@ -53,18 +54,22 @@ msgid "Passphrase" msgstr "" #: forms.py:53 +#| msgid "Signature file" msgid "Signature is embedded?" msgstr "" #: forms.py:55 +#| msgid "Signature file" msgid "Signature date" msgstr "" #: forms.py:58 +#| msgid "Signature ID: %s" msgid "Signature key ID" msgstr "" #: forms.py:60 +#| msgid "Signature type: %s" msgid "Signature key present?" msgstr "" @@ -97,6 +102,7 @@ msgid "Key type" msgstr "" #: links.py:32 +#| msgid "Verify document signatures" msgid "Verify all documents" msgstr "" @@ -197,10 +203,12 @@ msgid "Delete detached signatures" msgstr "删除分离的签名" #: permissions.py:25 +#| msgid "Download detached signatures" msgid "Download detached document signatures" msgstr "" #: permissions.py:29 +#| msgid "Upload detached signatures" msgid "Upload detached document signatures" msgstr "" @@ -209,6 +217,7 @@ msgid "Verify document signatures" msgstr "核对文档签名" #: permissions.py:37 +#| msgid "Verify document signatures" msgid "View details of document signatures" msgstr "" @@ -241,6 +250,7 @@ msgstr "" #: views.py:292 #, python-format +#| msgid "Document signatures" msgid "Details for signature: %s" msgstr "" @@ -259,6 +269,7 @@ msgid "On large databases this operation may take some time to execute." msgstr "在大数据库中,此操作将比较耗时。" #: views.py:393 +#| msgid "Verify document signatures" msgid "Verify all document for signatures?" msgstr "" diff --git a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo index 647332b4eb28065ddbc6035023f5357497c154c2..a3be1e0026c0509006c65b62529db3e9946340d4 100644 GIT binary patch delta 44 zcmaFJ`jB;lC?mI_p{|j!f`O5hsqth5#)Xs5F-GzDB<7`;CZ?xaDI^w6R%hA;03yf@ Ang9R* delta 44 zcmaFJ`jB;lC?mIliLQ~kf}x3(q2Xi&#)UjSiFxUziRr0U3W-IN4=_eg)?nHR03Ff| AkN^Mx 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 503fb0e964..5af554bcea 100644 --- a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:31 msgid "Document states" 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 43712eba866033bf37e848841f7192e939c49d76..40738808352c263f53226dbd0da062f919e7e90f 100644 GIT binary patch delta 44 zcmZ3-x{h^&C?mI_p{|j!f`O5hsqth5#wC+4GDh+EB<7`;CZ?xaDI}#&)?#V_01?Iv A{Qv*} delta 44 zcmZ3-x{h^&C?mIliLQ~kf}x3(q2Xi&#w9#HiFxUziRr0U3Q6gc4>Lwj)@Eu301SZ) A^8f$< 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 e8a004781e..1bb7f2623d 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 diff --git a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo index 6aa57fc50081d6357db53a34523c62572c0b34c4..802ddbf341dc6b5a6e3eac969822a4dc73ce1dd0 100644 GIT binary patch delta 47 zcmaFG`igafC?mI_p{|j!f`O5hsqth5#(k6DF-GzGB<7`;CZ?xaDI^ugJ2_5vXIcyZ DRwWME delta 47 zcmaFG`igafC?mIliLQ~kf}x3(q2Xi&#(n%giFxUziRr0U3Q5KBPL7lBGDc7KU|IwK DO^Xi9 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 5eaf6af040..ea9fc3d137 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 @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:31 msgid "Document states" diff --git a/mayan/apps/document_states/locale/da/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/da/LC_MESSAGES/django.mo index 2e4479cd2c329bf5a214dfa92fa0563c23ed5c43..23a6ef5dca858684c7cad67d0aa9e3c4a8c5249b 100644 GIT binary patch delta 42 ycmZ3^vYchYMQ%ewT_a-!10yR_, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -123,9 +122,7 @@ msgstr "Workflow" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein " -"Status kann initial sein." +msgstr "Diesen Status markieren, wenn der Workflow damit starten soll. Nur ein Status kann initial sein." #: models.py:73 msgid "Initial" @@ -135,9 +132,7 @@ msgstr "Initial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der " -"Fertigstellung in Bezug auf den Workflow angibt." +msgstr "Ermöglicht den Eintrag einer Zahl (ohne Prozentzeichen), die den Stand der Fertigstellung in Bezug auf den Workflow angibt." #: models.py:92 msgid "Workflow state" diff --git a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.mo index 4af4260411c712caf2b5f81bdb48cd26b6475736..252bfd331b6b54df8213f19003c74782608e1353 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|@x\n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo index 51ffd0652af60bc876d1233a49f9ab733e7c0c7f..1b8ef878f83b4975a8826479892b8ff2ab9c95d6 100644 GIT binary patch delta 24 fcmX@Bd{%jb5Er+hp{|j!f`O5hsqto6t_|z}SGfjZ delta 24 fcmX@Bd{%jb5Er+BiLQ~kf}x3(q2Xp(t_|z}SNaBI 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 a23328b206..5106c2cc87 100644 --- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2016 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-05-09 01:51+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 @@ -124,9 +123,7 @@ msgstr "Flujo de trabajo" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Seleccione si este va a ser el estado con el que desea que el flujo de " -"trabajo comience. Sólo un estado puede ser el estado inicial." +msgstr "Seleccione si este va a ser el estado con el que desea que el flujo de trabajo comience. Sólo un estado puede ser el estado inicial." #: models.py:73 msgid "Initial" @@ -136,9 +133,7 @@ msgstr "Inicial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Introduzca el porcentaje de finalización que este estado representa en " -"relación con el flujo de trabajo. Utilice números sin el signo de porcentaje." +msgstr "Introduzca el porcentaje de finalización que este estado representa en relación con el flujo de trabajo. Utilice números sin el signo de porcentaje." #: models.py:92 msgid "Workflow state" diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo index 8d60eff3c06c0f8acba1d254d8d2bb8f5dccef90..23911ffbf55f0ca831a637ffe09c49b4fc99aebe 100644 GIT binary patch delta 45 zcmZ1_w@Pk<5(l@Tp{|j!f`O5hsqti8jzyF2a76L=B<7`;CZ?xaDWoNCHs$=v3IHwC B4g~-J delta 45 zcmZ1_w@Pk<5(l?|iLQ~kf}x3(q2Xj*jzv5^iFxUziRr0U3TcUx&v8U=Hsk!l3IHdQ B4f_B9 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 9a3ed95ed1..51265ea7fc 100644 --- a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 @@ -123,9 +122,7 @@ msgstr "گردشکار" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"در صورتیکه این وضعیت شروع گردشکار باشد این وضعیت را انتخاب کنید. وضعیت فقط " -"میتواند وضعیت اولیه باشد." +msgstr "در صورتیکه این وضعیت شروع گردشکار باشد این وضعیت را انتخاب کنید. وضعیت فقط میتواند وضعیت اولیه باشد." #: models.py:73 msgid "Initial" 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 21a1ab8eda603ada47b2024e3f4cfd666b96bf4f..6c19328d5a7bcb735c7d7de7033b4c8c944e6e5d 100644 GIT binary patch delta 45 zcmaE_{9bv35Er+hp{|j!f`O5hsqti4uEUexaz*j@B<7`;CZ?xaDWnx`cH>^j1^`G! B4vGK( delta 45 zcmaE_{9bv35Er+BiLQ~kf}x3(q2Xj%uERV&iFxUziRr0U3TZ`??{h_OcIRHf1^_`( B4uAjv 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 b91263f3a9..6d01182f7e 100644 --- a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 @@ -123,9 +122,7 @@ msgstr "Flux de travail" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Sélectionnez si ceci sera l'état avec lequel vous voulez que le flux de " -"travail pour démarrer. Un seul état peut être à l'état initial." +msgstr "Sélectionnez si ceci sera l'état avec lequel vous voulez que le flux de travail pour démarrer. Un seul état peut être à l'état initial." #: models.py:73 msgid "Initial" @@ -135,9 +132,7 @@ msgstr "Initial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" -"Entrer le pourcentage de finalisation que cet état représente dans la " -"relation du flux de travail. Saisir un nombre sans le signe pourcentage." +msgstr "Entrer le pourcentage de finalisation que cet état représente dans la relation du flux de travail. Saisir un nombre sans le signe pourcentage." #: models.py:92 msgid "Workflow state" diff --git a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.mo index dc90ee1000a16c6fc05e7292d8f296ff51b3310c..a584f4a2bd158ba566e24af6b8b813a8be03df4b 100644 GIT binary patch delta 42 ycmdnYvYBPVMQ%ewT_a-!10yR_8 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 cf9e4740b0..c3d442d94a 100644 --- a/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 diff --git a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.mo index 8b936eb86ee90c1712ee3ddde351e0de6aec58fc..568695d2a2a1289108b01006b35f6c30cf0d5b9e 100644 GIT binary patch delta 42 ycmeBT>0+6%huhFl*T`7Gz{twfc;fM;lPejcczhD`(n}N5Q>_#-Qzl0+6%hugqJ*T`JK(8S8naN_Z$JU)qe>7|M3sa6V^DU-7qqbFZxGzS10@(tSn 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 82d7842b00..00d127e3b5 100644 --- a/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:31 diff --git a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.mo index e0afbcda6c3039c133e7f189077bf5e2130180cc..6a81bf8a8c0c9948fb924c5d842460ddb7b20891 100644 GIT binary patch literal 4230 zcmaKuUx*|}9mh*^{#!Nb>G>xyrlL8s=cQ+6ckhzRTsG0$+a!b8yED6c_oP@mQ!`t! zr)#Y4*~u;hK_8-mCn3(?%O#n zrux%WUG=NqpQ`%JAC4aRwm|8kei-#{ZxG@l`0_1ypj#4y1mBAGE8v^KUx6I=Taa@89QywSO0-`G zxz3#!%y|!il>aDrD|iK51c%^p@SEUK@CEQr@Kq2dh`)dw|99|d@IN5!I>3YaeHrBX z-vY6u_#w!3u7aHZ5=gs$4$i<|f)F9jL8`n*w}a1sw}a1uC&A}I z%KaTkz5WQ|C;ov4^|%h+0WQ3)oVN(luJfR`8>D_i@V($3$o0Ms;wQe3$8F$Gz@H+v zuYiui9Oa|Pu5C&Tv~EYSW6$hcnz8PC^4`xu141>$y){=Fx(9|XBC9|O;T zBarcb4#ZUPW032-2-2Uw06zr&I`FTd{|G*E{IS5hL9VkB_!vk(e-@Pu-~x&&d6#pFm~dUBG?7!u=Twbz)pts1I#Mh^q1d zyuC5BmI6N-xCqj>j01hb_%qgRRPKom>OH6@P+4%ae0d=76nHNxcZGetU0X; zE%O4;8ydMBS|?}LePNi|Syvv%^m1(BRF<3O?7HWF&x(?wl-P#YsdLn^)ZskUQQ1Hi zW~>EU<%@>GXnRy@<><%@lPPKw1?U3i;{ze>uo?^-7UQZXFw@Ff?|Ea-2iIX-@S)d_ z^KS6zjZLZY+>9~}^>=l1<-_xu15I9ytffay>xmd;irsm^>jP5=J}N1>SkDUW{LqPZ zeR>y;=vQIK7llo+irQImYGEWN4+OM+^9^Xc@?w_mODs}KmwlB*X*cNC5}P~~dBCBq zgzo9i7@ps%HLqVAp{P6a#@KvL+;--VEHzboFs>4N7D^X-+IwR6_B1j69NWus?} zb*_Y?D&h;K!RD;5=X+#oM-tI?2IkF;ufFcje`^f)uCGVEc%6 zFDr~sc!hN3a%btjWN9f`UXh*U?&+1JbE?z9z~l+NXDGKhuJb^$d`d2Lx+|woc2E|$ zMH3%L91QEIgX>$lrg)FyNIW=ZyVVcv*0}%4(HPfH3rFrD%+5wrHPXqJR^zVh6)H8b zU~#u7Cf#;>Hk-9d#|-sToY8hRSI$`19@ErB55{>r4MN(cXrEZv=xwam9$9L27S=2_ zNd_%((|2W|pDNmuRGI9o?C&a<>tc0#>yhM4J&yZps9mz2_3gl9qpm!&V~R@Iu0-Qf zI&~^d9s$D}5v9vgFy zVj@BdDa9Yd#w$eVwA$EJ<_Ra_0I@1F6+3dnw&DFFaofjBvz`=t%9UcPJku68qE9_O z&nT&-b&4q`zOM1~q^T0|rCJ~gpuJ@VD)mCvDbxt|#+SpkG&9h8u18bTwCkpJ#0+Eo zMbvQcyvyf%m}m5e2~w&<{+SP0W32q*6n5Fl;Q9<#@vU+d{g}uuezXv+haSHmhLMuj|7Zdre=g<}-YM`M8D`~N#;z4652PY+Hx5~@n~XbGZP-e`V_ zZke`xbYm*J_MF(}eWk@^jhMuR>trB$FqLtOpTuR${er}0Zt?|d-t0>$r2Z!sB2>xT d#Ga~GZnixEGftA+or_z|BMNOtG|?>E3kL3Os~I z-^yq38N7P)-^&28GL>IdPgQkQ*YD>`KLz9o^c9q$E6`uiD9`Q)@eo`Am%*3d1Mm&_ z2<(DS!A)=p+y(E0pIZM57~@Y`|10f?MGRN->j8GkO+z>{XgtJq5}dujGgr5mcZDYK0{%V4J|0@WdX zH?i)2aqFs=$zGPH@8717&b|(;3a@RbH9McnLpLGM4h-5GhX6aB>nW*%bd$?H*0n*C zt7pu!JW0;a&$}Gc%_&`UOV=d+D$yrRoJLXAgrshZB!-i$%sp+I7AO zxwNx|8~VL%d1dxjt$f{=+1hsJdc7|0S4)!4YcbHaq`KBO>vf_qGb1Z}?Vg<&;l@)_ dYC&wuGh)`_fI^sCEwN$>7({y#$8jPO{{Z&$%oG3s 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 b66fd67872..15d11b1ab4 100644 --- a/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/it/LC_MESSAGES/django.po @@ -1,30 +1,30 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-09-24 10:35+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 msgid "Document states" -msgstr "" +msgstr "Stati documento" #: apps.py:47 msgid "Initial state" -msgstr "" +msgstr "Stato iniziale" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" @@ -32,7 +32,7 @@ msgstr "Nessuna " #: apps.py:52 msgid "Current state" -msgstr "" +msgstr "Stato corrente" #: apps.py:56 apps.py:83 models.py:189 msgid "User" @@ -40,7 +40,7 @@ msgstr "Utente" #: apps.py:62 msgid "Last transition" -msgstr "" +msgstr "Ultima transizione" #: apps.py:66 apps.py:79 msgid "Date and time" @@ -48,11 +48,11 @@ msgstr "Data e ora" #: apps.py:72 apps.py:99 models.py:79 msgid "Completion" -msgstr "" +msgstr "Completamento" #: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" -msgstr "" +msgstr "Transizione" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" @@ -60,23 +60,23 @@ msgstr "Commento" #: apps.py:95 msgid "Is initial state?" -msgstr "" +msgstr "Stato iniziale?" #: apps.py:103 models.py:105 msgid "Origin state" -msgstr "" +msgstr "Stato originale" #: apps.py:107 models.py:109 msgid "Destination state" -msgstr "" +msgstr "Stato di destinazione" #: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" -msgstr "" +msgstr "I workflow" #: links.py:20 msgid "Create workflow" -msgstr "" +msgstr "Crea workflow" #: links.py:25 links.py:46 links.py:63 msgid "Delete" @@ -92,63 +92,63 @@ msgstr "Modifica" #: links.py:41 msgid "Create state" -msgstr "" +msgstr "Crea stato" #: links.py:54 msgid "States" -msgstr "" +msgstr "Stati" #: links.py:58 msgid "Create transition" -msgstr "" +msgstr "Crea transizione" #: links.py:71 msgid "Transitions" -msgstr "" +msgstr "Transizioni" #: links.py:75 msgid "Detail" -msgstr "" +msgstr "Dettagli" #: models.py:21 models.py:67 models.py:101 msgid "Label" -msgstr "etichetta" +msgstr "Etichetta" #: models.py:58 models.py:65 models.py:99 models.py:126 msgid "Workflow" -msgstr "" +msgstr "Workflow" #: models.py:71 msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" +msgstr "Seleziona se questo è lo stato da utilizzare quando il workflow inizia. Solo uno stato può essere quello iniziale." #: models.py:73 msgid "Initial" -msgstr "" +msgstr "Iniziale" #: models.py:77 msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" +msgstr "Inserisci la percentuale di completamento che questo stato rappresenta in relazione al workflow. Usa i numeri senza segno di percentuale." #: models.py:92 msgid "Workflow state" -msgstr "" +msgstr "Stato workflow" #: models.py:93 msgid "Workflow states" -msgstr "" +msgstr "Stati workflow" #: models.py:119 msgid "Workflow transition" -msgstr "" +msgstr "Transizione workflow" #: models.py:120 msgid "Workflow transitions" -msgstr "" +msgstr "Transizioni workflow" #: models.py:129 msgid "Document" @@ -156,105 +156,105 @@ msgstr "Documento" #: models.py:173 models.py:181 msgid "Workflow instance" -msgstr "" +msgstr "Istanza workflow" #: models.py:174 msgid "Workflow instances" -msgstr "" +msgstr "Istanze workflow" #: models.py:184 msgid "Datetime" -msgstr "" +msgstr "Data e ora" #: models.py:196 msgid "Workflow instance log entry" -msgstr "" +msgstr "Voce log istanza workflow" #: models.py:197 msgid "Workflow instance log entries" -msgstr "" +msgstr "Voci log istanza workflow" #: permissions.py:7 msgid "Document workflows" -msgstr "" +msgstr "Workflow documento" #: permissions.py:10 msgid "Create workflows" -msgstr "" +msgstr "Crea workflows" #: permissions.py:13 msgid "Delete workflows" -msgstr "" +msgstr "Cancella workflows" #: permissions.py:16 msgid "Edit workflows" -msgstr "" +msgstr "Modifica workflows" #: permissions.py:19 msgid "View workflows" -msgstr "" +msgstr "Vedi workflows" #: permissions.py:26 msgid "Transition workflows" -msgstr "" +msgstr "Transizioni workflow" #: views.py:57 #, python-format msgid "Workflows for document: %s" -msgstr "" +msgstr "Workflow per il documento: %s" #: views.py:91 #, python-format msgid "Documents with the workflow: %s" -msgstr "" +msgstr "Documento con il workflow: %s" #: views.py:116 #, python-format msgid "Detail of workflow: %(workflow)s" -msgstr "" +msgstr "Dettagli del workflow: %(workflow)s" #: views.py:162 msgid "Submit" -msgstr "Presentare" +msgstr "Invia" #: views.py:164 #, python-format msgid "Do transition for workflow: %s" -msgstr "" +msgstr "Esegui transizione per il workflow: %s" #: views.py:215 msgid "Available document types" -msgstr "" +msgstr "Tipi di documento disponibili" #: views.py:216 msgid "Document types assigned this workflow" -msgstr "" +msgstr "Tipi di documento assegnati a questo workflow" #: views.py:226 #, python-format msgid "Document types assigned the workflow: %s" -msgstr "" +msgstr "Tipi di documento assegnati al workflow: %s" #: views.py:269 #, python-format msgid "States of workflow: %s" -msgstr "" +msgstr "Stati del workflow: %s" #: views.py:287 #, python-format msgid "Create states for workflow: %s" -msgstr "" +msgstr "Crea stati del workflow: %s" #: views.py:363 #, python-format msgid "Transitions of workflow: %s" -msgstr "" +msgstr "Trasizioni per il workflow: %s" #: views.py:376 #, python-format msgid "Create transitions for workflow: %s" -msgstr "" +msgstr "Crea trasizioni per il workflow: %s" #: views.py:406 msgid "Unable to save transition; integrity error." -msgstr "" +msgstr "Impossibile salvare la transizione: errore di integrità" diff --git a/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/nl_NL/LC_MESSAGES/django.mo index a695e2db6a454edec202f1234501d92211fdb4b3..d6509b12eb4744121eb233aab691ec19deea8a6f 100644 GIT binary patch literal 2594 zcmai!J!~9B6vrpvByd201TY@~#(;^>Xnh|JV68D9_Bp|l&#`isP(%pL-Hq?Yw>x{< znY)W6s1Q9((z>AlA@NbsL==PyQ6MA~3WP*j3WQ8S$^Y%=8454@H^lE{mcON8u-b>~`1nHc8 z@D%tt_z-v#d>s54yaC@HfKQ!h&isb#B^iSY0T0aev+%q8U zb3pRXYsq{KB!4zRl5+*b$2zFUPM!4kK(gksfp=-CtTb8sv}UIk0EY zCjH50)A%Wt5c2Fv{Lka3J1F9(LUvQ3I3V9lmdDUJgP&}rLT`-9BQc^_CjY=(HcMk~ zjD+$;%agnlw1>XbmfO97G;A&KsYe`m(yBnSwNMHxxv{9zjtzx2YI1rUg#8^a7(>J` z3`tf(P83&I?@&;ng7z{ic1PW)ex)6Pebz!*>I*VL9aiM+D$G$XxOg{AH zP<2!{N+H5h4jB4eYGj1nPTY%H2%j-V5c9c+Q91^}P}WM{hZZJMAWjKsVi+Of#>wOO zzswMYzs?dxYH^wwQZadAfU>@{yz{TT(2`>r9=3T>;V4B&XxRU+qq6m-#hL8CK;vBO94` c>vYN4mc(W0&7{d8mynH2NZ=#H(&2RR4@~=uGXMYp delta 422 zcmX|*yGsK>5Qj(2Lz6-f8$scEJ-CYj@fwRn(i}m2H43tq4B_&)g}psertv>G#6}QO z+lrlyje?DhSP3>Zb~b{Qzm2B@-+nvH%$bq-a@35(VWceq2IYsmZm%#Zn(HuO6&HUA`M|6#gdFVDP+`*>t5yt!^Ox+Cq z1xl0$Gr)Xm7NnXS3^>wM=RRwux@;wre7hZLYRZUdF9`;?AH=L^N69X?bo!ldl%1+w z*|6NI=ent1SaF?oyW(0E*K;;k9Yo0&v9|Y>h~mD`QhC;{3|MIi$3lfNy(zTjeGzpM z(P7Vu`X^04T`C@>r^U6cY%d`c9kLpR-8R1e-!9-Gs~$(xU>s CT3UAi 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 3fda732efd..11d63efbac 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 @@ -1,30 +1,30 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-10-28 12:43+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 msgid "Document states" -msgstr "" +msgstr "Documentstaten" #: apps.py:47 msgid "Initial state" -msgstr "" +msgstr "Initiële staat" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" @@ -32,7 +32,7 @@ msgstr "Geen" #: apps.py:52 msgid "Current state" -msgstr "" +msgstr "Huidige staat" #: apps.py:56 apps.py:83 models.py:189 msgid "User" @@ -40,19 +40,19 @@ msgstr "Gebruiker" #: apps.py:62 msgid "Last transition" -msgstr "" +msgstr "Laatste transitie" #: apps.py:66 apps.py:79 msgid "Date and time" -msgstr "" +msgstr "Datum en tijd" #: apps.py:72 apps.py:99 models.py:79 msgid "Completion" -msgstr "" +msgstr "Voltooiing" #: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" -msgstr "" +msgstr "Transitie" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" @@ -64,11 +64,11 @@ msgstr "" #: apps.py:103 models.py:105 msgid "Origin state" -msgstr "" +msgstr "Originele staat" #: apps.py:107 models.py:109 msgid "Destination state" -msgstr "" +msgstr "Bestemmingsstaat" #: links.py:15 links.py:38 models.py:59 views.py:185 msgid "Workflows" @@ -84,7 +84,7 @@ msgstr "Verwijder" #: links.py:29 models.py:25 msgid "Document types" -msgstr "" +msgstr "Documentsoorten" #: links.py:33 links.py:50 links.py:67 msgid "Edit" @@ -92,31 +92,31 @@ msgstr "bewerken" #: links.py:41 msgid "Create state" -msgstr "" +msgstr "Maak staat aan" #: links.py:54 msgid "States" -msgstr "" +msgstr "Staten" #: links.py:58 msgid "Create transition" -msgstr "" +msgstr "Transitie aanmaken" #: links.py:71 msgid "Transitions" -msgstr "" +msgstr "Transities" #: links.py:75 msgid "Detail" -msgstr "" +msgstr "Detai" #: models.py:21 models.py:67 models.py:101 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:58 models.py:65 models.py:99 models.py:126 msgid "Workflow" -msgstr "" +msgstr "Workflow" #: models.py:71 msgid "" @@ -126,7 +126,7 @@ msgstr "" #: models.py:73 msgid "Initial" -msgstr "" +msgstr "Initieel" #: models.py:77 msgid "" @@ -136,19 +136,19 @@ msgstr "" #: models.py:92 msgid "Workflow state" -msgstr "" +msgstr "Workflowstaat" #: models.py:93 msgid "Workflow states" -msgstr "" +msgstr "Workflowstaten" #: models.py:119 msgid "Workflow transition" -msgstr "" +msgstr "Workflowtransitie" #: models.py:120 msgid "Workflow transitions" -msgstr "" +msgstr "Workflowtransities" #: models.py:129 msgid "Document" @@ -156,15 +156,15 @@ msgstr "Document" #: models.py:173 models.py:181 msgid "Workflow instance" -msgstr "" +msgstr "Workflowinstantie" #: models.py:174 msgid "Workflow instances" -msgstr "" +msgstr "Workflowinstanties" #: models.py:184 msgid "Datetime" -msgstr "" +msgstr "Datumtijd" #: models.py:196 msgid "Workflow instance log entry" @@ -176,23 +176,23 @@ msgstr "" #: permissions.py:7 msgid "Document workflows" -msgstr "" +msgstr "Documentworkflows" #: permissions.py:10 msgid "Create workflows" -msgstr "" +msgstr "Workflows aanmaken" #: permissions.py:13 msgid "Delete workflows" -msgstr "" +msgstr "Workflows verwijderen" #: permissions.py:16 msgid "Edit workflows" -msgstr "" +msgstr "Workflows verwijderen" #: permissions.py:19 msgid "View workflows" -msgstr "" +msgstr "Workflows bekijken" #: permissions.py:26 msgid "Transition workflows" @@ -201,17 +201,17 @@ msgstr "" #: views.py:57 #, python-format msgid "Workflows for document: %s" -msgstr "" +msgstr "Workflows voor document: %s" #: views.py:91 #, python-format msgid "Documents with the workflow: %s" -msgstr "" +msgstr "Documenten met de workflow: %s" #: views.py:116 #, python-format msgid "Detail of workflow: %(workflow)s" -msgstr "" +msgstr "Detail van workflow: %(workflow)s" #: views.py:162 msgid "Submit" @@ -224,7 +224,7 @@ msgstr "" #: views.py:215 msgid "Available document types" -msgstr "" +msgstr "Beschikbare documentsoorten" #: views.py:216 msgid "Document types assigned this workflow" diff --git a/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pl/LC_MESSAGES/django.mo index 56239dd014406874cb704cfcf78bf0872530e1e8..c658c7653c0f2468e3636f82b9dbf51b12164a51 100644 GIT binary patch delta 45 zcmdliyjgg|0#, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:31 msgid "Document states" diff --git a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo index 5c5c6e20e0cffa479740f547b580b2c0ef4a63a5..31283dc65e68d9f46698a917072ad63074cca811 100644 GIT binary patch delta 43 zcmX@edXRO46C<~wp{|j!f`O5hsqtiA#-)@0Ge&XyB<7`;CZ?xaDHKc&XUYNq8HWvJ delta 44 zcmX@edXRO46C<~QiLQ~kf}x3(q2Xj-#-%(yiFxUziRr0U3I!#TKQcy7j%3OJ03f~% A&;S4c 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 86f5cff65b..e1aa11eff8 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" "PO-Revision-Date: 2016-03-21 21:09+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:31 diff --git a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo index 4f93baebc2f5dbc828d2ca46002af9ca3d0d1e8e..5d84a7fcbb01638b11a47ea532dec0a45a9fc8df 100644 GIT binary patch literal 4398 zcmZ{mO^h5z6@Uu}1Qr6s{2M|l1j8<7W@p!NY-X{+Kf7Ti*6Xa-$q{O2YGyk0bWggv zcf6KzfQvJODop z7vb&jet0)*!4JSo@PqKj@HY5N!C%04(|;Ad3%(9T?oUwkyjhID1vUNuL0RWcgk|1w zDEjY%?}rb`Ge-Cj%{R4{pHTVepFBHEn@)G;L17-amLY7odL0RV+ zDD$sE@%z_s2>$?4p-y7dN8u`z{x_k-sS7_06Zl?u34Rhj1`ooQq3Hc96ubTo`BVSq zC3akgcfgtVj1hZ&%1iuy z4vJq_p~UMoDC@ilKMSwJkHI?-lJyQ3T!#Fl&KES0kf=Ts`!gtdEuhw`rjrv5})t#5`8~` zlFt{4{wq-C{|<^jufy-dzZK&lgOX1N#qLKTrm4rE#P{b#{|c0R{uVC5H=xMx$0$ru zcSGqfK+)HP;{W{x9hCF+IFvZO1jXLpK#BLC;V0lVC~>-#pvpPD9g$^I;x_ejn`wZ0Z9{&t=oZL@t<|U5(s)R;j7fQua}sC5hOW+i+UUF;QEm zLEkFr3fXLatydMh>TcMDzGW;^MgRgov|=J%$BRpF*DYc-FuxqU4#y~B8J{R znKu>F>8>`;1>MMEe$P&>ynEiHVBp4*mG;uoY9dlW+S{vmxgDfRUSlmzEk~(Myy(Ct zEr~9HXpPg(FNRIgV`cA^PV6AD4mqcTh+ddSG$lq8e$@4OXLXeIw``JI6KA5v>T(rv zzOGgywucEz7KvFE-TsGs;4A9uX3K`W9ZITAbtaCiT2F#5mgIZl99eIrI_Tsk4}&n& zTh=d}o9_cN>;%-b`s#;9{KUFJ9~ed5ci?4Bz$+`=gNUfrW&gRC%*hC zY!~OtUpZ%!_#skXTW!}KV9#;Nn|jUckg?^{Yv*P*>>y6k+M4SI?b^w#>uQ^EQ_q}T z->mt|3i+B`Ax*v5Sh%;guuxk(q#KLP!-r~(dm0S{Ya4bu5WTzP7LMq}L(RsKgALk@ zY|)xeBnKl-n)*Z-uzyw(8>GhRFB|E8)xSIWSe?UG-%5@%HR@)jYipa<^qcxD_GaCT zv!-WHCgx%g>1+nhu)t^TXk=o=2!-FNlKqBz7hV;$*%rKG$r!@8-io;rt-|#>tKO zxtX=qwdE>03-!j#shABDVKKLUQ>XSqIzI?a5H0Ce&m_*K$IfrA)Q(nive!B`sVzsX zxE(~@rarnAq+{Eg+OIWpHp~(e)>h)A@0vOq_^vy)xTN#XW3!Pyt{3K(X4Gadh@Ea% zB}jUK8^qD*#cdn-T7-$CCvi`$aD#`zMKgMObUCI#1SZkk>!v;3ae819qs#qT)Fcu1 zsR@{Vh5ek*9}iuQ^JzDl*9o%=u~m!PV(&lvQn$8f|qiPK^2* zFTQ0+EnjGbS&)<*FE-ZTW8sTc>}yll!&E6!d{C#y2YFYOS}_-GqD^rf_yFbZOwFi@ zL|jxWVXKzv&XmPnb z=>()W^T@F6b-Y)FPqq{}LySEpL(ENP{Y;~|5TxF5;`$Qu&g9n84`((vG2dNP*~9X_ zFMD}}Z(;=XFAdnJ)WFd%`Sg^>M_v}u=}RKl7DcRZiIOmS5?cz_au*)XuxmSRjh@3gXCE>? z1UHCpzNwgGM^DS?>(}*(fsMG_vc4`H7{qwUGSwo5{dJWuT3R{1o%2e`e{V@%|HLsl zryJHEdj3uErOrowT4M4HqjT!upW&*YUIc{PIk{6p>Snl&?Gx&je8H5&6eYB6+E&VE zmR~&7l<~o<>Jb08xODVXL~3N4mdmR0V_aB$p+vbxs~n i%M?RXa(R5@ro;P*`Mbv5*yzfpiLX4_YyKGu|6 zH-t@VqTTZtGl1>I9EhG0W6H4?D{&ug!o#>06SxI)SdFvj!^f^Ku!8e9ScdOW&n+YU zbLOXeqqx+V05>eu1VL2CgII+}aR-hfUCb5t`ZOxRJE)20QHd=eKl6%%A77*TeLxlR z3C}UV`OY6@7U!@Ylc@7a4i-+K7jIxA&SDUkPy?=@68wQm_%AAf3bJa(22{TutifT_ z^KtYuzd6gFb$AJD@g}apN7#UiIK#HQLnV^orYgu`3r?X1et>PbgsS+n>u*%Q5~`8a z$WW#UbIP=hKN?^Us)7T!8Kbxzv&b0cHY(9M4C7OzShIrK(_g58ix!ixxn&=x4jwa~W?J7_jd+o=yJ zKvU>T>7*$sh2}4WUL=L~PfMrlR3V8LqMhSTnpR7dYFi3Ri&}amTSQZ|()0ysiMP_U z#R{!}UPx`-Hkx9PE&Km6p!R4NEkx6*tPZV2aP`H3R3b5!%sOqQX=kqVzH_3i)A?Ff zo4-(Ay%Va~t=~yyzDwa*9 zBY|jYbS#}sVJ4OyPdSs;N&iqR89x(?k3|Bfvm^ac=ZkgRiF$(;^E3U+yXkS~i8tZ& YRX%fkzWvTyUwwX}s>PFE@Spem0|!!mE&u=k 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 9e73e5fad5..ab6fb8a370 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 @@ -1,27 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Aline Freitas , 2016 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:31 msgid "Document states" -msgstr "" +msgstr "Estados de documentos" #: apps.py:47 msgid "Initial state" @@ -49,7 +49,7 @@ msgstr "data e hora" #: apps.py:72 apps.py:99 models.py:79 msgid "Completion" -msgstr "" +msgstr "Finalização" #: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" @@ -77,7 +77,7 @@ msgstr "Workflows" #: links.py:20 msgid "Create workflow" -msgstr "" +msgstr "Criar fluxo de trabalho" #: links.py:25 links.py:46 links.py:63 msgid "Delete" @@ -123,9 +123,7 @@ msgstr "Workflow" msgid "" "Select if this will be the state with which you want the workflow to start " "in. Only one state can be the initial state." -msgstr "" -"Selecione se este será o estado com o qual você deseja que o fluxo de " -"trabalho para começar em. Apenas um Estado pode ser o estado inicial." +msgstr "Selecione se este será o estado com o qual você deseja que o fluxo de trabalho para começar em. Apenas um Estado pode ser o estado inicial." #: models.py:73 msgid "Initial" @@ -135,7 +133,7 @@ msgstr "Inicial" msgid "" "Enter the percent of completion that this state represents in relation to " "the workflow. Use numbers without the percent sign." -msgstr "" +msgstr "Entre com a porcentagem de finalização que este estado representa em relação com o fluxo de trabalho. Utilize números sem o sinal de porcentagem." #: models.py:92 msgid "Workflow state" @@ -179,7 +177,7 @@ msgstr "Workflow instance log de entradas" #: permissions.py:7 msgid "Document workflows" -msgstr "" +msgstr "Fluxos de trabalho do documento" #: permissions.py:10 msgid "Create workflows" @@ -199,7 +197,7 @@ msgstr "Ver workflows" #: permissions.py:26 msgid "Transition workflows" -msgstr "" +msgstr "Realizar transição" #: views.py:57 #, python-format @@ -209,7 +207,7 @@ msgstr "Workflows para documento: %s" #: views.py:91 #, python-format msgid "Documents with the workflow: %s" -msgstr "" +msgstr "Documentos com o fluxo de trabalho: %s" #: views.py:116 #, python-format @@ -227,11 +225,11 @@ msgstr "Fazer a transição para o workflow: %s" #: views.py:215 msgid "Available document types" -msgstr "" +msgstr "Tipos de documentos disponíveis" #: views.py:216 msgid "Document types assigned this workflow" -msgstr "" +msgstr "Tipos de documentos atribuídos a este fluxo de trabalho" #: views.py:226 #, python-format 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 4579ee1fffef38e75fa97eedc1282b62e785b9fc..03d30df385c8b91fe9e9184953f1abce663651a4 100644 GIT binary patch delta 320 zcmX@Y+RRpePl#nI0}yZku?!H$05LZZ&jDf(I03}$KztI2*?{;W5VHXB4IpL(;=54( zV;~KZe*xvc2hztG85q6*X)Yk%!vrzsIFRN9^3Ox)WQLnifyY1^r0^}2{sE+c`r!cN zK#)T~04N1^1T&BZSqgFpgL8gvZfaf$gG*{oYDp@CYf5GbgHK{oYR<&13EYN;x<JHlFjPl#nI0}!wQu?!IV05LZZ*8njHtN>zmAYKW?EI_;wN^b+wAU(UG{6j$c zI3o}PX)Yk{XJTOB1k$sh^b#Nq5?=?UcLHgkaxf#u{<#twd;#Ju#<#Pn1v dg`)iUApgmK7^5erGbONtw5KLkO@6?n3;?_XC)EG| diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po index 31a4eea592..12d7c01369 100644 --- a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-04-17 09:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:31 msgid "Document states" @@ -81,7 +79,7 @@ msgstr "" #: links.py:25 links.py:46 links.py:63 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:29 models.py:25 msgid "Document types" @@ -113,7 +111,7 @@ msgstr "" #: models.py:21 models.py:67 models.py:101 msgid "Label" -msgstr "" +msgstr "Etichetă" #: models.py:58 models.py:65 models.py:99 models.py:126 msgid "Workflow" diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.mo index 3d576e0dd219ea283f9065d93d368a70a1fa48d8..dda6baba5eefca3b3a4b4759993c0f0dae326238 100644 GIT binary patch literal 1496 zcmaKpOK%)S5XT!xcr5RLcnMHPC{ZkE@639Q!r0>o97kBn63f{jacu8)HiPD|>gkDN zDM*PCB2g@bLl6%s3Iw=tS{bic630Gp;M#NJ6p0VOfiHmg*X($W5YST3udBN1UsXMK z_wD(VVLgfcBKEh~&tkuJ4?b9zz~{ir-~-@IumXM$J_`0r{tVs^I|m;Ge+3^0e*+%_ z{{Z)Z?A~GCUT`nWr$F*Q4^sZiAn6|{{SLSfdlK7$|7`?61FnEigP(x=!S71{FCf*s z3qAq3>oBdmzof4Pu0%$A`d&u_=$0%pr$=ubKKX3>x$Y0cWU0`gmCJPgFvyU&IY9Wk2t5sox0~vzUp9A zj?2`DqPI|*M0-38!eqQF83)#~!{^0+CcI<3x) zx00x;lT_*;(bb3s5vm=f)vy$)>a03eY0Nj~cIS1+oyu$y8~g{+#Eo!c6`8 z6dxY_L-7IE@qL#cJjm(j?Dt)lAK?y1IP4j}wsSS@*XdYfIMZ&8pFclLnQ`l5NO8*) z-*@P$h@0^zchlb(8~LG&GCMV=eJC8^H3&?MO;wn^X1DT-`D*^5-L`k~E4I(`RXecT z`4w(A?3TTSn@!ut-72hgX1@eBN3LFe0ntA(`G?nGR(JqY)>9dNr2t-jsNuQK}$YWM7IJ3wb^MU#JTgxRktiMmGb|I%oWO8?&w zU!f3HxCNa7%3`uY54AprrUL3(yW`GZIaUd-Q#P@-0DIom~Nb>?|L1u`!Jdl5(d|l%n}B_{Jd0#;L@br%#z9aOd;F`Cb~xE3Wg?DhK7^-m}CtNjCG9+ z6^sn63@o(`fPl*B5GK4HtG?*g4sjRaSZKg&hh&$t^&E cy$l!TgP1@Sn=WhxssRdKY`WMpc^|7302A_D$p8QV diff --git a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po index 88104cf9a6..4a34ca5627 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po @@ -1,40 +1,38 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-02 04:15+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:31 msgid "Document states" -msgstr "" +msgstr "Статусы документа" #: apps.py:47 msgid "Initial state" -msgstr "" +msgstr "Исходное состояние" #: apps.py:48 apps.py:58 apps.py:68 apps.py:74 msgid "None" -msgstr "Ни один" +msgstr "Ничего" #: apps.py:52 msgid "Current state" -msgstr "" +msgstr "Текущее состояние" #: apps.py:56 apps.py:83 models.py:189 msgid "User" @@ -46,15 +44,15 @@ msgstr "" #: apps.py:66 apps.py:79 msgid "Date and time" -msgstr "" +msgstr "Дата и время" #: apps.py:72 apps.py:99 models.py:79 msgid "Completion" -msgstr "" +msgstr "Завершение" #: apps.py:86 forms.py:39 links.py:79 models.py:187 msgid "Transition" -msgstr "" +msgstr "Переход" #: apps.py:90 forms.py:41 models.py:190 msgid "Comment" @@ -82,11 +80,11 @@ msgstr "" #: links.py:25 links.py:46 links.py:63 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:29 models.py:25 msgid "Document types" -msgstr "" +msgstr "Типы документов" #: links.py:33 links.py:50 links.py:67 msgid "Edit" @@ -114,7 +112,7 @@ msgstr "" #: models.py:21 models.py:67 models.py:101 msgid "Label" -msgstr "" +msgstr "Надпись" #: models.py:58 models.py:65 models.py:99 models.py:126 msgid "Workflow" @@ -154,7 +152,7 @@ msgstr "" #: models.py:129 msgid "Document" -msgstr "" +msgstr "Документ" #: models.py:173 models.py:181 msgid "Workflow instance" @@ -226,7 +224,7 @@ msgstr "" #: views.py:215 msgid "Available document types" -msgstr "" +msgstr "Доступные типы документов" #: views.py:216 msgid "Document types assigned this workflow" diff --git a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo index 3e945218111e48d5db15932bb47ca07c65927e63..d02ec2a0ecf7adb006ca7c14f9f7519ae0b57ccd 100644 GIT binary patch delta 201 zcmcb}@{Xnco)F7a1|VPoVi_Q|0b*7ljsap2C;(!1AT9)Aka#5!gVfdo@fAh}h87^r z0mP9^3=C{QItfUFSv>w#d5PJH K3{FLnQe==sWIu)f>F#rG^=N#Yw diff --git a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po index 6274906ac8..50b8799fb8 100644 --- a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-03-21 21:09+0000\n" +"POT-Creation-Date: 2016-11-23 02:53-0400\n" +"PO-Revision-Date: 2016-11-17 08:59+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:31 msgid "Document states" @@ -113,7 +111,7 @@ msgstr "" #: models.py:21 models.py:67 models.py:101 msgid "Label" -msgstr "" +msgstr "Oznaka" #: models.py:58 models.py:65 models.py:99 models.py:126 msgid "Workflow" diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo index 0ca6924840a9977cf51b723582a9991de5ca3cde..a5c9bdb86e2626591dc5fffb832279774b2bc940 100644 GIT binary patch delta 45 zcmaFJ@{nc1J8nZmT_a-!10yR_a)D*S2W~?{T_a-!10yR_a)D*S2W|rsT_bY^LlY}Q!->Dw^7|y_rI#kAr&=jgWyCxCO0Qvn3WdHyG delta 40 pcmcbqb5m!-R&H(s6I~;71w#`nL&M1jxMg8{3o9d|%`dnMxd8fp3uyoV diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index e855b770a6..8bb4bc416e 100644 --- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/documents/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.mo index 3c42e6014ad0b25bfcba0558bd0debcf084cdd68..e1c7a6fc8d3c369f874f7b7ecc4d6854d4fd8607 100644 GIT binary patch delta 40 wcmcayiLQ~kf}x3(q2c5jZdn-L!pg{K^Aheg>;UG!3bz0N diff --git a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po index 4ca1c36f72..cb82180756 100644 --- a/mayan/apps/documents/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-10-28 07:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" diff --git a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.mo index 6cbde92378325238c8430e2d59507e9579d1e5ac..7e472a896e2998dbf1e1a1b99b897a9caf8c5230 100644 GIT binary patch delta 4337 zcmYk-4R93Y9mnw}0Za&B-WrmCfekO3G`VmIJF zINXU7@d!rn4a~slU*j6Q7l#Ind}LPPSPUZnOgDcrc)mHv0fRHIpepbt=HVqw!UXQB z8K$8gVDX1B8z1UH3(<=;cnfYv{+ZqU(R~kN4xYd&e9!G?F`5ZH-}pFSa%MT|3u{p` z--Mb$Hx}X^_wxbNjLxA3_L1BF3~!|$pXq#_imKF9^x!r~$1(m3jkC#y;d$ z=2xhSTt-jutW^bcP`Wv_ZN7Rf4QA_hF zs>Jb@^S~t304JfY^CC+XGd>RVz)IAOYmlm&2Gr*1LOtjyR4EVOBs_+C&{5>_OYi^d9O%8hfZFAkP$e3{Q}o~*)PwU;*ZHsn=inyn zKyAuTFb{`OcTK1eHDjOKuRty_)u<)jfH^$h^m3q*oJ7rF0NJqSUDO&~anJt?wIqq` zP&vjm4YjEHVFrR;Y2;t*8qHXIGd;vHSg{PmE!j3)ga=S-J%|+7Bo;Z>dr;R`;%HnM z<3KlTMn8s7YyL9o0lz>E@I31E97O#h{u?!;QPZ3UO~g|A^HHBajAQT#)P#DGv6vH> zj31(&6Z;zn`r?z5n|-(2eprn}T(y*U`pXu?;n&&6t5tqSmetN8xcy!_%ni z&!HyrC)X>OK>sT0d)HCVyT!-S>-{h0;2!kja@^teFCwqJvF>#CMg{V-Z(=wL4_Y7*Fr!c0O{+a`=@q3t$$t zViq=|HgC-B??zSXC~C&9qL$<|>VEH{?(+xKL_RK~{#xUBw!SW$;Oa$fw)r>?*I^rW zqn7BZYdmGp%+gWk^HHVsqc*dRdAQ&Ge84?_4mHv1v#7rwJei*@tzju@yRmxeYy-5YBu9-cobEE*HIHYi@A6;#(_$fKG)gZlW`dR znK&G0qe@(k+Ras%jdiFc2%-kQ3)wE_Ag1H*Tn90ZzFM7wv0O#$Y5r^_Hc^Syj*^E6 zFNUchUF2@EooKccVW=JA?{Tuq>6)M7_ej0l-|Tubnk+BCP&=lg>~=d_ddf$S&o8I< zGxA-sjJ!zViRQY8sA*xI?dcvpF&5%zG0~E&C)%vL$X(>;tK%HedHOpzYufDKGN!*yB{AV%Zc{nSM5g}Xs_w{H`)M4J8txx-Te}Mz5mrjo9|Ad zRz=zgTW{zW70e?<`{+S+Xit$A@*L4Ce{&1c=_k>zo*$vpO|-MsUT`o!zyR?QZQeCx z8&R7_4w5ls0r8P0(m-_IZ;_kZ18(OrEOC!xr#bi`=_7h8rjZU(Kq|-qQcTjxcgS86 zCJz%od7P+Kl1B0*d6lRYlAjR$JT#LW@(Ou^e4k`$->>6fGEpldi%2awNz_(5n2p%! z9?x{0iW|sIa>_kdg!9Qg{hN{t6B3(3UBUKHpsD}B*g#x@wXxOivYYy^W+ud^RJb2m z8|`qUH5BZ>mR*q0vnn^ErzUsG*hn-KwykJ55Ls(CSxuoeo$Kvjw0}cx*05M{v8QCZ zxw{Z@&$*ykzsdZrg!#bti4ufR)7S{#T(J$2zg zFw!32{(h@2)Yuw`STzB=qs_KvM~Ava9YfuD4n;vbI+t$-TRHWv%8W%g#fwI$l)@n-g4o|YG%QSVIe#`VtCi6!C0o<9GI pyoylU(A2Czrv}o|YKPlG;YO>g)o!xGJR}me+uOPSHUC}1{tr@t?G69{ delta 4093 zcmYk;eNfd^9>?)7Ngx3}fFelh#iSKP1o8p3NJufYP*5m)z*}$?M7{B}iJI3;Q?oR> zl|7(Yt!dh$x6Dba+16HFrWz+3b9S}tj~$!ccG78mn6_r$pZhz_c*gI2o%6f*_dDl& z&pAK5{LsD?q0=d`&lqJtaV_zWtIdAFu0%d4>wBAR!423Gv-+6%Fc zzTb!%P#0=uyRjF3?Ao8BGIRz<;{TAoEO&r+-y~GK0z-OmJrzBm6E%SCn1S!&_1KL{ z^?AGjQ_{UXP>x#T1*i!$qaM5l^YH~_+t^XmfKIyh&!~yTW{`i~m`rac(1)>j3Hgov ziVWV;xLY$Fi5h4r>cO*61M{Oc)hblx4r3C2g<7KTP#vDd3Ot9ya8f4u4^jzadNcYO zwYC>f1L?_zP^y!inaJ{64r=Bls6BEks>9jtx*yfyLewc~b?pxK{c6nS`r{#YVJ}v5 z;UHFF3Ol9-14!2GAm-q4)PR0Nr8sG@*>yM(xz*;OGO_}7Ul(dZ@1ZjNSJVVfq9zdf z50z-jv6u_LqK@HMo}!u6qEg!E+U=+rtwJr$qo@>bMRm9XHNcNhzw1UV)iG3uXHd`m z7n0m!+SDC5K<9ru70qxzs^debA0ERZ{02KPkQo#@or<%l0bfKd zNiJJlzc0eB81@K$OZyu}r2*_G4Iyo!BUCi=i>L?1vH=P)6{p}7RE9RMFSE%>I&>XY5ScAI%9n?}C#6RQV9P+O<+K}t5(Jow0`v`LMZSn{&#kHsb zHlTKSJ8H8%h5FrY=OI)^PNNUcV*#e-c{84jn&2GN{dIZdUzO!tP^!YHjC8qnH!9V~ zQOD;;i0)53IC3I{#l%W=TJ+Yr~GRzN>Jyr0=28_ zP%~*mZKm}&2KTt{&tNj`^QZ~vZ!gcZbky_8Q61Ev?rT8CZrjj@-B^mDe^X%@EuTCk zU=8Yle$=sBisNxJ_Qs>gxwVt7{a@5Tu4cpNzEnJgBT#Fdz>d@e`l0R{hsxk=WWpg^ zLPaTi1X*_L!b&`heKCWbBuAhIc$0G~PNQ9kn&FGM1&^Vg(>U78et_+oEulaZ5V zGf@-hKn-{eYRNh=6i4MHD(UzdY6hRU_7PO7&Y)&|4z(1QQ4dUHW9UI?s5jg&)Ebwe zepl;!0JXmHsNRES^qv%3dx5oL(OcqYd0bPPE5x=sF5E+wu7C(RP0saITT}P zt5kYK&$FxA6I42g`-uj3aU0(2>J`}L>ML=sW=l4r6L)w`dlz3OX1n%-&MVPu zIVjQcDxYgzeQCHkDKlpht@ntRh?&GI#8rf*x{*-P!aNmzKWRv45w+=rR%9U&-K@x* z?E~TsLS+x3EJoCz%pk~1$Cp%U=0E}TVlx^_8gJ8UB6yK8gsA)<=Vp4>vHyiO!WYkC*B zvLCN#MmP5kuIc#SMriM8d#Kz>G!ksZ=$->xMra$|qXy+MqMis7am1CSiN-rb^Y0x# zKw~wbjjggh`pN47Yl#9vo7Yb)Csb}Go+FZpTZl2leZ-x_3St9sWx2~WR$-B=hxSp~ zMQkN>C`J*Bi4jB@@hnkD=s>7EP6UZ|Vm$E(p)#46N32uBl{|c#=u6ZQgNQeYM~OcX z1I+HS1yrshREmjd#9PE(LS?Q;^c~XT>f@Z*xP*9^c;8*i$5LWSA%H9?j4vL-={vXD9{$D_tgjM+7}0ww1rn@l|@cw_3x2bFnVOsIA7uD35A8>%fkl! z-Y%X{R20t29?-igcz>X!E$FKXw%*s$7>xL{>k}fU@;AjqRu+u8Dsr@_xo6tcz@oqG cYprW&3-~4no1z^Ad=G|mCpJV5Of2c~e|v+eM*si- 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 572e6672d9..1bd46e69a1 100644 --- a/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/de_DE/LC_MESSAGES/django.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-10-28 07:33+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-10-31 19:06+0000\n" +"Last-Translator: Tobias Paepke \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -538,7 +538,7 @@ msgstr "Dukumente drucken" #: permissions.py:34 #| msgid "Delete documents" msgid "Restore trashed document" -msgstr "" +msgstr "Dokument aus Papierkorb wiederherstellen" #: permissions.py:37 msgid "Execute document modifying tools" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/en/LC_MESSAGES/django.mo index e2f63803e5fc1bf41c1ddd95a0e0760787578589..c26d0a4fd75914c6139af8e5ad4332bdf9881476 100644 GIT binary patch delta 24 fcmcbqdQ)|SIybkWp{|j!f`O5hsmW#|?&a(NTqOpf delta 24 fcmcbqdQ)|SIybk0iLQ~kf}x3(q2XpD?&a(NTwn&H diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po index 1b6d6fc3dc..48cc22a2d2 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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2013-11-20 11:36+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/es/LC_MESSAGES/django.mo index 98ff89a336edd8c0de3176f021b64fde22666b67..6eb718ec365923d7055cd6c3b0f89ca936590578 100644 GIT binary patch delta 4867 zcma)S6M<9$u>hR z+zqj9o`W**2Ur7NgO@?=s&$2svzVT+C#(*5BdlV)0OFH*0BYS%*a`b)A02so2o8cr zf(7RwHoV>CP*<#I9D-!Sj10yTpdvF9@-b;1TE8wBZ-?4FjJsT8iVq9Ih29*P>$_{s*%I6GyEe|YTke{_%>AWy$7#^BRHi6 zXF;X%ZYaAODu};A^)M6S9!S*9eyEckg{p~Hp$z>cn12__&^f5v@Od!)D)_#TF!W`< z3)DWN;566(r@(D+I{Y9@hiI6FO0E)|3FXKtSPeJBKJd3tMfxwO2;?!)d%dAfG#VZHqI9b5@@+g^k^SoR${3gw5v#1~K}YEKC(6`i0$8-g-;6_kUGQ0s1i zO3idAgY%&_ZiV=2?uM$7ZBTahK}GTq4C($Kqa#CSpf=K7QE`+&ZPXjefkBXuspX*v zOogP^I8fJcJya39P>#L;W$<+R*Gy z;3=pGbm{FET?O2bhf~4$Al_Zg_lKa0@?EGJ_z;eP?I@t@;I&XSl7%zi!!SFW&RIG( zoXB071@}Q!X9tcu2+o1G!}U<1JOh=}^Kc#POx)$bHmIUK3b(*dpi;4hic>0gLq&Km zq|D5(`V)VmX-+bsg&#w1kSQV`-VX%C7gG!M{Y)qa7C{bg?t%Dj_CV$OcW^X30WX6c z2l|G(Kt;A1YQIK^@1|)W@n@~szy#4U&qE9T70S>Tum~1j<*(}k<=7ag5Kjs?7gA3q z0~MJqP}RQ|vV}Poj6Z^^jn0Hi_NuaUYUngTd6^ zQ3NK#j?jUM;5|^cYCF_^2ZHhMq3rw}>R{QA=;$P0z_YNJT{Zp^Dug8@)Pg;ra#jab z<k2b*tWkcfil!5Z(VNJcl!}5-McR!$SBv)UEg% z)CoR?GEhXgyj;R!#*Od_I0ed~a4_#c8D14|eK5ZjQfB6HSfu;^DxFp)-h_9;8-`L~ z@JT3#D!7Aka0Ha$7-Xqg4wZ`iP{ni-Qt;+KP${V5C8eMaYCIY0ATd}1v#=2RW)qz{ zxE)d-<|I@K{s&88ms;!)Ub$k8< zvkLK9ItpdM2;WdwsN(7eEqEK0BN^Bgt_{Y!pbQ;^I{6`}YCjDXnT{j+v|$iw6Q8hjQfK5FgF?U_6*#9aZ;OmYUU~QEK*aB)Ea$wk&^e#NKsOo;KO@9%5!Tl zR-S)~#-bRy2@OHIA!<+iFxel_QRvlDNMY-abQ-mVNcXj^-4Jw|pdz8R6j7^Y4@#g1 zQ8ju5wY6n*RNS|qB+{?t65anXbgo4T`~7GgQq!;6<7gLJfi@yFBJLIC8gJx3biL-G z)o86h<^3-abj?gUO4meW2a_v368{}^2B7)D7Z;-&gH;z#(62}BkSbbj92$+bXh2iF zD6RLRAEM3Z`{*7NML$N{&~?aLcq4oOU5)mkhmn3_e}?Wtn-IT6CW6%NLus$)KgNSa zXg|6V{Txk2%TX;->*>S$tGIyvFHj50KEq=HnuQJ`wI|R{^ceaHQVS#fYSkbIqVyr+Mx4K31(fmJ?KvgI0}}d26QWmBej7(yk{}b z_NeTlxe)#7s2`e(4xqhAzYS_dXua19-uj+5@c+@Ak$dCv0r~wJ(pKCKJ83JKu&rn^ zl4-FMX{#l}%skt2?6@6C+fnz+;#6MPU3-P)-dfqCa2&6sEPuSHw0w*|zVLReCER3N zk#MBhHvU)X=8HDJ=qXxwNuF zG`S=ZPlluJiPF8jtog~573%ARtVnY>(e#ZM;$;g8t;I2W3Esb2c8B}tvf>UY+es%= zb~I;ojpmh%54N)w+bJiOOypK|ThXqw#kRpjwR^gJb@{w_GP2OzY%gh>w!9f9H?!g& zdG6HG9&U4GsJpkZl}?47W?X3tg}bJ*rn}8{X)B$y(#IvCSJe==$Vk$$GKmYjCatLLB`4+14fS@Xg%SgfywsRX zrASIT84WvD9N|mCAxJIZ2#2#Bt2LYoyE|&C`hCl#_lA1jUT=cM@vxWBqfcYoinSbl zw8_?<4BF0`bj$@WzRl|T+>wygZqhiC@9+BcM%FyV~lZ|52(Dvg=ZLsg{^!Y&cG_#voQ*9U?~1>|NJRN(hiI;#(@rOgQ=+d^N?H2 z6x77#qUN*#HSk)DqJL9Qg@5K0AL`&6Ovj7Z1Wjw-14B^{jKLU8vmK4Gw9AlxW-}kU zZy#zxCs8YS+P>a^8o*_Yq zkv`06)W9yFp7RrGAP-S1(Sn;>U^Hr_6CA9+I!fh20rtcfaXmWm1Zr!}qdLBcT8T#6 z$HbJPqY+xqr62Gvm#>UuV+pMj{uJHl=kv}OHu!(=WbU@@w_5hr3T7UDgeggH!` zs;R}UcpSZZiJfWRK^?Xb_Cqs|N8O)?8t63C^D9sjTIQzGo62hJf}fyH=`GZfJ+Rw< zqedRUJ~3Gnidw>0R0oNufeb+1HyX7Cg{Tf^p`JSrJKz#zSB%@DqK=NEmh2S9V*{$A zyQl~Ki#lvA_-#EX1~q^rWYQ)b^%mr#WmR&`?j?Yjt??6KXjzh+5GEiq|w0(UBYU$^DW&f+} z3rkUlWEE;48&IdZ9(Afc*aI6-Gk=1*{~2x#V75$O?Oja28}3K7&!YDJ66WAN9E9;s z-Yz$l5-L-0F;2&e=)!Js92l%c9lnQHgoByBmhd2I4^QGQJcBw5Q#gs*q6MfGT!Ac( zS&#H>4x{dCK%GDHBNgrKU#QnFgb&@2jOr*4>D!D&ZZQi{ds&Bl@DOURZ=gDAM6KL^ z$UhUwK546Z^O1xzkg=ML3B3PKDkr$0j?SY-d<`|AM%2>%i8@?OIZ2vv7v#8@{@4|# z+U>Qdy{<=f@F8j--=lu-K57M?qqZov3+t~NNAm8aVmWH*_M%qiUDR9f73u+3?e-(o zgM*ol1{{qVXgvOky|4*(W^_(WMy<>!)S;Y%8t7U#6@A6lp_b|x>hxZ)uiwO`v>&71 zf~WX0h9>*|?7A?Mb{%R(&SEIuMIGWtsDU?Ox_W*`)WCC5{kSJm(dl-fMpSM8U<0b- z-M01i^<&87&8OH5Z{q@dfHQD<3g-hqLk%c}Wz_&jpgLZOTJasouDXqf3fp0>qn6yH z`9|Cxbq3N=Gs?x@n2$`#tU)dLNz@89peFDGYT)-!19*)3{TAJQThRtzpq-6P_4j`W z6^(2R>JS!V7|utX`sJvl+=t>F;O9(W)107r)Jf!$DtX#g(5p{UpMbJT+_qh|CEY68vpmeN2Sn1qSQu`y#& zhj1Bsw-()c9qOrQslG(*?G0paOb{Cvj9qQhP)nJK+WWq!-y3RMj2g%)?1@|K_8DwR z`w|AA3SHM_Lh;SG=G6cL@uLMf9b!jHuL+Jn|;#Mf^o?iONi}gy?nM zLrRH*6p&@r@vyW1E|wpOae(hnM4kd%_Nw-P8JgW zLVL?nKDUznq>|L={OMI1PbQEpM8*3>ggM@pF>j$>NtM||r+kDOls+VmY$OR}E_s_o zkVvA^iL@kh)S&Do^NIfcc*`h0{q?@ow~<70m~zRSp(>ATFn5YBR{iq`Am?PXO zaSZjGbxaHJWJSA!ti}!{p0bXY0@{|k=DDg}rOwidl11gN`PHV-RaIS4X^n5w&YBP# zZ*7ZB^<0kK9~hRNmD;11Gb1Y}Bg0w|7ZaAAotoaqnVyl8mEk!O_eGGkC85UiM`EX- zmP71ERX9s3T~<-@FV^C2E3D*{aLbXB=UJKJ4)C-}TOVwdB{a9b>oLbOH*;KIn7S=q bR9Rf9)kure~*TrM)19{|$w3Gx5{ diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index 8de1dc9918..5b583d8e16 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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/documents/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.mo index 340538e2f92065fb401ddd117f268bbbeed0a937..4f8ca0d1a062e3fe51fdab456867b735ee666f1b 100644 GIT binary patch delta 4265 zcmZ|Sd2p2V9mnzSCL!TSnnOZ}N#Kd(Ado-~fp8ka*~A1ni->4QmI#EbkV{%%A+_ZO zF(rVaAeI7B1YJ@qBQ34d!P1Ioi&Wd8*s7f}EsWHb8LVU9pM4%${^>LM?CbeG`|R_( zABL0dzO7ICf|rw`b{fYil1~2C&Fl+&qZc0>hvUt5;SubP;}gsrtUzwHr5K0HaVQ3H z7#_zS_z70ybsUf563r&#TAar1c9xSWE~F%x<)R;F;Z{@|{)DRd8m_{dcsDlRW!4|J zV-p_7WE{}jECxqnxWUL*R)KwR0rF=pd?Zu9ZQ_K+*?!aryn+MqJodz!s2)b}bXAbR z2W_?-R7Is&h-Da!%aK2Of)71+8)o1>tiaP=xjU`tNBx$=37xV@s2|Kl^?Wg^2Q8S7 zYrOA|qI&cOs$mzr@@4!Q25tJ>VCphWr*& z@e|C!uaIS6Iep!sAC4uI=b(d|P;-71)uArb^WVZDcp3HkI3B7g%t&SYb)l3C>giO} z52xcLtV1R zcTvCl4Ar4v53Xv+(@;Gag6hEp3=cV$Ql5d@o|{oU3!#SeCtmp+sz(=5Q}cV&5Z^#m zcnj6QB*(qaL8dBbIh?4%;iw0fA){`UsKrx{s%SN8C^zCg*oms>bzFiMP;);z(_J%_ zsOQZ`HKZQtv;~m1*fxyT{(qSht?n*VOaFkX@N-m!sx2Dguo!#eN}PgPj6cJH_#vtz zk&L@~8iy*UAzxWGYHFtn*z>Qb#dHnT zkejI8kiZJoZpcD4xCAuJz9TK8xDFzeBBwe|q1?6uSGnACBXCIjYC&Fah_WM&<;vEbJU=q_3gY zh_A?z$~ncomcIZH&V! zsNY?~Ocr0yl5ja_`S-d*F%>oR(@{g!hN^fEhW9zDM;B0Yc@<}3@-Vle#n_wjD%8~N zKn?L8^y2|6$L`E$J62+W_WyZKRMEdtKTIFt4pA2Bfu+bowkk}-R@C;|fa=*U)D#`` z%0EX{d;#^|_yBeP6;#8oqek*>UaRw|-?BJS3)kTz_!s2Qrm*Lx<62C?_mDQ)Rdg_u zrOXz#a%2ZuJ!*)zdmcqK>@2E-AEO!^HQIdzCt;9LvA&$Bht-&XZ5WRmP(9v_-S8#s zgC|fuI*Wbrebjx|Q9bvKaqsJisxT9^-G-tT=@?AMd1Dy=aD`mZV%dN!Pqu)%$3e0od}j77q(dFKvB`O~ z*?vS`AT!AKNd!?xw-Fr$WM_vzwtq0d+5Kc7Sw>>XdU79moxDtR93vXSE)_Vc2=i`F ztH6=&V$Y$r(Gk)?zD^z_I#!a+~F!MhdTz=J1N)q=|fod8kxyPBiDVJUAjio@@&l5h#lM7;0Yt}0Qc0$hlSIdS z7i+~9@4VDA8<&$O$!p%VAy`hPgdU8~kLg|)XlrZ;)YOGm_Nnp3IIWBQZT`B@yD2dd z2@}1qoL2verp1BA(52L0M)h6T5U5>h)&92Im!0sHrcg(}iips^oa)G4MMVY0B~D@S zsA2bZOv}pXRa96|TWvDs;U^GL&+ zM`|CdSy3M<8G7E=qc+gk)Y8D^(9Oaf5oxpj_q~6GQ|oVT_TO$nXnjdtbZI#abL#v~ lLyglIXleB~H2n7l(|1k(=gZL5kzYo1L<~s_-7_{R>OTzL1KVc{XYW zMVO1_?(Ywy2GoX{+0&SaFT3_(REAFAWc(A-g$*6;eJ_A&Pr9Z=pIIz#9Aj$73L!{I^h< zneNT#4b<9xj2g&aP^rG?{03QW8^T7>?jDEQBUz{pZ*kWvQ5{yJPRZS_y~zE&0Vi-h z6m}P$#ab@(;C#G<_u@=;4%xOI%*KAyfIdN``0sc#rjPSBZv`qNOHkiyLk)N*YQVjy ziAAsk!*5d2vHJ=&lQh1q6plx=^HDRn6}1#IP$^xA>Yxrapbe<|o9Z z$+JGx9yx{d6ShyOD0TnDoA6syNB)4>Ls*P@;47%j*@t@I+o*w@LhY50kU7{tkVn|C z4DUEjMs4Ck)PV0pO>iwH==_JN=-hT<0e0g?{0-{Cm5eG27oldviD!K@fn;RgSq5s4mFYVDTMZSh$pg-1&gH00v;sAd^{7*@9d!!!p$2>u zm5I+$_g}BZv8gD?3 zzCDgg-EQZbs1%<@?e4FTM_6pGSt$lF0Yj*z+K5`34(DNvqkTG;{1;RCBNv8X3eyPS z7}RE&julvoA>4(P7{l4C!Yb5#9msaEJs6KCP)l(N=iK&+z97jK%Lp}d% z)RHC@MwcvXIaKcELM^6XFOI-pqt@sH)Pv7q6aE=*!`VgbY}|&LaU$!ej>=HqTY@)W zBaXlg$o{l0OvYoFsPjKSMKd~!T9eORJ7%iaaT3OIJq;5vfZA+%s1z08ijj zoXGo?f7ZdrJbVjBV+u!&E-VKF^l$Z4^lQ|PoGd$pO6_~78T}14z<9RyU`#_MZGO~@ zYB32n<8a)Ln&BSQ{e3tJkE15=E~esn4C}_rRFvZDZ}o0WMs=8l30REUgjJ{v)nl|n z)RJvS_LuENUV3&KU&G6&`}UQ2_x0mQ+9y$&J6}frHN!8tP>FHuJRPgqs2e&lh|i%? zIe_ZW$I*}@Q1?wl4Iqe{u>tk>3&_c~f1@UtQQ=K22laj_sR(;Nqg7l`M{95b?ngcN zx2}B#$I|`}YVA`iz5AIi({LyH@dzsQ?;;1mzSNBxN%{r;dBJz_f1r3Ph;hrNh8I0uMlh*`wFgvxs2N#c1mC^xYv(UfbsYKdnF z_I>o_rcK#R%pv&gi~hJl^f=3xi0>2I)u7x#WDuRigM`XG#1D!2gx){92$e&GwuJh> zR*q47^jgdNS>8u`6mb`!Em2IU%qE%%&Pen{2GODozQom^!bV~T5$mp9xgN@7DDBAVkz;28m{ExVIrAWMvNt1CAJcK ziP8E`lOIsInNTSq?j&9#enF@#@`(Qb>eOptC7~=v+_fnWAOb;nx}krhPnV^LUb)~ve&GqbY`tjoZ%uKS@Q%Q*JlvYuuqDh&gOw?#4YMK20_oKVt zn^`{Mt3C7Yd;5Nzd+s^so_l&9IsM7+3i#azodx~Z2|@5v@XJr*55Lcz8U(k2p97x? zUjB?A2*E2rng*`}PXTWLH-oo;7l2;?PXd1g?g#%D+y(AGEeQ63zX2Wq9|9-Aji*Ck z51au%0E&elfSUK`;OoH?pBV(t1K$k30Q?}BgI@rj4W9Qb+JFm4;UJj0dQ{Yp;8$kXAZ{?51 zy#rhaehPdA__wZn2FyI4@-~pA1&2VjUjVi4Wl;Rz2o8fcyZ85jTF;k3@%1fN{vP;r z%Ezs>?@t3Irw!l;_!5w*gA`Q1H@ot!pvJ!oRR6Do;^W)kbHN{hF9J_J0|K{!lKVdJ zJa7&S!P`OY_kEz&^8l#%9tKCj?}6&SjzPuO2&nSQL9O#up!!ANLtp`lkIQKMWbid0 zLjOI zzzx)Y-<8**G>0gk4ITuSz{B8|K(-_}8|4`SF9gL;1C*Sv1z!k$2xO?>i=gE3kD&TJ ziGtSiTu|~p7Zm@OfZ~4|H1YM*?b9|;^X&sQ?i7f~gDXMl%@U}2-T_LE?*-R`9|bkfUxTj&zXfW%OV76Y zawVwoTA=t?0$F_kc7B_Ji8rYeBX!xDAv%?ghpFeITkD{0*r6`Da)E-=Oy6 zsVJxL6o;pS(x-sSJOGY^H-h5#&%jrMe+OOyo`VoB2NUp0@IFxQ*P^7u;I-g1cn2u?{s7dx zKL-o&#B;2ldcDKD!FN#qFsOZ*JJ+_q9$Z8DCQy2ND=5AB7%08C-{Chv$>IATQy3;T z1Lweu{K^%e#<>R6zAQR?KX@YLzW}#`UjoJF@gsKMP6lN+=YXh8umgMrcr}PfgS$bt zEO-zUe?J7Je@{iYCxaWolfd&q$?XzQ{9FfW|854=@53N2F!&6p^?%iszYA)f<5|pk z;3iOda}{_hxCDmaO(0E!yFl&ZL!kKnu6zG8aE$Ug{zz{7LGc}f7lCgBWfu>C;`iS{ z+2xNNp1j4*zaBi5`oo~cnFCJ)uLC8=TU_}z@b4*q9DD|NJ<2J$-U7-V-UCXWpLXSk z!P6=K7?fO2VzH=Huns%`?gO6=z8loMcY@;ck3o(5m*5=uAjlBGw)2TOzyxGVgP(xU z0ym=EPX;drPXTv1JOJwbYrtoMT~Pb?7EtSbrz?NNy}t+4{9gp00)7S5cwYxmf#9Fq z`_s1Bc;!s6LH#Y@5%7ng_ObP1+x{j{>%SL7+K}w_CTJ)0 zdFWG+exHOSyHBgYZxTX`!L2IrJIg|F2PmI=H}pVTz z-3Fn8W-p~z?|}|LFM@s<(r>{+@Ii1I`Yl&}Ie0eon^5BFUJ1StIs|F|{qOg9c$zOb zybpX+txooS7bO3%ACf-57}D<*Pzyp$jh+F)b&zcEY8Cjs1Dc244M|t)zm&osLWQf$ z!5g8CuKW>)9|t373_1yFK-WY1y#%@)ItAJbZG)Q7mCzfYUx(_y*SNy3f?M75=fK~E zJ_J1%+6>9A&xQ6t?}fHN&xGC&-2!!?BhWbX7D&H+&@A+J==UN0hM_-zWY=@hI_Mtg zZP3S{wa{y!7ee}72we(Y4&4jsca?=;5$w6=?G879*FtZGKI`g6!IwfWbLA3th0Uzd zYsYC3=0$HdO!6?Qs+N*sA&k|~&i0Bh&BD2)6^Fe}D~px@GC3^y)80f+V7F|&1GvzPP7h&gI#&iV+vZ)kUq zW?5S!!c4}#)i(LDhmio2Hgg-HEG;CBg>prCzj&EJfr! zbVe(}RvhI8iphR@HE#E)VS{rvxWNvO2D=xcRQn>nqyk1Css?4($KNuqno0$CFT{;& z@?JaG4L_(h+VrT}pqHM#a`v6SQ19G#FXfQ5rHqZJu>gaHFHO7JYu{Dx=etpd{msK} z-08+Sn&Y$>9h0$yc_%g|YgXt-%QuG2B=5AMWemPqsUm7VXblY7YZVfp<*DCTg56nL z&Pb^F^YVd75Bly~~B8`_S5jkH_zO1{Ux>1{n zWZA(U!(#kCLMXbV2^VF<%8A! zupv!L(s@=B_t2w$XX|@~4Wkpx;XO$+TT1PzR@KQ__Lo9qX#I6a*bkx(dAMmqbEsC= z%~(&7@FH#|_^9fYV^Qj5{4xhA&bu2oqE@5F5oNr4Ik=AO;V@~kH?=X0F_djo3LC}+ z4zw{R)A|khdjI-ZlF<;gB{{pOnD&QeH|D8tIfHNdW~dF2#7i|PNY$E7fJ3=IBvEo# zH}JkX8_cP*`t}a=!M79{!ACV{wZL5Gq_N0yMtjOR3#rvUq3z1i@}k$Nb;qA76j`Zf zHdql$Rt3w4(&(ypeV*8`jy+}FWIjowmh%ug_E}U!U}pU)X3&n(H14{9Ei)#h@XuOe zG)qvIrLE;~X+d#{<3m0ocSi*%dvc@n%tYMjF0nOZ-L`t|%GEQugH z>ke_^+TpB`YCOL#SkYVUdz2@Qko^uP zqh)RYd-qIEQWh)syAL%n zf4G-8NvSGqb5MvC`>qplcR}aty~3R7dEF&MG@g9I1WDPP+209g^*e(J%mCNAGq_B5 z4*uG+mj~bRGMJKrSkiQt~qTokOd+phnz$i#O>Jh zgc&n8Lni4HW^}a+#UQ7|@7N1g!s?_W#=q_iCRMNU$^c;1mUNbr4<;4mW2=ivlY7ak z7XeJi9Y3t-`}(+sYc(n34Kw^1dp6k*4y9 zQ_}r-++YfZFlO;}HQPPZG}kzGe8Z-Kn_=r}!?CJW<*jKbAMA*p_(pyGY&#pvn7OP@ z*=mAx>`v8oyp@;QU<$v2ig{e&Jk9&8hin*yR_KTQTWO>%8&jOB{Co9i&Kkcm)9iAS z81PjnzquaRS`(`VwdcIA&^K5W!5=ImE$3@Z02b7%OE+v|GvvLh{_gz$bRz0yDp{~! z)L=QMf-u6^vmO=2csw>ErrGMR&6MuFOsnR~7#B?~9F!~>*AZcT?6`K+X|r!;44jj| zRkI?SxoE|63}v5*P8Nz_x;NYAXrICSOHV1qiBghHR;+Fi6Mt3C&~))fuWvdKNU&P` zf{8sEm~f<+j)}Zn%_91OFHSH!XSuM!ph)4On3b0KS^ao=(Zv-(5K`Q zJ$HFv%P~Ppf-2O5Y4^%pSn-UykJ-ki#$3l{bo?GVG_fZ*L{2I=Y_n;3`5>wJsf-05 z#%Gi@?z-Anmj|!TdPb~Kiwjzl3`1cya;`kZ?N-!9e1%PR1qL~t@GRMD$p(!~G)Ejy zt$V;0_jSJHyJ3{H9w#9()onpHWIPJOi@H33ALmd5#N!u=v2vT-<*Cky`o6M zq+E8gvWE1UvKP2%I|}>C?JXmyP8)Gcd4Uku#5gf2QSW&Zx#&jRL{16ey6GS37s{;!n~-Vw$G5F@xKX!W-WyxSg@?6VbB zSel&HUbhuaYq3)N0RJ+Jwz49tf^~_S!28%O>x-|(Ov*7eU@iac)Dg2ma09xdZH9%4 z-)g*!6!c?uEqf+4o|B!yRIiofjYKMBvfV~6*tRxzJ1#R6Ym4Zc=U5%Q`>D9naxi4) zb&Q%C?VXdAhrJ?cB}b1+@3qK?Z#mdWSFr$0aW0@odhfNb#!o0UPH-~Hiffmxp5hP| zlK}xr=GNK=UihRr8=>qDK?Nb<{)`yKct9T)WuZxX!xUO$6`^8;zMQU4u-b2BVmiCk zp{PAw>Rd>&LjIa&g?Dti(eEKmfWWbf=B7Ao)|KKdO@$I%QSDKNX${3Rs@uxrZRIlW zmyvnsnc$Z1lc*1~8|KQjngl!<7xL~|nTRI??>DD>sO+sz%zh8c0m}~TOlhKC1to(@ z4W&@k(ZahbBi~$cz$iWCC#f>>o=rQMe~rekgmsj$k znxgb0SukOJggerz`$ZO9w)!z=hcQP_HH^*fPbzPvNQ0i-Ub{(b4!Qb#VaXXc1cDF_ z8MijcNnuK>k#VF+4u1YBL0v^d!{NjpHlOgjFQUM{jiZ+d=%`-Bng=>)TKfUObVQ;1 zB};SmzfytB2l7b33*A@sH&i03$MA^5HyD%}pKWk^oSibH`n;u-lA7-`>j&GoQ#7l4hQ3KhkKGq8D^9Cs6+?YzbH#!rCyyo@E^8CB^OaUV+Rjhw zb3y2rRG$xXaH@@~AKaxRn6_c6$8xjEH~j~(A`9=){D%WPtc`!m<6|_uToGu*3v0o| zsqoyP5esv5N%fyn;HviCDkA z-{Cc@@RzR?@w{;?Wvt^n42S+Eg#McFj1xY&|8qv!T1kUFVgcpXild6+s`-rJR$n#v ze!)aNYROjfwZimeQ1cN3e-2Z%zBI<+S-GO(ztHE5Jqm}EaA16yufB;)>8|STP1V`f zOpJ2vr&YP<-ltS&3ZI|+l{K(2P;iK^dewM)`Og>RD(u^GcT<#lnbR! zCS@0biIiJj+O*LdA07FA)Ha5Un3d@?cPxDbF-JUs9)}kq=cehdXhx>TyxnnvB5V!F zf7pr?H**T?=YOqwG)g`+vHb~8aK|Qk#(EeU~Rd*5ZX^CM%RbSZPe$Jz961> zue!*#^~pp*s)p%XlF=mo57^2z!4e`gf?@jl>MDIPQd+sVX>%c@mpQp>x5Ax4`KlVE zFKVlwe!g|Rj{i=94dG!^y9KD&z#UUXlS7c|aeLnPC~esWT?Bl(pyJ7hxx9d(9q>5lEsK`FL|zY`lzw* zy9--4_{~KYSod-(``OPfE4$Xr)HqusEEuo~OnX-`A@yF=M?zm?0$RuXKxk#`eHT3l zTTslPdK9Cj>om>GFy_8vGevPQtsHdZplnU(VCrqB@)T2Mm04ECx~APh5+hj0K-kTW zuwilKa9ob8tT1;qkTV zJE&`cG}Cc9r3mfV6PvtgFOiIm)GFwrvS zN2o-!&AUadJmG&9xFe{RU#RJ{x}kF}_2ExOw%z`>7cLs)Ym5?fy9Ai^I7KHy8B~+Z z)Lq+$x@96YRwlaI-e|O(u+Owezi_j|_bMZ5q6?>J91<>%TdJG+jyotG)(RZq#eNu>}(g8Bb_F2-UnBuA`ix_M{VOMJM0TI@ap-ZUts3aiPKLdWo1Loe^|}M9WD=L#a}D$s@3aq dg~2p&%6!7s<4fiCstBjw3D|E(Nm_kF`ac}OavlHx delta 3083 zcmZA2d2EzL7{~EhIg~?=DlO10eOp@EVsA<*Eg(lNLIJT#0TE@{eZd#near4vv}iU) zi2+kd95Dtp9FZ6=Ld1B1AR!o|2GFPxF$N7{BqkU%D3L$>{<<$Qanff$Gw(Gs&&>Pw z+@lxfq<_fjzui!hM3{KHpD{1tg6sLAd^E_I8}KL&z)$f;JcU*G15UX|tD#`Z^d~a13vv{W)giS-ctlLT)fahZ-{i3sD1}g!Ew+ zqXxDD^*j%&aRUy-J*fL%Mcsb{htR({MMWd~J~;6+>Oq%L1L;p=7>-7@OK>bUA%CWw zA3ZpRx~>P+!4{l=JCG!qqc|KtL*0KyZTdHtsb~NLxjPGoV}C5f(O81Y#7xuxmLh*< zJwJM259Z@m)XZN)J?|}Cga@$*2XnE5RX7qCV_F@protG^+Q4p9${$CK{CQN0_n`K` zo2U*B1m_Q7G3}3o_HVd^_GN6t1*D@Lcj9;*M?H7!Nb;`%6fv9zEW;99jp}eKvg~Gi z(B6$2z#FKUzJ)pX0crwY2ItSBIyjGd&hMCu|DcvChcq)bQ;|jfwN}$PpbHnFHp_C< z+O0wj;7MdV7#p15g%8ty1+_#4tV=02qB@SE2Gkj}H=!oFIdE&>wlo!`@>$e_UPAuN zJN&S0=2NW2)2JB_WnFar&Da|L!68!u?h#UftKTBoPpcW!}JL% znqdQZ)B~Ea7Z;*ZdnP#k2P#8XQG4ThMyr&Dkw=(@z&lU_UxQ`Xjmq#&)cyNW6FGxJK{)GgP$3SFjw*`K)P%%Tb#qj@nGgz{i5~+fW_6jLOt|s1A;!Ht|W+ zecxaOo(s-rG3tkChcUgH%J$&E-^ev)!??`MpGJ*z7f!)fu?&Ai_LUjJS4T@yfXY-Y zs^ezVTDKx|GVQ_nL~#Cz;QUkhuL+qnFG@~pj6KdT!5O%ou~{fLzdS>kja}z zP)qazYHjzU_Q+|}^*>?=?;4ueMPfvCT=72iBy@M!E~Tzr}97s za~;Ns^+aQEOarPTG|)SUBr%g%OK6!F5i0tEs%#+i{ptHwYon-?5K3vM8kCh8OeIbY z>eslFik3}9Z;Vo|{{t!$iTjE9Y6K;M%CbI4T2@Nh6lN+W5vX-l(fUM*S!z(06H0L# zaXT@M(5}}jd#z}577vDlJ4m!XZ@hl>envV#GZ<^1rf%wo5b+e4oq; zLgj9viMWfHP0S;zi5Y}8*g`@ZPGth257YvphL}tE#2lh;gXH64H7FjTSFN15l~5@q zDu{YDg0c>^5&5W@*5KHEfo4`T>L!zJ%=U~(+kPXzvX`=Q4;;T~OlWj-B;`7hSj>%? zOf?>JQeLNP=Z;!uH)ZG9}{VbxgA#?e4quznT+GxQxf{u6)vNtg5r$Rh8MI>PdD<&E0le?Ys8Sq~81u-H~`q zBk4+b$&?qTr)v*ta*C7oO5Ki-YmZM}+F$dr6Y9s=oGEp-v%WBEVI-OKI(;WjzX=}U zM(xM-w+wQ~N#8T\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -537,7 +537,7 @@ msgstr "Stampa documenti" #: permissions.py:34 #| msgid "Delete documents" msgid "Restore trashed document" -msgstr "" +msgstr "Ripristina il documento cancellato" #: permissions.py:37 msgid "Execute document modifying tools" diff --git a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.mo index 50e50cef8f0e0b41ec1e277fddafb1e412f04e88..5b18c653695f36b02d247c73256e2858b5b5783c 100644 GIT binary patch literal 8077 zcmb`LUyL199mkLSQCScKQT{2OQr7Ou-u+YBQnoE++ipt>{X@GgR**V-@7cT4y?5qj zX6|m=Cp08PLgYdFpgc%oLIUwceE2C+c=Nu^gJ_w4xS~1=PkJ4WO4}-6Q$3P1+Yc&o^A5Vav2cHA40sjDs{=1;|zZfBH z28Y0P;7(BbTPkoF^!5enT#pp}$3gLT7S#Ojfj5B9fYQgyApgzl{7CNafYSff9R4(T z12_Vn1x4p)pycpM(SHq;Uj7J*&-V+Iay;Ll^fClWA8SEGU~U7~gS)}!Kf+$1_}j#x zIkK4nr@?!{t>9ze9`IM78Ry{4c-=9tST4MfV916EshOUj%;y zitjf-@%Il<{9TFgCEsCCa@h~+ybl)G040Yrpyc>4$WrqpD7$(V)c(H&Meo%D{{)J^ zzk#r5E@IQqf!BkgzZv9{*$v(TJ_t$q<;j|`~+l)c@z|%-v<$`c@{*4<~N|u^Coyd_%^s5+=I|=0v`cUnRy13 zy}bZx-Ae`j9@PGS2F3pepzQNy4N8vJf&0L<-~(U;-VOd590jl8&}+aM(1KNv zPv&7z=Xeqnz30Hq;0vJi`*%?MtU<_<@2#NZG6Ra=eV~tX#rNZ&&RYlNhZ!jP-v)Kg zAApnK&q2|77yJ(RPjCwS7Q)qeUIMk>Z;SpLAgq|TK=FAI#D$lDntwScJzNVSVlxFw zA9sTl@C1l^nB%mAH2J9XBpVSQU!iTIY0v#M@vKL*H_g-AUU; zlPq)&`N%wN@R3fwOdF?hWV3^|o3@>%2laY;l@8`;($Rx7J(9N`okzYhP1Bk0q1{f? zb07zAqk5Gt4i#ha^AofqMgOh>CCA%nU!~nalb(*z4%4KoDy@9B@*=;HjMtWf1nxm|H=`qSc<+a&V?rb2T&5XxLg@Z8u$%rTsk{FW77`Ol@|$%jP*`Px!->n66 z?UbJ|g3q9;J$otey^194nK*8WBFx0?>^#ZrTnr+eh@*LtdHFe;BC)DOR?2zYobSxE zI~5(U%vG1tcGK)^xIj{Nww?s7#ju*%#I+Ka!h0b{PAMhXwB>kdxBTpqgLIv(g=wo1 zoVGz!>k0!w59$M=?M5a>;--v5sGZWz3*;BVhKqtG942l+?2<$|TyF2h1A%;UIocVB z+)77QrD3IJmnZCvHh+cjEM(7JZXtk0P?lLhmw*^xwg1=|)j(QJ!j=rc>?$0f^J1%> zwOV(e7OzB&IFQSfv%N+2_fk7DTpR5fOJXc43$aO83$cOjCoh){DQ_=TZ$ATbyhGeH zoZe)M&$i$C`$%xC;wYuu&KbZ^@YOz6O5ZKN^zG0g(50PX(pkIJ{USS4Xy}zuE-vQe zFFlfXEKbPa@97$sPnNI*TRL_7)h^;gM)Fj6F!%nLU2hnYB%Qzt^~fs`8YaK zIMP^Q|6_JJbSthl+7U(`tzFakm1TT}WElO=jII`{2RUu0napiDtdSiuOCV)HsjAe@ zxH-@pe`Fo06<^Ib$`<=S7M}B;z7LL3LY%D@S*J)g zI4;WbHAxk<1h|f}VQ0s4BGQ-*Rn6ct<)*QZ{g(QsOwi-nIl(MwQH;JpFMIizFKJ5p zOvKWoAZ(a9Jklr88u`ih(ky7U%$(wmb;O_$o_k}qnNvzUdUWqDbCgoV9Lr0mR7Wj0 z@H#k#Vmc#5&g>gY&GESH*$o;btQy%o^M_mr6PdXT3!?q3qt27mBbB|iO0n~_-5;C| zB0IZl|B<1?t`#R)Wq(=^Yn2`CdRm!_r|r<8gL4(1ugRAc<=<($esXG4WooLj{#HA= zetP4E%H)R0NhVg%cBo=-VBX~Ic537F#!a_O@(kUB-&GJ&lu|&($+Vp%l!PZEdn5=N z#O5Wt6{FEeS`6G-ZzAw4=Yr<6-PO*ji+1FIL&Hgfk|rIsBa2zqnx2?g zSy>tPMNPQiPHFW-5~o2D#>qre$F8_qGo4_O50w*9mZBb@UNQv8y&h4&j?#}a-txGDiMF^j^o9Dx3lbldtZHhttKBtyH zBMs-yupBq~nF#RXh6-A-S2{vYI4|cz+>tn3ck@X*T*}LLH*OB)HM@*Gj4Cqtc96E=J6tq^OfhS-!5MOkK#3Vj-i2ix~j-PHhe_plb1`7R2M@Bvwn)1 z?a`n=tPO&w87x6%S9#f#448J#hu*Q7VwD$+Zh%qf+ACc(6sD@X0X0q5b&h<11sOK( zBW&iDRya}3sh3;+IlLgm{7Vm?(C8gL*hDW$cyd`KS$USui%wH_%^+CfI#O2RbypU~ zow3{!2fFJ9ZVxU*>FgG?S}-wB*_8B<&26aMBo{J_dYkNCA-wZ@C-7H@KF`aij(525 zG zV!60*$z(d0iTn>0Oe#eR$y_qMv{w-vpLci(b|Q;Jl z53lpV67?iX+ivz^22$M;&TDq7E|sGqrP97iS1)4He~FwuRiEv-f7tOZZ6CO#8;KkN z4Mc%lLE~1uH1mkkcX+BD?j&JV%D|Dhm2ejc&9TybZ@x~ibKMY^t+p`gV4lH!Ae zPn+KA%2-f_jaHyPGz?IvCvlunH|6)0IWqm=U4^0Cu@zamo?pn#-%kkWx@;%`=n}J9 zd@nC3_@|Ogemn8h6zLGxNY``6N?+5<691ynF)VD)%Rr$a0Y0XgudHw*^ z45JjjQajZ#SOpjHK>?sBeV{)S<^myxh&duqR2!U;o4|)mC{EV5xNz*cd+~XHX)${U z!@5S0?)xt-GPuDT3;OQ8vDkAL=9iXL)|OMd8L%8-i3^vC-nxM+j59L}wWPg-*1Ubs z_QV3y+Zm`0{Ny8K(5|>CC8L;&X~gwK_SH2$hUNxct%#Dyko>5>Fi?9WY+k0QV?@)e z-A?$!6K2(uNp<$T(D;yyYPntLYTnBOWR@9KQ6QUPXIL!Cf^N_vaFr)rA}K%yJEFnDrNH`T_0I!lV>DP zg`pTk1ktL)GcT0EU{H2p(Tj>W5noVY7s|wodEuzNQ=}Jy^X)?P`^!Q-hK@^<@L7OHx1=p>MrU{pD~m8bqyCvL!B{)un`}{VLXDb;UoAhHejgUm=Z>C zJDx{9zkuzyf}MB;gLn;@uWUAG_<8UTs$&BenkIVEH>gx z*n)4M-n)ct_zu?MC%6;8z;@<0H)sTS@GJ5$|8h~J+v&XrXE1`#U@Klg4fHN*0c+TS zpQ9FVz3K*Lxc>#G@Ik(uL5p|jIo2}22@w8aY)55cqUsY!cFi0r6Q@y;K8MQC3ZBJP zjN)F>qlHaYJ&sEKEGob}Ch=Lk$Tq)+<@?luFvf5hwUF!hFt*T(#hYn-9Zw>2nN6gx z`4jhH4f$3|2T&6p#k=qXYU^G=W$HWo|@-<4HV7=VN#d`|$>9E9#kD8ErydH6y6NW>5jlmuV=XJjU_G>K7m2 zTikz&37qAGX~0)d3pj^id>eViypJ)wifpYpKvhwnXr*=Q(hWL0np5NG{8dsjfVb<0 zq6}y-{RQ+=m3kHJxw4@NRTNQ@nx-;uCG`hUr(5S@8&yHEi, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-10-28 07:33+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-11-09 15:56+0000\n" +"Last-Translator: Evelijn Saaltink \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +26,7 @@ msgstr "Documenten" #: apps.py:98 msgid "Create a document type" -msgstr "" +msgstr "Een documentsoort aanmaken" #: apps.py:100 msgid "" @@ -35,7 +36,7 @@ msgstr "" #: apps.py:107 models.py:65 models.py:158 models.py:626 search.py:20 msgid "Label" -msgstr "" +msgstr "Label" #: apps.py:112 msgid "The MIME type of any of the versions of a document" @@ -47,11 +48,11 @@ msgstr "MIME type" #: apps.py:151 apps.py:175 msgid "Thumbnail" -msgstr "" +msgstr "Thumbnail" #: apps.py:159 apps.py:185 msgid "Type" -msgstr "" +msgstr "Type" #: apps.py:170 models.py:628 msgid "Enabled" @@ -63,7 +64,7 @@ msgstr "" #: apps.py:193 msgid "Time and date" -msgstr "" +msgstr "Tijd en datum" #: apps.py:201 views.py:830 msgid "Encoding" @@ -76,17 +77,17 @@ msgstr "Commentaar" #: apps.py:387 #| msgid "New document filename" msgid "New documents per month" -msgstr "" +msgstr "Nieuwe documenten per maand" #: apps.py:394 #| msgid "Document version reverted successfully" msgid "New document versions per month" -msgstr "" +msgstr "Nieuwe documentversies per maand" #: apps.py:401 #| msgid "View document types" msgid "New document pages per month" -msgstr "" +msgstr "Nieuwe documentpagina's per maand" #: apps.py:408 msgid "Total documents at each month" @@ -102,29 +103,29 @@ msgstr "" #: events.py:8 msgid "Document created" -msgstr "" +msgstr "Document aangemaakt" #: events.py:12 msgid "Document downloaded" -msgstr "" +msgstr "Document gedownload" #: events.py:15 msgid "Document properties edited" -msgstr "" +msgstr "Documenteigenschappen bewerkt" #: events.py:18 msgid "Document type changed" -msgstr "" +msgstr "Documentsoort veranderd" #: events.py:21 #| msgid "Version update" msgid "New version uploaded" -msgstr "" +msgstr "Nieuwe versie geüpload" #: events.py:25 #| msgid "Document version reverted successfully" msgid "Document version reverted" -msgstr "" +msgstr "Documentversie teruggedraaid" #: events.py:29 msgid "Document viewed" @@ -137,7 +138,7 @@ msgstr "Pagina afbeelding" #: forms.py:56 forms.py:59 #, python-format msgid "Document pages (%d)" -msgstr "" +msgstr "Documentpagina's (%d)" #: forms.py:90 msgid "Quick document rename" @@ -161,7 +162,7 @@ msgstr "Geen" #: forms.py:126 msgid "File encoding" -msgstr "" +msgstr "Bestand encoderen" #: forms.py:132 msgid "File size" @@ -218,11 +219,11 @@ msgstr "Pagina bereik" #: links.py:43 msgid "Preview" -msgstr "" +msgstr "Preview" #: links.py:48 msgid "Properties" -msgstr "" +msgstr "Eigenschappe" #: links.py:53 msgid "Versions" @@ -242,11 +243,11 @@ msgstr "" #: links.py:79 msgid "Edit properties" -msgstr "" +msgstr "Bewerk eigenschappen" #: links.py:83 links.py:117 msgid "Change type" -msgstr "" +msgstr "Verander soort" #: links.py:87 links.py:121 views.py:901 msgid "Download" @@ -254,7 +255,7 @@ msgstr "Download" #: links.py:91 msgid "Print" -msgstr "" +msgstr "Printe" #: links.py:96 links.py:124 msgid "Recalculate page count" @@ -270,11 +271,11 @@ msgstr "" #: links.py:137 views.py:82 msgid "All documents" -msgstr "" +msgstr "Alle documenten" #: links.py:140 models.py:815 views.py:656 msgid "Recent documents" -msgstr "" +msgstr "Recente documenten" #: links.py:144 msgid "Trash" @@ -358,7 +359,7 @@ msgstr "" #: links.py:264 links.py:269 views.py:404 msgid "Document types" -msgstr "" +msgstr "Documentsoorten" #: literals.py:14 msgid "Default" @@ -412,11 +413,11 @@ msgstr "Omschrijving" #: models.py:164 msgid "Added" -msgstr "" +msgstr "Toegevoegd" #: models.py:169 msgid "Language" -msgstr "" +msgstr "Taal" #: models.py:173 msgid "In trash?" @@ -445,7 +446,7 @@ msgstr "" #: models.py:354 msgid "Timestamp" -msgstr "" +msgstr "Timestamp" #: models.py:363 msgid "File" @@ -453,7 +454,7 @@ msgstr "Bestand" #: models.py:445 models.py:446 models.py:647 msgid "Document version" -msgstr "" +msgstr "Documentversie" #: models.py:633 msgid "Quick label" @@ -470,7 +471,7 @@ msgstr "Pagina %(page_num)d van %(total_pages)d in %(document)s " #: models.py:672 msgid "Document page" -msgstr "" +msgstr "Documentpagina" #: models.py:673 msgid "Document pages" @@ -688,7 +689,7 @@ msgstr "" #: views.py:430 msgid "All documents of this type will be deleted too." -msgstr "" +msgstr "Alle documenten van dit type zullen ook worden verwijderd." #: views.py:432 #, python-format @@ -699,7 +700,7 @@ msgstr "" #: views.py:448 #, python-format msgid "Edit document type: %s" -msgstr "" +msgstr "Bewerk documenttype: %s" #: views.py:478 #, python-format @@ -725,11 +726,11 @@ msgstr "" #: views.py:583 #, python-format msgid "Versions of document: %s" -msgstr "" +msgstr "Versies van document: %s" #: views.py:597 msgid "All later version after this one will be deleted too." -msgstr "Alle recentere versies na deze zullen ook worden verwijdert." +msgstr "Alle recentere versies na deze zullen ook worden verwijderd." #: views.py:600 #| msgid "Revert documents to a previous version" @@ -748,16 +749,16 @@ msgstr "Fout bij het terugvoeren van de documentversie. Foutmelding: %s" #: views.py:633 #, python-format msgid "Properties for document: %s" -msgstr "" +msgstr "Eigenschappen voor document: %s" #: views.py:639 msgid "Empty trash?" -msgstr "" +msgstr "Prullenbak legen?" #: views.py:650 #| msgid "Document deleted successfully." msgid "Trash emptied successfully" -msgstr "" +msgstr "Prullenbak succesvol geleegd" #: views.py:685 views.py:996 msgid "Must provide at least one document." @@ -766,7 +767,7 @@ msgstr "U dient minstens 1 document aan te geven." #: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "" +msgstr "Documenttype voor \"%s\" succesvol veranderd." #: views.py:716 views.py:1235 msgid "Submit" @@ -775,8 +776,8 @@ msgstr "Verstuur" #: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Verander het type van het geselecteerde document." +msgstr[1] "Verander het type van de geselecteerde documenten." #: views.py:799 #| msgid "Must provide at least one document." @@ -785,11 +786,11 @@ msgstr "" #: views.py:819 msgid "Documents to be downloaded" -msgstr "" +msgstr "Documenten om te downloaden" #: views.py:828 msgid "Date and time" -msgstr "" +msgstr "Datum en tijd" #: views.py:931 msgid "At least one document must be selected." @@ -821,7 +822,7 @@ msgstr "Fout bij verwijderen van de pagina transformaties voor document: %(docum msgid "" "All the page transformations for document: %s, have been deleted " "successfully." -msgstr "Al de pagina transformaties voor document: %s, zijn succesvol verwijdert." +msgstr "Alle paginatransformaties voor document: %s, zijn succesvol verwijderd." #: views.py:1044 msgid "Clear all the page transformations for the selected document?" @@ -840,12 +841,12 @@ msgstr "U bent al op de eerste pagina in dit document" #: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" -msgstr "" +msgstr "Afdrukken: %s" #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" -msgstr "" +msgstr "Pagina %(page_number)d van %(total_pages)d" #: widgets.py:100 msgid "Document page image" diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.mo index 169148b72389bd3f9ecdeb87c5ccdd6601ceed81..e0db89c20ea29ace8e1aa6fe504f3f6204349666 100644 GIT binary patch delta 40 vcmbPdGtXv2k`T9{p{|j!f`O5hsmbJAAz5xi16?Bv1p{*{W8=+Jg*v$b+gl1m delta 40 pcmbPdGtXv2k`T9niLQ~kf}x3(q2c6QAz2vT!pg{K^HiZuZUEcd3P=C| diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index 9b391edf71..049202eff3 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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/documents/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.mo index 601813f00bfd910f3def33eb9f09828b8bbb3d3b..11695cce6be9f518612c3eee087f2a9b916b32ff 100644 GIT binary patch delta 40 vcmdm}zEORH2{*T)p{|j!f`O5hsmWw}ZdqZFQC1fP5fB9rYgT5$%&!ABA+DbbXaS{kb~T1hGzORG$N|L#7o zyR!)9)b#zI?$eL2zgK_VJx`u^>}`hUQPN9E|NSguegS^zx%}`v@_b`%2R{uy2fX|R z#suJ1AXUu`;A-$K;5zU<;JM)Ez~jK5fV;r|1-F2^PB3OWcni22{2I6uJnKXf*axS< z4}v1$zd()qOYjZgvtMY;Y2aJImw|VK8TdKyMc_FnQ3sp?ExjP0%vIpYU*cOt0z0Y8vzHi8=GQg9sH1O5j17LY&l4t~_{UEt~9 z$G}&EU-tP^A?6J78$qUK_JOKD4{F{^pysvnmWAJ$LN1x)p zp8$$aYr#?QVvwOt2UNSa`uwe+`u_;1_WuHkj_-mm27dy+0(}0dByb}rzHbN50cXJg zyaSZH9|bj^$3Ttu1ULr%7*zYy=~Q%$g34bCYM!qF)h-0T2KGSFv4hITg0BPV!pwk7 z)!YDz54VD%`+iXUJq(Jz$3W@X_dxM;{#u~u zSOl56c@qd}<}Ofr^w*&5^=qK?`$0$FQ1jjB^V>kGm|dXcdp(E<&F!H0@h~X*9|ciW^F>hd`8QwwGf?t)4$3K9?eRoV z`g95?Is#DkZ~-WL*a?c>*Mj21dqCB{9em^{^aFf|{FO{z<*Uzf{`+K5{M!zyzstc3 zzzCcG?*>KRH^A3`{|@d3Ct<=>;BDX(_#dG3c4FA+j}T*_;d#NKJp_V zU75!~$>T@h+rg90cJuoHD7icg9tVCNlpcH$l-$1K@#i3}!<;zc^kD=P|2KiJ1YhsV zZv&r8{(ew;@ktO?o3Db;27d}}1b^xC=Z-r4+yu&Qt_0Pt1?~Xf4F=%XLG|-<5S21# zV3aDq7}R(nDEix==DP@rpLcuw1Sor42Bo)8fU<}G0i`#q*Eu~p8pyYVWxa;>6Q2ma8u*zHpT6+UU?@gfO{4r4T_yH(-kEb)$I~5e)$H4Q! zNl<>~jiBuJPEg~03Y6V^5j+9>D)>F{yWk7J$5Bpw|5q>ozXOV{W6p8&Sp%xwCQ$wD z22okl051pM0ZI4R?u?*{oZ!MRRv_JNXj8x-IA zp!&NR)co%SHO}9GqWkNh`u_nadHxK1K6ot3B6~gw)Vxjuj|a~LQDrj@ijP-=H-Hh? z1i$U`+s||J{u>aMn{R?AfycvSL}*?PVp8S`P=4eM9`6OE?_U5<1;69-zW`4r|00w` z^o@X`>s25_nysMZe-IR(?*~=y5%5Le7r^I$PlD2~?}Os+(I|)Huo@IUHh`+P6%^lg zfX@S8@39Svj|aiiz`H=T`!p!NJ`Q3k=9{4O@3|LJ7aRrE-$y)t7F4@`1jWa1gW|&v zJ)ZC?r$6U`qGvy-ey;&v0^S5_UJroc>*qk#`)3eVnQww`08ifJ#(gjN3i2NYHQrZ1 z$@>YP|1LO0{>L6qxyaeU#h~=*b)fu11fCAw2ucs{1J&-!;IZIOJ^lg|J!Z3Oe;oK? zvL}G@Z)bzjr>!8WZuWwr>usRqatnAAsAt-NwJZN>ZsA4qi%8e`!b9NeNwSAMq(#zJ z(pyLx3zpdDgZw^7y2@qEUxI&1+VAs{*We>v!Zhr2Kfmwr?>B%i^Y5}3J!d$u`-4yM zelKY+=|iNWNz&_^NqQvH+w7au2g&vrpO>BKNl5a^;&YoMeSA9!7MahGK1R~>7bNlg zuax20NkRcHFuO6NaHdM{~;bR|j866sx}JC)(lS|j;Lwyz=GPP&kE8cF*1 zKGJTIbnACXdgdLNyTL0+f9&&@f@hNch!p#>-vQrD+DDR}<K-b8vgsrtOmXZ`@(;NL$D{u${WlI&+4 zsY^PWw2kzB(t6ShNgp7+hm?{IkS0iPBk9>rnj!rm=@TS9BcxA~~&P1)Cmz3o7mb#HDs9LL4lxOu^kj&CAM5%hP7*i9%no%nfMZF|pG|E~b zWCjaSn#D{soK?;?OFB={svFKlZalF@xuBPZooqHq+hLEMvVhluw25GCHWJK-3ve%r zIt3M3-_Cco-)b#EPCMx%kXYa6(kO!TBuJAU6jr5UN9#gnKjX);Ic#XmY7cyGNV*4; zq^%wyCP8i$A^+-b#K5@C*p?}a^KoOom{C?|FC&N%@F1HXzNO;U_oew*bi|CRHSbZof6iuIg&8(~{72G->HLlD0 zZL<}6P;Ip7DYZc#bMlJOH~+s{XL<924{=+{*a#c*5NPSruq%Deo9g>q8g`Ly7Nk)( zjWRUHYcV<|V+pcuWKGu2Fz+opD`>`9w-qj7@Xb;cQS(7-pwoVc(QWCT%$* zp~laO7Y3E1>4a^jlSTukU_F5^&WWDBd+mlg$`Xt89G_XWkrsvD{rwH-*7 zZMIpmtV43IFhiE(Klq%p4xE;)V=c?ti%O!|5ccF)(30VvI&*zVbO;lhx?=anb1oR& zAm4(U86Km7+?j`>nWYS}?8lp_PO>*uzt6H;m zC@;81eGO-8YF(|M@SZLWblBGl9dbRmu{aTbG)?D?`kh#e${K0hmDe-dybCB^oc0F| zXVGAJ*qp~yj9S!I>8vZCut^&9k;5LWpbAFTwo2YUIvHrPShX^hSoNRD`jcI ze0nh-qGpVbDnEG=rC!!AvykGv)2I=)8hw^1>)ngawPcS3aTD28`mn}O)KM;ISQj`@ z$F59k)@Ez+&qv~nx~NRa+eJxqzG$WqZ?)+ReyNR6=^&04D_oGOH9Z4|vwV?6$$ie9cY7Z=_LdoWvAr?Gp&=>B8w5-D(5YvQu>Uz>`&2u&@C)z;Db~ZQD-X@50v@rU{7UUaY8E7+h1Ui&0(AFT|1vvXgX} z71wp=j8y&Qlgk-RWtf7=E*0T?Stk#x!YqsDI;c-2f)vwnLqx3Tt>hkNaU($9!On1r z9l+$aomb$Cd(j+fc@VFck1V1NM2$W!JueE{%zbvr&NoR~5Og5Ude$Umv2wrLQ4{;a zzQl7%MM0Z|LZrBF-H^QtI$v!SWDL*eln~K+@+li6C9_t(Q{L(~n<>ly*Sgv4(4K=| zxAyXqH{1bHQjo0Q?I!YhVXCeaoS*;X`_J{mpHsTkUkzm2P*x`aqx2K5Ok!=Yv zc5J$gJI|QVl{OTEloG#VFIWk)la5&by4mbhx$=hx04vs{v7EfwsVE;?U5K0POIF+n zU^;&JVOGDg`k2{Ojs3*!Oi>5=*y+vJKl*Nu^nI{AUj%1bN#i=(Q>`Sc73CXg3J-WC z-G#?Bdmsp77G2jM?%}50#v$>wLp^qet!pgBDppZ$O~ct>L-ZuCRBPwzxmd=I<#fsw z6QpBzDt7%HzNs~P@GGcTj)yr<`#tHy8+xG@`r&>{jdXcyihD}`UcTD3CZCzDcDX$m z$cs>ZyFGBFHdZy2_pFwwbyi03dy7cR`&t`-nQC$2hFxq1zgN`X&A(0~qF#oQ1?Q6* z%x4r3Mp%2+tD=}3k4%WIw(@5?r2j6{s<<-xMN@ko3X-hr2(dmSE{S?=&Z}7iXC?5( z%*dTww4zzMa_>YZ^F4D#f2PgSK8^Voo>Gbvb~tQuZ1tVk_^Wh=wn@J9=2Zs*31*95 zu(3x26Al&AF;LD|JBeEG#R}%eEG9M>6e(O3vC^`9)Vx1^NO46Z&cxbC#cH~XC3X5# zsff4kgmKGE+d~z0g&e6xHkb9ncGpbHpo<2+A0`vAnfLx^pi04}r>aG?Rqw-k(rFts z=hS7!Z_`0Z+~EHhUoeaqIc#Rjd(2}92ca<*8-ohYg-zRDeT8H=n=c$VZ^PJ>3Lnxmek ziArp;YHy@Pd~|0v7dJ;Q>Ca`O)5%1zYR~TJQF~Iru4`1A^@(7^`1*~b>(`HNI42n2 zFmdiHN5@||K2F6^OeNOI;Xu9h=LH+inHWFs>~Wq|iXTSdStnyFm!uQHmR8K!)%G-s zdj!L;3YERs{?59xF|>MYCcTKJE(RH$j>7gtum^hkbA4PvFmy>89*kSV!O(oK*PU3m zZgFvOtfxWZ+30{eSeGUlJK!W;*H%0>8a3P5x;#u-*X><%$=-Ftt7L*Dch--MuiA>; z;EP5j)rp|Tg0zk^p15R>_l+>Ox!DIp9t(&tM;_| zY1kUw&f!Hi5p=pXn{C=~Vc=dj4RwNxg7w1}t}^@D0s7hKcjh_wEv+{RmLCWRr*d6N zw2h!3v`5upGn5g|goKB-RoG0}lC)uQC+f^A3`>dQ7ibl70zJp)v0y68lAxO~h)z?f z6LoNJM36eYX4e!q6PDca15qkAKq0CVv?HoAsy(|7b#zUi98Jd!RDvTx0(iEHy)a0Z z57AQ?gak5iw>~Em`ua4TP9QnpZ=2uqCRk=(R?J#^@GjV5rleB<3nZJO4FpNZ5r$L@*(XgEg7!F>KJ>E zcDVfE<%bp4X<6}STFCSuhV=VV!rw6kki%t=f7FMDU)FyHfHm}vL5$`ka zn!b8?OCos7&5%>3it|PaD~PBSw_znBsu8(zPguA#F_e4?>T11OUWY*|J`lkz&c#`O zq7Eb141`s!5oe**ZX0Y%Gf{jlKTrploNHv2zfWBeDsuVya|73>c0T=P(WSh9JR3Kp zCif*~N8E;DqI<7cPoYMN7VCNh`5f!JVc4EM^RA9a^JcS!(9{xb56z_{HXP;(hu3nZ zc|CN^RSaD{d84wL&OWoY{0u=s^*G(z${g|(PmoeCZp8=jS$?*-kCqh(&g?)u6Fbee zJ0^dxZXRY&U>gf$j}A$C)=GIa;;yfGPf zw`ZdrPRvok6?~Q}pFYf&mGuYN=e|_<=?XfD=3$+b_a%o_vHpF~lOCoa@~bwsV8te6 zg#As&LqnJaPlI`m5p?#RzpIXO_RII=R#g9vSG9{l-O|_)HRW>6?kdAkSzAg^ZpCf~ zL--l%Ckc)7qkGQmC*=p>xJS#}L1yLOD!kZhLyrJsPUj;rR*>Eu(&+P;w45qUn!0|C+K{_zK-+LN37t^`Ca90xzjOQ zb-Sh6m&AoKVoGW&OVNTu{#aj4SuzvG2PiTttuMx&4`J9VFF$!3O}!++Y$+GZ+6Q+F zps(z1Q=)5Drg~F*S~EbObSG{>fIJ~S++75uT4wUq4X)*@b9tW4jj<1$iW`F5N{h*} z=WsDdQNmd+WD$Q18nheVp5TOb!5HMRT3GEZ`f_2vUzUqfyBDy96{pI?uzW4n<>v}Z zi_eTu5o|?@1m7&Xa-&IEDur))Wf_(a#u4JzDm)sf;l8`677J>1#Iou215I_I5E9nb zx-Ur~@+>;6mcqqe;jePNCMG+A(CtpvM=+(xiPLA}IR{u)FjdHje5rgw!A(kpDBO#QY;pPz!bitGb`DU^kx{iH&P@-=V$R@^Q)iQCnXjL6$(DM)8R9Ih9w4{$Ct^j5-TVQty<)!)_UbNZFhciSmVj%$pTcaY{ z)1`xUJ2vQ#>4t5|Kp>)NZUvlK7vrSXj2Hc2sLk~QXzXulbHRi0Ts#Qla8lvAL}F+zF8fp*vQvAE@6_WGwM z&X3rMSUs@U9XYpZW4fCUdz=)q$2w>aH#_?0++Kc=E0||E!KQYU1e3q^1a%RUx*HnH z#)@Fwrj7g9m3RLYzJOh;jFMnWx?<^%tBkO52vD*-`0*u%?fcL8oP1G zSHl5KvWGLvALWkaDYh3@3~gVlKF^~4C9MQ|*C~%Ia-m!w@()&rYhN^EKA*zpgr=J= zKZFJswy?_{N$GY4%OGOGMDi;h#u~idL367?joIT5Tq+IS70=;q3)?NNId{7qr`~2t zr(Fx2!)Tg0OYu055Q7<#_|KBh2Hy^q+($cYqKElinD%q7zJ^D z1Dd~-GR}&RcBtwS_;d#2Vxq%V7wa!b_UCYknH<<76$ONg?x>EX+t(?JoW_^E`32Nc z$NfznqU)a<$`hx8oxidMbXG_$W1^&Tr-TWu*gFlYOHa*EIg=ufgeJkh(RD8r;v_8hg+W^9k%?d=r*Y?hkcE*`K~RG5X%_teg=AUd_N1o$(Hs%xU5 z^iICIV$1AM296T#BK4iyq_vP#F3n?zom+5EGou<0+v7P zcZ-TEeca&=Htqik9IgVTy7+n=XxosLkgvK|T=@`UrDL5H4)B z)rpEJJ4cCx6<-d-JZe#jfUR@VSpH~mtq$cg&gis#lz*(oVsL#xZj!40b;P)})xQ28 DFgXAS delta 2804 zcmYk+drZ}39LMqJ00L?%H@V2|a8Xf^`yDkALK6Z-QL;>roD-tKQNT5?$3G%#vuHkL zZI-TSN`K@`*B{MtOmjMCwHjNxnxn6m^F6QM^ZWhIbNN2cbM^=R znIE_s74nv$Y$TG1cY}@5jifNXC>zHb6ONm33~t2Ax_Lj8U|>i4b4tEL0P>ECR29_&Ol)Q=j#dpHq4cItyTh58Wcy%C$-Y2NNF&IhywN~f3p^kq+mec&@yb#8^Y@t38wIr`# z7QT;~$wkyahMf8h)XeTU{^s~6Dszue?S!zNTGHeI-z9m;dyq$F zAM!CD@s)t*P^r9z>3G+vN7IOYpNX14K9*v+Q}?5m=0zk4#v<fs;Rz(`<}=hL z{0dX>CNdclMDNKMkJ@ylsP~^mUNK#$jO<4Jem`d8aa8+1p#C?0MhzsGvly-OpUQ1L;LR#`2~2j-fgnL>;ps)Y3der8tCMR$>&+z)md2w~?foOBkl} z{}UIQ!5vhCV;H86O9CoYb5JQ?j5-Y-)PUPjd#4L$;tteI2XGsnKriN!Hq|X^^G;$m zIu+#@P(us3&{{R2X7;l4!aJzc51=;VY19nQqh|aqYGC)B=i&StX_G~wCXj+8!^}rb zY?b3C)bILI$-f%j$BkKd5Y^$As5QKadj0^nqsu+g&`#8`-HV#>r>M<$)~SDuI)+yq zucF$yiQ1fZkZoY@xdS6>F)?i0;0d7gNZ2xuLBL@H55c!)A$EiqaeMlVq5(=Jx&B3>Z0nf_nO zsVpbjhy~7r99%?n5>F6y1V!^7+5OeHMiq)Sq0ahf(UPPSdBk*L2GLAtjlG19Q!Vi{ zp`v3qbNGtQhpPx}xOV5BPK{31aQ{t^ORQF%5=v|!v|-%D1Y#}`OsG6g#13Ea=Y!fG zD%nKK@YTpymUErqSm8JuwaImqhu6ncx3&3tdVF5HH6mbxBZutoQHl0k^l`faj@)t#;Lv zS8ZKlpRG#Taq@D~BA4w>Npt1e=F~=eAvMzmyGv}dyUNz5<=QK0vusLwhV4!N-j2<@ zH9o(1R$-aDpt!Q2z&^}O9<7&G78csHsd1B<{cC;Qy?%GIzsJ+v;kTZt55hc}g~w}a zrysPtXC~T+tRHP8#$*re%~>;r(Rn^!?GN$yH%PuXS nVRI@P?U9OV8&tW-c2+jnfvO6-e0G`raCWJUpYxr)KlkvzJQhN9 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 dcee6bf214..6ff0313c62 100644 --- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po @@ -4,13 +4,14 @@ # # Translators: # Translators: +# Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-10-28 07:33+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,13 +26,13 @@ msgstr "Documento" #: apps.py:98 msgid "Create a document type" -msgstr "" +msgstr "Criar tipo de documento" #: apps.py:100 msgid "" "Every uploaded document must be assigned a document type, it is the basic " "way Mayan EDMS categorizes documents." -msgstr "" +msgstr "Cada documento carregado deve ser atribuído um tipo de documento, é a forma básica que o Mayan EDMS categoriza os documentos." #: apps.py:107 models.py:65 models.py:158 models.py:626 search.py:20 msgid "Label" @@ -39,7 +40,7 @@ msgstr "Label" #: apps.py:112 msgid "The MIME type of any of the versions of a document" -msgstr "" +msgstr "O tipo MIME de qualquer uma das versões de um documento" #: apps.py:113 apps.py:197 search.py:18 views.py:829 msgid "MIME type" @@ -59,7 +60,7 @@ msgstr "habilitado" #: apps.py:188 msgid "Date time trashed" -msgstr "" +msgstr "Data e hora do envio para a lixeira" #: apps.py:193 msgid "Time and date" @@ -76,29 +77,29 @@ msgstr "Comentário" #: apps.py:387 #| msgid "New document filename" msgid "New documents per month" -msgstr "" +msgstr "Novos documentos por mês" #: apps.py:394 #| msgid "Document version reverted successfully" msgid "New document versions per month" -msgstr "" +msgstr "Novas versões de documentos por mês" #: apps.py:401 #| msgid "View document types" msgid "New document pages per month" -msgstr "" +msgstr "Novas páginas de documentos por mês" #: apps.py:408 msgid "Total documents at each month" -msgstr "" +msgstr "Total de documentos por mês" #: apps.py:415 msgid "Total document versions at each month" -msgstr "" +msgstr "Total de versões de documentos por mês" #: apps.py:422 msgid "Total document pages at each month" -msgstr "" +msgstr "Total de páginas de documentos por mês" #: events.py:8 msgid "Document created" @@ -106,7 +107,7 @@ msgstr "Documento criado " #: events.py:12 msgid "Document downloaded" -msgstr "" +msgstr "Documento baixado" #: events.py:15 msgid "Document properties edited" @@ -119,16 +120,16 @@ msgstr "Tipo de Documento mudado" #: events.py:21 #| msgid "Version update" msgid "New version uploaded" -msgstr "" +msgstr "Nova versão carregada" #: events.py:25 #| msgid "Document version reverted successfully" msgid "Document version reverted" -msgstr "" +msgstr "Versão de documento revertida" #: events.py:29 msgid "Document viewed" -msgstr "" +msgstr "Documento visualizado" #: forms.py:42 links.py:205 msgid "Page image" @@ -200,7 +201,7 @@ msgid "" "Download the document in the original format or in a compressed manner. This" " option is selectable only when downloading one document, for multiple " "documents, the bundle will always be downloads as a compressed file." -msgstr "" +msgstr "Faça o download do documento no formato original ou de forma comprimida. Esta opção só pode ser selecionada quando o download de um documento, para vários documentos. O pacote sempre será baixado como um arquivo compactado." #: forms.py:199 msgid "Compressed filename" @@ -238,7 +239,7 @@ msgstr "Excluir" #: links.py:74 links.py:109 msgid "Move to trash" -msgstr "" +msgstr "Mover para a lixeira" #: links.py:79 msgid "Edit properties" @@ -258,15 +259,15 @@ msgstr "Imprimir" #: links.py:96 links.py:124 msgid "Recalculate page count" -msgstr "" +msgstr "Recalcular a contagem de páginas" #: links.py:100 links.py:128 msgid "Restore" -msgstr "" +msgstr "Restaurar" #: links.py:132 msgid "Download version" -msgstr "" +msgstr "Baixar a versão" #: links.py:137 views.py:82 msgid "All documents" @@ -278,7 +279,7 @@ msgstr "Documentos recentes" #: links.py:144 msgid "Trash" -msgstr "" +msgstr "Lixeira" #: links.py:152 msgid "" @@ -289,11 +290,11 @@ msgstr "Desmarque as representações gráficas utilizadas para acelerar a exibi #: links.py:155 #| msgid "Clear the document image cache" msgid "Clear document image cache" -msgstr "" +msgstr "Apagar o cache de imagens de documentos" #: links.py:159 permissions.py:47 msgid "Empty trash" -msgstr "" +msgstr "Esvaziar a lixeira" #: links.py:167 msgid "First page" @@ -350,11 +351,11 @@ msgstr "Editar" #: links.py:247 msgid "Add quick label to document type" -msgstr "" +msgstr "Adicionar etiqueta rápida ao tipo de documento" #: links.py:260 models.py:634 msgid "Quick labels" -msgstr "" +msgstr "Etiquetas rápidas" #: links.py:264 links.py:269 views.py:404 msgid "Document types" @@ -366,37 +367,37 @@ msgstr "Padrão" #: literals.py:24 msgid "All pages" -msgstr "" +msgstr "Todas as páginas" #: models.py:69 msgid "" "Amount of time after which documents of this type will be moved to the " "trash." -msgstr "" +msgstr "Quantidade de tempo após a qual se enviará documentos deste tipo para a lixeira." #: models.py:71 msgid "Trash time period" -msgstr "" +msgstr "Período de tempo de envio para a lixeira" #: models.py:75 msgid "Trash time unit" -msgstr "" +msgstr "Unidade de tempo de envio para a lixeira" #: models.py:79 msgid "" "Amount of time after which documents of this type in the trash will be " "deleted." -msgstr "" +msgstr "Quantidade de tempo após a qual documentos deste tipo serão eliminados." #: models.py:81 #| msgid "Delete document types" msgid "Delete time period" -msgstr "" +msgstr "Período de tempo de eliminação" #: models.py:86 #| msgid "Delete documents" msgid "Delete time unit" -msgstr "" +msgstr "Unidade de tempo de eliminação" #: models.py:106 msgid "Documents types" @@ -420,28 +421,28 @@ msgstr "Lingua" #: models.py:173 msgid "In trash?" -msgstr "" +msgstr "Na lixeira?" #: models.py:178 msgid "Date and time trashed" -msgstr "" +msgstr "Data e hora de envio à lixeira" #: models.py:182 msgid "" "A document stub is a document with an entry on the database but no file " "uploaded. This could be an interrupted upload or a deferred upload via the " "API." -msgstr "" +msgstr "Um rascunho de documento é um documento com uma entrada no banco de dados, mas nenhum arquivo carregado. Isso pode ser um envio interrompido ou um envio diferido por meio da API." #: models.py:185 msgid "Is stub?" -msgstr "" +msgstr "É um rascunho?" #: models.py:193 #, python-format #| msgid "Document types: %d" msgid "Document stub, id: %d" -msgstr "" +msgstr "Documento rascunho, id: %d" #: models.py:354 msgid "Timestamp" @@ -457,7 +458,7 @@ msgstr "Versão do Documento" #: models.py:633 msgid "Quick label" -msgstr "" +msgstr "Etiqueta rápida" #: models.py:651 msgid "Page number" @@ -479,12 +480,12 @@ msgstr "páginas do documento" #: models.py:783 #| msgid "Version update" msgid "New version block" -msgstr "" +msgstr "Bloqueio de nova versão" #: models.py:784 #| msgid "Version update" msgid "New version blocks" -msgstr "" +msgstr "Bloqueios de nova versão" #: models.py:794 msgid "User" @@ -509,7 +510,7 @@ msgstr "Excluir documentos" #: permissions.py:16 #| msgid "Transform documents" msgid "Trash documents" -msgstr "" +msgstr "Mover documentos para a lixeira" #: permissions.py:19 views.py:903 msgid "Download documents" @@ -530,12 +531,12 @@ msgstr "Editar propriedades de documento" #: permissions.py:31 #| msgid "Edit documents" msgid "Print documents" -msgstr "" +msgstr "Imprimir documentos" #: permissions.py:34 #| msgid "Delete documents" msgid "Restore trashed document" -msgstr "" +msgstr "Restaurar documento da lixeira" #: permissions.py:37 msgid "Execute document modifying tools" @@ -606,30 +607,30 @@ msgstr "Lista de idiomas de documentos suportados." #: views.py:68 #| msgid "Clear the document image cache" msgid "Clear the document image cache?" -msgstr "" +msgstr "Apagar do cache a imagem do documento?" #: views.py:75 msgid "Document cache clearing queued successfully." -msgstr "" +msgstr "Cache do documento apagado com sucesso." #: views.py:100 #| msgid "Documents in storage: %d" msgid "Documents in trash" -msgstr "" +msgstr "Documentos na lixeira" #: views.py:122 msgid "Delete the selected document?" -msgstr "" +msgstr "Remover o documento selecionado?" #: views.py:145 #, python-format #| msgid "Document \"%(document)s\" deleted by %(fullname)s." msgid "Document: %(document)s deleted." -msgstr "" +msgstr "Documento: %(document)s removido." #: views.py:153 msgid "Delete the selected documents?" -msgstr "" +msgstr "Remover os documentos selecionados?" #: views.py:175 #, python-format @@ -638,27 +639,27 @@ msgstr "Editar propriedades de documento: %s" #: views.py:191 msgid "Restore the selected document?" -msgstr "" +msgstr "Restaurar os documentos selecionados?" #: views.py:216 #, python-format #| msgid "Document: %(document)s delete error: %(error)s" msgid "Document: %(document)s restored." -msgstr "" +msgstr "Documentq: %(document)s restaurado." #: views.py:224 msgid "Restore the selected documents?" -msgstr "" +msgstr "Restaurar os documentos selecionados?" #: views.py:256 #, python-format msgid "Pages for document: %s" -msgstr "" +msgstr "Páginas por documento: %s" #: views.py:284 #, python-format msgid "Image of: %s" -msgstr "" +msgstr "Imagem de: %s" #: views.py:330 #, python-format @@ -668,23 +669,23 @@ msgstr "Pré-visualização do documento:%s " #: views.py:338 #, python-format msgid "Move \"%s\" to the trash?" -msgstr "" +msgstr "Mover \"%s\" para a lixeira?" #: views.py:365 #, python-format #| msgid "Document deleted successfully." msgid "Document: %(document)s moved to trash successfully." -msgstr "" +msgstr "Documento: %(document)s movido para a lixeira com sucesso." #: views.py:378 msgid "Move the selected documents to the trash?" -msgstr "" +msgstr "Mover os documentos selecionados para a lixeira?" #: views.py:393 #, python-format #| msgid "documents of type \"%s\"" msgid "Documents of type: %s" -msgstr "" +msgstr "Documentos do tipo: %s" #: views.py:430 msgid "All documents of this type will be deleted too." @@ -694,7 +695,7 @@ msgstr "Todos os documentos deste tipo serão excluídos também." #, python-format #| msgid "Delete document types" msgid "Delete the document type: %s?" -msgstr "" +msgstr "Remove o documento do tipo: %s?" #: views.py:448 #, python-format @@ -704,23 +705,23 @@ msgstr "Editar o tipo de documento: %s" #: views.py:478 #, python-format msgid "Create quick label for document type: %s" -msgstr "" +msgstr "Criar uma etiqueta rápida para o documento tipo: %s" #: views.py:499 #, python-format msgid "Edit quick label \"%(filename)s\" from document type \"%(document_type)s\"" -msgstr "" +msgstr "Editar etiqueta rápida \"%(filename)s\" para documento do tipo \"%(document_type)s\"" #: views.py:524 #, python-format msgid "" "Delete the quick label: %(label)s, from document type \"%(document_type)s\"?" -msgstr "" +msgstr "Apagar a etiqueta rápida: %(label)s, do documento tipo \"%(document_type)s\"?" #: views.py:552 #, python-format msgid "Quick labels for document type: %s" -msgstr "" +msgstr "Etiquetas rápidas para documento do tipo: %s" #: views.py:583 #, python-format @@ -734,7 +735,7 @@ msgstr "Tudo versão posterior após este será excluído também." #: views.py:600 #| msgid "Revert documents to a previous version" msgid "Revert to this version?" -msgstr "" +msgstr "Reverter para esta versão?" #: views.py:610 msgid "Document version reverted successfully" @@ -752,12 +753,12 @@ msgstr "Pré-visualização do documento:%s" #: views.py:639 msgid "Empty trash?" -msgstr "" +msgstr "Esvaziar a lixeira?" #: views.py:650 #| msgid "Document deleted successfully." msgid "Trash emptied successfully" -msgstr "" +msgstr "Lixeira esvaziada com sucesso" #: views.py:685 views.py:996 msgid "Must provide at least one document." @@ -766,7 +767,7 @@ msgstr "Deve fornecer, pelo menos, um documento." #: views.py:704 #, python-format msgid "Document type for \"%s\" changed successfully." -msgstr "" +msgstr "Tipo de documento para \"%s\" alterado com sucesso." #: views.py:716 views.py:1235 msgid "Submit" @@ -775,13 +776,13 @@ msgstr "Submeter" #: views.py:720 msgid "Change the type of the selected document." msgid_plural "Change the type of the selected documents." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Alterar o tipo do documento selecionado." +msgstr[1] "Alterar o tipo dos documentos selecionados." #: views.py:799 #| msgid "Must provide at least one document." msgid "Must provide at least one document or version." -msgstr "" +msgstr "Deve fornecer ao menos um documento ou versão." #: views.py:819 msgid "Documents to be downloaded" @@ -793,21 +794,21 @@ msgstr "data e hora" #: views.py:931 msgid "At least one document must be selected." -msgstr "" +msgstr "Ao menos um documento precisa ser selecionado." #: views.py:954 msgid "Document queued for page count recalculation." -msgstr "" +msgstr "Documento em fila para recalcular quantidade de páginas." #: views.py:955 msgid "Documents queued for page count recalculation." -msgstr "" +msgstr "Documentos em fila para recalcular contagem de páginas." #: views.py:964 msgid "Recalculate the page count of the selected document?" msgid_plural "Recalculate the page count of the selected documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Recalcular a contagem de páginas do documento selecionado?" +msgstr[1] "Recalcular a contagem de páginas dos documentos selecionados?" #: views.py:1023 #, python-format @@ -826,8 +827,8 @@ msgstr "Todas as transformações de página para o documento: %s, foram excluí #: views.py:1044 msgid "Clear all the page transformations for the selected document?" msgid_plural "Clear all the page transformations for the selected documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Limpar todas as transformações de páginas para o documento selecionado?" +msgstr[1] "Limpar todas as transformações de páginas para os documentos selecionados?" #: views.py:1078 msgid "There are no more pages in this document" @@ -840,12 +841,12 @@ msgstr "Você já está na primeira página deste documento" #: views.py:1225 views.py:1234 #, python-format msgid "Print: %s" -msgstr "" +msgstr "Imprimir: %s" #: widgets.py:71 #, python-format msgid "Page %(page_number)d of %(total_pages)d" -msgstr "" +msgstr "Página %(page_number)d de %(total_pages)d" #: widgets.py:100 msgid "Document page image" diff --git a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.mo index 40e9958a5aba8c5da11293e39475dd5f5b48bb9c..b865e5a24327a274388733259b80233d9a0c2eda 100644 GIT binary patch delta 40 vcmZ3XvqEPBBQLk1p{|j!f`O5hsmWv>URiEK16?Bv1p{*{W8=*xyk9r~!v_g& delta 40 pcmZ3XvqEPBBQLjsiLQ~kf}x3(q2Xj6URfC5!pg{KvkC7P4gkZ53331c 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 1c862bc050..875a5d31c3 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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-10-28 07:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.mo index 331d210e66f267ea39bd75a57ff5c58c454e9e8c..736eed43151c2bc5423de01e3fad34fc56942cd1 100644 GIT binary patch literal 20807 zcmeI2dyrgJoyRYN0ud1K5f$0JAPF;)nM@ua41^FvfB?fI1QvY2cBXq~n#^<${m3LN zVjcp~Kq3)DT@V6_x`+%RLmnid{9{XNA8vQ8mXy!Z(yiLka%)+)+-L26zQ1$s?R#(c zBw<<0s;%wh%(u_E=ka@=-#NE`eCja|2YmKX-b4A-8-w8A!ToRM51+5RB?uk?zX~1) zE;%^}LhwqEuEA>XMDPx9F8DFkCHQ+yhOTddy34+VO_29MOH^BjL=BYt& zHdp{xf)9Wq;b)-M{WW+O_*?MZVC}6z@Q2_wunIm0z8!q;+k)U&@B+~21$h))3BCio z7362e3{?M{LGfJ#MSmTf1K#bQKLd)N{h;V-`1+5* zlc>My>qpIWa(X-1Lwg^{(!s5u#?^d%BdGa53u^qIgQDX*;Jd(IfV08>0x^ML_B);2 z&jS}wzX=S%PlD3-GobjH0=3?^z+UjjpvIrbq|)E%pz7y?;`0hn)2v&fw7_0^*hmD}<{tT%3z68oHra;-*cR|VXJ*Nf131Al}y`2kc-9_Lv;AP-h z;KN`U+y{o>`!EXW`zla$d<2yIR(Tu;F_GYIQ2c)yl-)cAYQ3-c_9;;7y$s54zUAxR z_Rqfu&Z7ONzJ4r5b0hUrz!l&ycoVn}L>0j)7*99Y4T_!{K*>1=z8Cxy$W*~DQ1WPk z8uyQ&_&J_N$@?@=^!I|Ie<^742G6Iy0+e5F0mat~pyYYb*Z%?(Ki>tVmmh$V@2jBJ z`!`VZof^7+At*h~2DRRKpys^;k_JijSiay7)X1RQ)uNN5L#mdc6WfbwLS~yzU1@_jV8y4W0z0mjk~2Z$RncCmw(9 z@$W&|(XT<#@mo-Sa5Ba#KR62%y$e9`KLo0O37q+cAeaEJJ&L#q^XmVTvynacYf$zu z7p8E%-~-?d;D^DFfRmu)bW(Q^RKVHb82CAG5IpvM@Bpp`p9W7l2VH_w;L)si)Eqbd zjXgnth=bF?@6o;(Tta>3T-F3{0e66pf;44z7T7!==kf|Ad-K}ZjN1WJ!H7WjAyuA+V` z$p7FQ{5co=XHe^$v(WLi96Xu&7LSjDw^4r=&R!SPHgeinj~+X_(g=fH(Wu|6pO-hZL9_gBD+ zss9tmQo;O-99^qH>HTRC(+R!vA~`ThzNz5fYr22W;k+0*C1 zV_5%(pw{{6Vn^@0FL8dc3_P9oYruDaqoCxm2|NLu1oiv?cn0_b(AEJZmy?$`e$NGu zqkbu9dIV+vcYulq2f(|)Z-RfPeh~L@@Enw)^(MjV!5@Lr_gs{?0=yZ#4txeg6v2Oh zh%&ffnUhluWXj-4k3R=xkFzgxbbJszk^0@>CE)!aCKUWNDEmM9a;KMbK*{xTQ1ToG z&j#0mva2UNHo#fbgDaeTW`k!?T>xs_jUIE`mYBy&m*AZKLtwuuY$7E9)inB;Dt!eincyfLDW};})@E7lMe(J}W(j z9tEGG$leN+)f9c6p!_j~&|@|we_Be}KoJk(PoGCAU!#0b6+SOeo}%2O3ZFY2r2f8z zn(RuSFHttzw;=cvQ1aL3jSg%-*4HJJ7b!a^vh^=g-awIDwo>$wj32gd&c06L`_aCx zxT8;*A{lj2#we2KeH7WpUdq=g`aDZHjxwbRp8<+u&~{b$yvITC7g7;9)_Vp({eg(`?`Y6X!1}S$_^tpucdCG~DWt8(M zdCG?Qt&p!!Hs)5fO%JY;{C_|LfDbGepj<_{p0bOg&xaiZYrwky ze!j<9;2o5YQ+E5dUho5y%Y8kDC1JiiSRX5tYGJijUlkUsVXoCQQLK%Gxl+jE%DS*z z3Tq>UFrTaCR^_UNa8G!E${xAFe8BaIsV?R4VoH zS|RVdh2@G?DGbrxYFtyy+5AhcTizQi85}HBtA%{9B%crOs22xUhoiYwh0(B9Zjo18 zH(pQ&bsHUx+pFnXSRP_th*I}(qDW5&%NIrqqNr9bvl?xqImisx6e`ssjOK<^vti}Z zAx4eoh6`>ziAJ@sR>_sBL*>d?uEtE&kgqXm{o$R`66|VmDiZETC+1-EgUW6sx=G~ zeMV+HR;L98S5fdF8tx62j^s+xi|CRGm_4*Q#6yp~XSLN;Cb)E@Fu1x}9}AX352lSZ z9nu=~Fd{EreevrWU5$pvawv|;7zcBMBM@kGY1vMXqoH~}T*-~2-)dMXj8_U(EXP|h zHYR5YtK$W8S>rI8t$KEtFILA#bL(*Ue9IIu^Q<>8X??UN0Xmw}&Jrvwk0}@lwSG1J z!lDW^rQ8_oR0%QQuS}v$`3g*0`Zmm}rT}$Ab7_G7Kf1+7^;$2bUUI z7LeRmgdxxI4}8se2SLmFm}i;4sHHHJLp%}2v{VUCrQy0X+J%cPzv0^R7F^IXU$KQS z)7{Geg)|xv*H>3R|I(C!}w$Z3?&}@P=qDYc2Pn6uQ)@oC*OxHqlv~(L1jwaE7YS=X^-<@cyl;NjV zmN%%o*Z7s)d6V0yBMV zXF79M^~~t;bdu2&36{KHw1|#2%}Rl9DR#0?QY$1TC>ACXQjn?Ty#Twb(I$zJ`?k#U z*4|*dPG|LI#t>U-Ws;B9q%8)k+9%B;;}zX5=RG9R`kK^L#mZ~-@x*ZAsZx=4J9Ej3 zNOC3^e~F#0^(+;Mjdc8}TqzD0OSw@WA++toRF1^V#Z}y3ELSQODn4N=n+qxZbDo%6 zMN(HTjjjtPMwF*`I^;#k-Ihqe%wvSC;y42$r4b?I)T`>HJgv5e=SC-T>#9k1$uyO0 zCMZ&XmqHxRQ7#rN!$<5-JbySIdr;?J*VcLaN_<}&EGtRsd2q0tN7BKvN(JfW74sx`iPVBZc27-iMrk|05Kkh> zE?2tQaou#zNi|=@TqI~ZBNSYAU7XIh`b23}u39Y)moT411}UKvhR9g4Tj@PlEe?k0 zI~>TZ;{>qm(t#U@#kImPW_c%3FIrhdtt|}J3F%Q&I0o-S>x|!Wc@%=y7OORLNqMZo z?`4>Y{o!2VC8eftjEzF1xM$-z&Mw$|a#UDlc^+3t5iOE0w@8wH0@M?&XfmG|`<7LIX76Z{v4RZs_2bQ@sWFWV;I94AEb8%`PCFWhT zx|LUvG?ph^CQmKO))PWD&Bsapnt~1r(X6HV*s21F{g8GFW&2%zGn?Z#m^tAZ3$fiX zneI$c7%SLFh_SVqvRHb}gmyYmWGN+o$6xRgxRZ@od|ez2s9p8;1fXM21}n%11IqI8 z)iuRD=aP;G0bIv#KX7%}?!Cb^$=pxUt}5%m9!s^6^g}=GbkDQx(I&WRv^==lW=geG zQ%%u9n#Q%>NUtH{2G>Cl&MdlaL*3nZJI0~$SzR?whNHI`#cEbl_F@!>XaJi z`ng=j)^axGnn}{}J2kuc+7GqCb;K1+EW)%g0(vz=C9R9EM$PhP*r4@8bW- zAhKSTk_SgjW$RTMNF&Uj^;KC+gwqpZ-8w(EB{9evvk2mqEkfjQG88Mtd83WGnI9AI zeKUl+3yRUg5L3DDBq1ZU;D-9DF?R5kczGNUWgoc`cS=rreiBQwS~1UtL_2KMHIpyE z6z*>+#vq=WQ|iV-k@$>>RF1_)<<^WD%jQ1H3Pr4pDOxp}PY)_Y912%oV+h|2+NF%T zWJ+`-D3@}@(O{+BopAW$=B!|~YArW59;}q##smC3FjL^n?!!)|ODv{C^&+WC&tU;` zrRByEb=APt3*;ij%#p}HvU4c`P{%IU*;?$>wNkt6jW;g8G`Nwgr{E@cX;zKDNNUki z=BPIj8sZjzDowRjgImgV6Kigib6B2>gqkUGDBi4{Dv~1ppu5uw4B3PTAm!V+^yyii z@9{MCCsL3ZD+=1Hdj_h*#eB~P>ciEZmF50$#&y@O?6C_04p%)ollO=7`{te3GjCqc z`~_j({Qh$n_Vg|6>!V{2K2p>LVWwZ-{IG9f|Gab0>Ekm)X+jS&D^)qMl`H+>iZWpr zhgngsauO}m!6g(uD+{?X9@j~#$dkH8YPIqHxpOBbCVFccUK}c{?Zx2dR@}hK+%Y9o zJ%#*Ob#9br%&pYtcF&M!wV0mQ+c#q=?m#5zk+S;38r#WSZfJ_73w7M95JMK-xbm`| z^IQGwDyC5BiSp0>@cdQ9T1;$zSgFsrZnR#>jrLr|y+gG>ER9>Wx@h5rq5Hb1t2Ap~ z-=anH!r8M!eeFAA(Y$%#;;=8IJN1hf&5s^kv}mEe+K9f3=FJc9y2}l@c;3QphRpLr z7A@-2BkOnZqH|lrFX)cjnU`gvH7{Dk42#40Ot7H)!Wlv1k;Y`>g~m(GP0h`XeT~Vm zv8!>gv9GzQvA;3ZIMCckQ%~4@fG-Eb#%?;l+}P9H(7Zov>!!qV!;6@0^gn z8yYV)_VC3mBLZJ&u7~{Hj+=u}bFjI-v6BZcH6}F|!}hpAJDXcz=OC2>&23tj$1LRM zItb4%@f3>08-pVv5(_l%W88XU*ly>Ish5%FCp0Rss-(0Nscn?ho<~L-_zI29tzwyF zCGW7YuT4tLP00yfGCB?hjqNaPGEXV0xn=q%UV$bfmfHi@X!?1?va{Jz!X(GmD9P_7DXGoa6lviM%3g-p%`9`UozYL*ToT9z$Ky`3 z9GSsn$F)-8mq77|J?1kq2?T1Q-l^3Z`$L+hknkR<9I-x5{b2K6=~N2XBr(b=Wl$!D zZAZ4I*>CgyNH#2~X{H+cSz`w}MQc0-omgIi1aaSxWbq-92;oMYd3<9J{^7*_B7#JZ zB4~e`P@7wl8a7U|MwL>vM6(+sH<|7>ImxL_C}c& z?yKOmOANHhq$Ofh=v>`=UU9}*@B!xfEV}ZdwvgatCndza%w(pCn@2c-3&mMaz<-XE zg5SdgLF4nt7Jo3?l-;_hi=%5l+TWNA8ehO3wEg{%b@6m?*DvauJxz~6Szrp?~^D^VbM=qUcz-cj3}HW-(Xm}ok9 zUxEZb0BX`(FGCZ(Tv*ViD+kXeDA}=XEGoo1b4JhU49%bfB*h7`{9C^Q|P`md2`&@q1mej|cBy``G3zU|K!KZ)-y`J#T%Tw5hik(OJFq;x^54X4^)-?ZFAMB39!)E3wr( zBhB#M+`_2Gm09B>OWd5EPF zXTM~)v9qB?)X1_E9nFF=`89Ks_C|S?24Q3el}#FnyPEf7KA8nk2!kx#M2DxuD*gy) zr!U(IP&cZMPXL_=!@ZSnWp@ywPKU!oig^ou$>}@Uv7*Oe`?z=9m?j4bGH&HA97o&D zohEEn&J=4C^(uCAw987$b{qwNoh>cAv7B8t*7K|P1R z9I(UmE}SnPG@fMU&U?djPdvjJcBh|7GE?eiuS>G_<{bcWJ=jp5ZHsnNngyTjvO~;G zC&{+JgIW*$Jkpe`8cl345$gEL++NB@FvlT=wy9gH*3p{yYzBu}v>63zhyzx)4!kf% zaQ5=ZPMPV;+^xg04;}tsqzTNrvd5xBPC1=q+TFf`eM@iYbC`Cp%zAWcMR0;mwEd?1 zSTiX*OZkeQJ{68$x3@gT{^+6#ZjOW5KHl*{!Yr_z8E@UhtK==#p2L~4&d`(E=rIgZ zI&)eJlKu{C7gm`Fqq0%LR&r3A2bl16%({o(y6Hi>iF-4|9w&_4Y^2hI-mvj3;zs21 z4VQD`8LC2v322kd3zJee%+p^_NI{4!%{*B_L_p{BFjV>D9HA1jFi}6{9^FND;9b5e z&#-$&ZGV|76cOgxv+X>}hOyg>(Bhk~=GLI`1T4wj?AAxlYTTPfIzB?Emi=y!pG4b2 zJHdpJj>DyE39xg>b)GQ&KtB>UXkXFHWBQ?4k;-|e?~NoA>}gMZ9NB2kQbLh_+D^*k z;rN(7Sx^4}r4=SR?7J}BDb-76KR$0u#lOQnCxOGoV}r+s+<}a&&6@`z&?K8t;`1gC z3sQUHz%3`?84WJ1#P_3;lm!;~%oOI+>3%e;C|P8Bhe-VfCPN6l^-`d98;Q#Nj_Cqh zI;KqO7cyMmOcEF5bNh9p-Ew7ja`(*{pHxpZ>1t9@!E`F?cGB=R;^ReUbDxuVN1;v9 z?Zf)JS2pG@rI8ZBLMl{rT90q_DV5GlR$^ z?ACQVGh0ZJ^2|-qVRYqZ8l5KP*nzycgp{&5x^8j-iqqFUqRcEo_rvrE8egP=19}I8 zN*>+^^m^6Dh$xCV7v$1k0^S$*mJ&KI^#n`#lSOnQQCQDjPix-JnYOc4=gHesSF4RF zeB?O{3tJYqa85F2R%6DeH&UpOPHe4A<6k|+Ct1-Wbu0a4lj7jliK-oL95ZqBm11`B zPlpg)#_PQhS&m)3K!hET=|bv}u~IcAeznwil!5zLTle|OvACkrJi5$-1A28T*kgB{noSGis6``nz~h zW45A$to+hBw4FaP`Dt?#cIr;-E^Tggw~MIMO>>9a4xf^ywwOcAm~y11e^J;LLY2Sa zS9sN7UR*?PM8&ME+T{NjV%FZ`l0aFyy*88n(6K^@g^?p%1cg4vbX>||ff6R#^*dTe zOR^l)$$eY%-sIrKR@8pmq9qP7w1Zn`dp}4(Ay^;;m&L)aBQSH9rvpR8Pm-jd(LRHn z1#}RPkL!~0^fQ>GEX=lM_G*MW=*jM_gx?)55VDJGWtZq2q94=dtq_Q7G9sx2W=;Ky zPVu1aH*~2J=AkBVzozRn$8`Hd+9Z@#N(eH5^%-+<=fyq9l2?uvHF-s5oSf|UAa;^g7xXS2|&=IQjLKoXzm5|#F8wJ%xR@!j1< zo4IU)eHe<58IeIJPlcZS2cz3>dr2(eBMp0L?X2DTeH$6rd_2&8C?UP^!v>`V@e_Dv zkBXjfuAT0Qrq@=XfGZuhE!T*Yi)H^$)@uG zwH3qvx0bR1+Gf7k!T;H%v=QlSt>04EZ%#74EB}5xo#k}gVg0op`HN40`B_e5ms-hi zWFV|zFqAV}HrA$d=O+Xg zhngw9oJbtwG^HHeivt0$BXK5hzuZapHQU0*k^?lEa_^lw+9Lnhqt4Ky|;{CR1*KmDRmsnzQW9$`IxSC{lg&bg_41P zBbwe=eeT-PmY7%fO?F$Ku!eT2+xu#Qn2ExIUvs_XLfX1?{^)GeM9z>M&~B+(KfaQY z+C(~A-iw?fZMFYGN9V*xv2RVUxVTm0P&uFz5307LL^7i}`4b?Lc0G;)wGHA&7Vh0} zhJcLi$p}Q14aS~cXX0i*b#uQVJA#Eij~lN?sCMjdo1*b5MajlwaUDF(=uPF_cCKzs z#f1!-ewk_9PsdnB+l~ETNV0QViF;3Hr^?+DdeC?n+cNnd;TyW-*e4nJvil{mxmNoL z$-)z+3u)XDd0%#wHYVf!5~dP|xoCqmrF9T6tYrpdYrHe&j~)e&-e9wpS$PzKF{ZQ zzW3>*W2z?kWB$^Y45fi6CT=*4*@xGbaG_*n8nXjeU^ni>7JLEQ(Z(!vEi)#L9$bzS zsO@KQ4PL;t_yIccI`X`v`H9L(8vaA=n8k&vaiVr`p?0XkY;3|D+=CnOK3suG%*E5F z4}KN%aT1r}MZ6t9M4ixAxSHpi->L91e{<0l&SN=tF^UIcn1_No&;`^9yoCighdO~T z7W@`_x&IjtU@c$XgU{j}+KxI-CabRF`DP^*&A_e&yOFG#`%yD+7) za3wc7Ks{=|-B^TCY{Jv1{XWAgT*C5oTpx~OE4Je2Scj_%$p0299c(1qWn!o+d>nO# zFXAe^g1X1o@Cp0|f5U_9&(j#7Qx9H2JsVD!G0j+loA5BM$7fI{G=(~Wxg?bXRQ^DH zaF8SVF&@HZbdwI<^9ND)*h0QCkDwP%qGn`u1HJmP109gt-b|XGKtc3?dHkXx1xq9C-l`KiRtvOLoM}09Z^l_ z_UhT;Xxu8!#k=G^;IaNh#EOo1MotV{GVk){#c#F6J#lL!F)SU0Zs{uW z%0yBAvS_Gp$O=o_y5mw=+$f3Sikao^Y=`uflsdLa=lbB*fk^0K%k*&Z#6r=9YTWEk z4D=6r!i$fKSvCb{MJ%A@7o+1{Ee zf33$?6Y%-OE_W~9*9H9knSaY)amafWVcE6KJ+o(XnL|pds%3in8Hsp1CEGVHzxqn# zsDF)I_xI(Wv#;25sZsk~`;t9pUo`flv{bv~&Dt_qRktN0^_+ZH@00OBjyx2okg3K( z`Lp4WoNC;cJ7Hf=ji$y@CmG?AeOYpwzLZ~f4#`mS{+UZHHyrX#@Su#gcS&r=MrrS; zme+UJ%k!hTg#^06F2vG{MQQ{qB1RAq z%%ELVNS9GwOoG6hAT)#SBIu^NGU`SmB8rH+KIa_X^E~G~@9X!#TrmI6b|%;7DpL1*>9bvHIM_o5d=*n|g= ze0ej-pq_}a6E_kQn z15~`n=q0~dWDvlYIE!Df3n$p6Ky#>@lu$Q$gi&0=*SxNE+{OI4+nA%cjwwuVn=!nG z+P8*R@EdYgGtFY2s+r3STCjjy@E+_8hSHM;*HBx_l6lE6pGpqcZ#J8vl_&J3fKy92xRpL4-@ZHM#A}YZ$>SnJn zjc;%a``Dbp66zKGLLJ=aq5k_B`1x{l!%W2~RKQEP9j~Gv=TU)IP?ZUB8U;Fm`eyo( zoF;=l%%KBysBLsLRY#<^yNH`kv z+0kSo9=7AQT|bx#4`nZm=fJKByaS8wc delta 1057 zcmXxjQAkr!9LMqhyqnE7o6fYB*+%MSskz-54e6nxRiYFa?oDz%g!NJ)6hXMkpk5;4 z76p;@6xc%)SAw2<2p@t4L0FW}_0UU^1U>Zq$vp7i=iI|R=lswA+}+EprYqm#!TUzb z6WfW!fZ0(Tb@-u81rhn8fp_c~!iI zD@d+ZW{@J;IjpqNnWnP^Z=vqyDek~m$eLC~mGmpBQh!hhhN(YmS|j#jJ8}jaMy-1i z*ET}Uo5lprp(^k=M*ZoV&(8?HMO7e17P5evSVmQ12DR|b+W0)`L@%+7Z*UUZnRFVj zpsr>Gm9WDHvLC~!gB9b{U!5@ql<6t#z%$s5H&6>dM^z+B7Fwtm^^IhaJ*|i-EMWkZ z)HXt`kJv@1f@+$txw^WwNdwqLC{r~hq|N#MEaNRWnLv;C!D(rAd9EYYn<~-k{dGDU zcGAlcd9OQ|Oz0~15Ni5MtJGN{?N0=k9KSEz>_oDI{qDY0Zg41<^NvM2)}ISQuIpcj MltTXdrgwG!0V0H9H~;_u 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 d2daf27bf8..4a08190f3b 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:19-0400\n" -"PO-Revision-Date: 2016-10-28 07:33+0000\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-11-17 08:59+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -35,7 +35,7 @@ msgstr "" #: apps.py:107 models.py:65 models.py:158 models.py:626 search.py:20 msgid "Label" -msgstr "" +msgstr "Oznaka" #: apps.py:112 msgid "The MIME type of any of the versions of a document" diff --git a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.mo index b77ebd3e5cabc7db414b84bf1028592312df7555..b27e5d7071262b2864558baa6ed126bf95099df6 100644 GIT binary patch delta 40 wcmZ1?zC?UODI2$;p{|j!f`O5hsmbI9Hd$^%16?Bv1p{*{W8=*$*#58p0Mye8hX4Qo delta 40 pcmZ1?zC?UODI2$eiLQ~kf}x3(q2c5PHdz?o!pg{K^9r^$ 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 e65c8db648..ef1d4d0f27 100644 --- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/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: 2016-10-28 03:19-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-10-28 07:33+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/documents/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/documents/locale/zh_CN/LC_MESSAGES/django.mo index 5b874d43cac09d350f912b3bec0fa079b0ec730f..366bed20c64ac989426e05ce7cc2df774b84db57 100644 GIT binary patch delta 40 wcmaE?{8)Lz6mD)qLtP_d1p^~1Q, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:16 msgid "Dynamic search" @@ -90,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.mo index 7a6865cb814fda56f663e8ac8fb58b8588fc696c..186753429181be7d1c9930abd00b96e65f4178f9 100644 GIT binary patch delta 45 zcmZqTXyVu~osrwnP}j&, 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -89,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.mo index 69c179c3ab02054e8abf99d9a8f9999be2eeb8cc..41865c3849ac69c48edb0e951789432fdf6b100e 100644 GIT binary patch delta 48 zcmey({+oTnbVhDNLtP_d1p^~1Q E0ER9Pxc~qF delta 48 zcmey({+oTnbVhCi6I~;71w#`nL!-%y829n}B<7`;CZ?xaDI^ugJ2_5{XNul@iph`> E0EJf%tN;K2 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 ff2b84b5bd..e413cc0158 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21: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" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:16 msgid "Dynamic search" @@ -90,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/da/LC_MESSAGES/django.mo index 46c9b63a95aeb8ed2414e9dd57bae911de75bd2e..14864216a3ef7cabe0ec2962d7427c0c558b5ae0 100644 GIT binary patch delta 42 ycmaFG{EB(P5^h67T_a-!10yR_lZopWPL5@a;_*q$OD|1KPqk7=Nu0cm(F6c7jt(pU delta 42 ycmaFG{EB(P5^e(%T_bY^LlY}QqlxPm^7tg?rI#kAr&=kbBu@5cjGnxm(HHOV 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 57be2159cf..85563090fa 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -72,8 +71,7 @@ msgstr "Maximale Anzahl an Treffern, die angezeigt werden soll" #: settings.py:18 msgid "Maximum number of search queries to remember per user." -msgstr "" -"Maximale Anzahl an Suchabfragen, die pro Benutzer gespeichert werden sollen" +msgstr "Maximale Anzahl an Suchabfragen, die pro Benutzer gespeichert werden sollen" #: views.py:25 msgid "Search results" @@ -92,8 +90,7 @@ msgstr "Typ" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.mo index 36129e64f5ed51989c17c5879cb3f643c8f4157e..02525e9a90c2f5a05c3e5cf289e323c469d4db25 100644 GIT binary patch delta 24 fcmX@lcAjlR6C<~wp{|j!f`O5hsmbPE#zTw%T#yF_ delta 24 fcmX@lcAjlR6C<~QiLQ~kf}x3(q0#1E#zTw%T+s&! 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 1303a3f63d..e0bf116c3c 100644 --- a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/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: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" 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 fd081018a1afa50e666e4854f108d8e402cad2d7..71a6b1a99db13e9329e535165a16d13510ee2e1a 100644 GIT binary patch delta 45 zcmcb|b&qSqAtr7^LtP_d1p^~1Q, 2014 @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -92,8 +91,7 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.mo index 830ea55d4c25ce71c7836a2b35dfe1e0c2d9cdb1..ca67602f6098bf7503eb410ee2f7851689faf00a 100644 GIT binary patch delta 45 zcmaFK^^$ADVkT}wLtP_d1p^~1Q, 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -89,8 +88,7 @@ msgstr "نوع" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.mo index 6cada8971f51e1bf2c51ce4302f082d510c32f46..48d5db55ae8076274c7902db5533348b3309f6ce 100644 GIT binary patch delta 45 zcmZqVZsgu@h>6?KP}j&I$R2mnBX B4*dWC delta 45 zcmZqVZsgu@h>6?4MAyh%!O+CY&}i~mro%iwiFxUziRr0U3TZ`?`, 2014-2015 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 @@ -91,8 +90,7 @@ msgstr "Type" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.mo index 614a4cfc364880300630971116c3ac07f58e64f3..3c0ca9262a365874aed8f04a52fbcf9e7c53cb03 100644 GIT binary patch delta 44 zcmZ3, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -89,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.mo index 9923388a02f4a65f8a414981488db43ebc6c4f84..a679fe5e4b5967258ab3678677ca5f396b092d17 100644 GIT binary patch delta 42 ycmaFK{E~UX5^h67T_a-!10yR_lZoq>PEKTu;_*q$OD|1KPqk9WOqslkQ6B&@7!ElA delta 42 ycmaFK{E~UX5^e(%T_bY^LlY}QqlxR6^7tg?rI#kAr&=jwrc4fIjGnxkQ4atzkPa^Z 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 20cd1f4d59..0a3a985b77 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -88,8 +87,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.mo index b7a54a8a833d883216d34162d23c05ab51014e81..719298657568c25ef7cbd7ba2683a6e2742ad6d9 100644 GIT binary patch delta 741 zcmY+A&rcIU6vw9v2o@D%0=*EOcr;SCg-TeA*pve#N+NpE#KX(%ung(Wn%OC#B!sg^ zv+-iQ5KnsW>dCwR09X14nD{3czpw3*@RB#5H#6_Ycjj#Ryn1?ZXY!MP-G(p1zrbr8 zSFpg2z&WrFa?S_v7Wf&Q1iyhH_yc?l4!|jJArRswxCnCn1MnIcfj7W5h(4!cXMFGu zO8s>}p z2)G~ukt4Q2R=NXX{?I0{LdT`?;Awaj&ds=0ojW8CQeM_lP<^7iN`N!X8^<_`HzSz}DTVLK?+38%o8nqljQbNWS ztCiktqp{RnmSHn$trR~icdKhl%@rB0MXg3LsMH?5fRIdfD1G16xt32--q+Q5Ur*Ju zBqh_Wt1Nw5Oa-rtz2I&2IoYH~iH>CPD|pn|HA*{0k`BoplP7)`Ni8!+GB(4<9h=N* zQ6|P__)Nk<-s^huruY+_w70F-&SeQ*&340gm(}}Pjt-3I@YK;N$*Rm1-HFzJk7bf5 delta 324 zcmX|*u}T9$5QZmrmqe0aVPhk*eR8n7Mh%z3B83RCiPwlCtjCcY$Q|rmI>F9Htd=xl zlLyFq#KJOdp1{t|%6~xo;o}>2XJ&WPS~j1yd%=Q`9dH0{K^wdS&KgMY0ZzaVXaH3s z+Jy&j2R?@bIR5iB{0i>C8P2~vq9NS#iR$nS-Y2@C90f0WhIzpP<_F$j%>IXmINXCP zY6AW=_hL7>RV`~=rN$;Rcj?XBvLEVGq56^1?$bMzN1;|it4QjuL|S80R$**SUOt$r uu#uP)_o=N4xHL8^+`x}JW0OzkW|~GKtK5r!l-k6J`tdIjh%>tY 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 acdc8f7737..2b7025be3d 100644 --- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po @@ -1,30 +1,30 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 # Giovanni Tricarico , 2014 +# Marco Camplese , 2016 # Pierpaolo Baldan , 2011 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-09-24 09:51+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 msgid "Dynamic search" -msgstr "" +msgstr "Ricerca dinamica" #: forms.py:21 msgid "Search terms" @@ -36,11 +36,11 @@ msgstr "Cerca" #: links.py:9 views.py:77 msgid "Advanced search" -msgstr "" +msgstr "Ricerca avanzata" #: links.py:11 msgid "Search again" -msgstr "" +msgstr "Cerca ancora" #: models.py:24 msgid "User" @@ -48,23 +48,23 @@ msgstr "Utente" #: models.py:26 msgid "Query" -msgstr "" +msgstr "Interrogazione" #: models.py:28 msgid "Datetime created" -msgstr "" +msgstr "Data e ora di creazione" #: models.py:30 msgid "Hits" -msgstr "" +msgstr "Risultati" #: models.py:74 msgid "Recent search" -msgstr "" +msgstr "Ricerca recente" #: models.py:75 msgid "Recent searches" -msgstr "" +msgstr "Ricerche recenti" #: settings.py:14 msgid "Maximum amount search hits to fetch and display." @@ -91,8 +91,7 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.mo index d40a82db6f0bb280baa4c3d488cfe5eab3e8c91d..3a0ac8dea51cd7dda1eb3ffe2d70abfaa921a5ee 100644 GIT binary patch literal 1284 zcmZ{i&u<(x6vs_l`eT8%v=t|W9z7*O-kA+))l3K~ZMJQsZi$j@rE)>e%*(8^GxpZ@ zBw7B3UXl14koXUJ?-U}SZoj85#kcK1zrZ9f>C<_rr;F33H}Iv0KNgE{#WoU_!sy-c=psR?kX6^*TFMj zGUqDz0@^k33jDvH7UCLs0iw9?C*bv{2m9a-80UWgKLURO@rj@D`w)By#ynqv9q<G3*a9hwrl(6z}Vh}y$6fBnB$@$mG*3Lo%67GE~MG656s$E#i24e7vx#Fd?Yqi z;Gk=!+%dX^*qjwGakP{+D%YErdrOqhFVq=TnmX`e$rB4r9Hw4YRJ+7*ic)6{$H z$nGy~PL+*Z=2;z1W>4I|HdwX*2hcW8YL^A)&yo_F_1l zuy~Ax#kR8toCmp8$S3T)wkD&2nkqy6&B1PGhbPtrIq;<}dd`{^~c4Jkht7!_M+~GqV*Zr3+U8CNOY<2Ck6s_}6`5=c*8DFVj zT}J&wuJnPSU8Sm^&6vL6na9r^x64}Ts+-&TOGKNpQ6i@z z)6yt}NtPr>M@QWd_tE=&9HSFwy>i;Rq>jgyT+}{6P`hAas&5}XOqM%?twI0ff_mMw zbJv=H7m@KQGhFL&NbtbgtW!Qx&U4s!JiI4wo#^7G`|M=j2LOSuqv`7Y7|;CqWM`X=pKXRfM1t1ELP)TFx386TC~r&Bf8}aQ1KL zU+^b5xa(gK!8cZY;o3s~>bH}hl$QC(AF^7XI7&HHw`K{`uxcW)`$@+2Z zB<7}(wvVJxqYE;XtE8^7QvbE3RF~RxtmK3T%`fEXWwS$LdRoYdd8I4Pt{kc=ok&H#0mdXqw*UYD 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 5a4cfc99fa..3c4f4a3bcc 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 @@ -1,28 +1,28 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 # Lucas Weel , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-11-09 15:49+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 msgid "Dynamic search" -msgstr "" +msgstr "Dynamisch zoeken" #: forms.py:21 msgid "Search terms" @@ -34,11 +34,11 @@ msgstr "Zoek" #: links.py:9 views.py:77 msgid "Advanced search" -msgstr "" +msgstr "Geavanceerd zoeken" #: links.py:11 msgid "Search again" -msgstr "" +msgstr "Zoek nog een keer" #: models.py:24 msgid "User" @@ -50,7 +50,7 @@ msgstr "" #: models.py:28 msgid "Datetime created" -msgstr "" +msgstr "Datumtijd aangemaakt" #: models.py:30 msgid "Hits" @@ -58,11 +58,11 @@ msgstr "" #: models.py:74 msgid "Recent search" -msgstr "" +msgstr "Recente zoekopdracht" #: models.py:75 msgid "Recent searches" -msgstr "" +msgstr "Recente zoekopdrachten" #: settings.py:14 msgid "Maximum amount search hits to fetch and display." @@ -78,7 +78,7 @@ msgstr "Zoekresultaten" #: views.py:32 msgid "Type" -msgstr "" +msgstr "Type" #~ msgid "Results" #~ msgstr "results" @@ -89,8 +89,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.mo index 0d74889c4458be4391ac84589445babff893d47f..3d15ba3e621bdd005b206a66d56f906d2619b31b 100644 GIT binary patch delta 185 zcmZ3%y^MRpocgDX3=Abq3=EPC3=B~$3=I50x&%mz1L+nZ%?YIE0BLg|y$nd(1L=EE zaXD5722mhi14`QgX*M7~1V{@3>1ZgO2c$)S{6-+n45X(4X>K4rivBP&yr$!D3Im`hT#CyOvwPoBdZ#p9EhmtLBfo@%8~khA$K^JYc>EIb^p delta 187 zcmZ3+y@GqfociaC3=Abq3=EPC3=AK4rhm~QoG~;qcZUYlt xBXb2q6Dvcb$!D3ISd%kTlQSj@F<0~WB<7`;CZ?xaDHP;P?qQDJ{DpZFBLH$=9e4l$ 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 268b423fe0..5000f72507 100644 --- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po @@ -1,28 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic , 2012 # mic , 2012,2015 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 msgid "Dynamic search" @@ -93,8 +91,7 @@ msgstr "Typ" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.mo index 272977ee66a6bd616d2d378f11d7f6e00311f6e7..976debfc74e4965454a80bbc66a01ebdaca45d85 100644 GIT binary patch delta 43 zcmdnOzJ-0mc1CVPLtP_d1p^~1Q, 2011 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 @@ -90,8 +89,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.mo index d5f8072cc92724f3280d03f60c70a9452ea92e95..1a206e225053170d6a89a55d2be5b1e3b63fac17 100644 GIT binary patch delta 522 zcmX}nzfZzI6bJAt;17xd!32$9atn(F0`+%83=qR2F$SGXj5*H=RcK9H5}BBp8yDl` zgbNFcyNiE?{t3p-!NKoS^d;{;ch`5V|`9@`&poItwpa;y!XaG3`a*w5l4 zS%P%oA)JB|7U31F!U3Fy?~oe)gmf;9u4q3E=U@gVS&Ff3OsL=hqLxWWg-t)Kq{?B; z=r<~o`lh#2)n8C04*Unbnc9mW>Ai8^P%_cot|i*0{0E|XG}Ni1R(OPIs;(Y~+jvXBK26OZtL$ETR*{97HF=BG6K zMcly>9$*cp@DXK$FDTy)lk+#6WB-ox_?g_N=~h!R6l5U_ti%OT+>, 2016 # Emerson Soares , 2011 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-11-17 22:28+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 msgid "Dynamic search" -msgstr "" +msgstr "Busca dinâmica" #: forms.py:21 msgid "Search terms" @@ -90,8 +90,7 @@ msgstr "Tipo" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.mo index d3041c340f699c80457b73dfb3f12c258d15279c..088aa8c54a9a4ffb23877721fe7e347298d137ed 100644 GIT binary patch delta 276 zcmdnTex1Gko)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}-8fcPX3n*s4JAZ7z%Lq-M$J|JxY zqfDDj9JApJ1F`NJr zTtNEF#7=oukV=k;Yp1h>R2HO8c4iDQHZ;^VGFC7!vNAQ%H83$S;0o~94N5J`EY8f& z({)KKNwrciGB7j)%IO-KD;OGE8JbN##n>@9i7ATTCowO*G%+2hq$oc=$ba%~rXTzv SnFS1`C7C&yRf#3}MGOG505V7b delta 226 zcmcc4zK^~Bo)F7a1|VPuVi_O~0b*_-?g3&D*a5@_K)e%(&4Bn75VHZXA|nF>ACT4n z(mX)g97wYOX%`@U9Ed%E*b>MWWQNe*KpJF6E07ig(!D?$sGo~r36Q}B6xcj*raUW< zW?-MVclzW=#$av(6I~;71w#`nL!-&t8RfW)b&U)aj0~*|j3(b_?BMrF%u6p#Oi#5^ eD9Voy@}Hc>6g~MO(|7LDlFXdUs>G7~A_f32^d@ou 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 68b122da68..0ed1fba0ba 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:02+0000\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-04-17 13:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:16 msgid "Dynamic search" @@ -79,7 +77,7 @@ msgstr "Rezultatele căutării" #: views.py:32 msgid "Type" -msgstr "" +msgstr "Tip" #~ msgid "Results" #~ msgstr "results" @@ -90,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.mo index bf124f6aea07e0d77312b83a4b508ecc863e94ef..d73434dd4c6a7efd62f1cb4623e7c0d5b66045e2 100644 GIT binary patch delta 268 zcmaFD*}zqQPl#nI0}yZku?!H$05LZZ&jDf(I03{4KztI2&4Bn95VHZXAtM6=ACR^H z(mX)g9Z0hP=@2L#38clD7#QM!bSqH2jG2L97Lfh}q`83fbf98I1_mjHML>o$P~ZrV z1{wSSNJ{|e=My{SS=oUMj)`lhvxHO@q)v8b3^6t|)HO0zFfg(*HPJONF)-i?@YfAW zEz2y<%+J$xNi0dVQZO;Pf|Al?bYW{E97uBk=_a5eMIhY^q@_VZ>wydjpup*g zGv!%R|u?UFIVL 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 3316ac9743..a5a53b29bd 100644 --- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:02+0000\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-03-23 01:14+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:16 msgid "Dynamic search" @@ -71,9 +68,7 @@ msgstr "Максимальное количество отображаемых #: settings.py:18 msgid "Maximum number of search queries to remember per user." -msgstr "" -"Максимальное количество поисковых запросов запоминаемых для каждого " -"пользователя." +msgstr "Максимальное количество поисковых запросов запоминаемых для каждого пользователя." #: views.py:25 msgid "Search results" @@ -81,7 +76,7 @@ msgstr "Результаты поиска" #: views.py:32 msgid "Type" -msgstr "" +msgstr "Тип" #~ msgid "Results" #~ msgstr "results" @@ -92,8 +87,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.mo index 220e1cbe5f21b1aa52c92e6fcd7f6b23e44181b4..a38aad318193a7edfccdd1414672f5a1702189c4 100644 GIT binary patch delta 45 zcmeBU>0_DD&TVL@Yh7|M3sa6WbIq|`slh-mP0suJE B4uAjv delta 45 zcmeBU>0_DD&TU|#Yh, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -89,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/dynamic_search/locale/zh_CN/LC_MESSAGES/django.mo index e5441e32ac457b51e95b1b2fad6128e8efd2683e..c375b730c54648f6f0c8995847e29e89f37272d5 100644 GIT binary patch delta 47 zcmcb{c8zVrbVhDNLtP_d1p^~1Q|JNr%cV~U=, 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 @@ -89,8 +88,7 @@ msgstr "" #~ msgid "Recent searches (maximum of %d)" #~ msgstr "recent searches (maximum of %d)" -#~ msgid "" -#~ "Results, (showing only %(shown_result_count)s out of %(result_count)s)" +#~ msgid "Results, (showing only %(shown_result_count)s out of %(result_count)s)" #~ msgstr "" #~ "results, (showing only %(shown_result_count)s out of %(result_count)s)" diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/events/locale/ar/LC_MESSAGES/django.mo index 20245ca622e49498f4ccd4c6916ef96d3b2832b9..638915ddaa57d118dbe88b7dce636b92b13d759c 100644 GIT binary patch delta 42 ycmaFM@|I=7er`iUT_a-!10yR_lZmHRPi|t2;_*q$OD|1KPqk7=ESh|qaS{MM_zx-o delta 42 ycmaFM@|I=7er^L3T_bY^LlY}Qqlu?h^Y|p@rI#kAr&=i_7ELZ;jGlalaUuXb+YcZB diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index 14a178abd7..e17cb63370 100644 --- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:19 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/events/locale/bg/LC_MESSAGES/django.mo index a72f6e6079f03d349928647065b30156e543b192..1919fbabde72828cb29a322237564421b5e33781 100644 GIT binary patch delta 42 ycmdnUvXN!Ner`iUT_a-!10yR_lZmI+O>Sk3;_*q$OD|1KPqk7=N}qg>F&F?U*A8+3 delta 42 ycmdnUvXN!Ner^L3T_bY^LlY}Qqlu^1@%SX>rI#kAr&=i_rB5zrjGla-F$e%DYYu1t diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index 3f27d456b7..26fa55de49 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.mo index 105b111ece6068b7429e0926b86df2b19ae94898..54b4822e9c45c125ce1a9b11471bd9027e1083ac 100644 GIT binary patch delta 45 zcmZo+ZDF0TpWDz-*T`7Gz{twfWa6n4lNT{Y@%tp^rI#kAr&=i_6~{X{PX5i<2>?xW B50wA_ delta 45 zcmZo+ZDF0TpWDDh*T`JK(8S8nXyU08{62|!>7|M3sa6U}#qmy#lP5ApPyWN$0RTyt B4~PH& 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 df8250c625..6f9f8ec008 100644 --- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:19 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/da/LC_MESSAGES/django.mo b/mayan/apps/events/locale/da/LC_MESSAGES/django.mo index 775cdf5071ca535f75b0f005dbad4c26ed98af5c..6adf76f67b9dabdb08777a306a6e95ab037e0eac 100644 GIT binary patch delta 42 ycmbQkGKXcter`iUT_a-!10yR_lZmHRPi|t2;_*q$OD|1KPqk7=Nt}F}(GdV6at\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.mo index 9afa4b82b5cce152ed73ef45b7a7724bc3ba7258..2da539b583a2770515680ab2764243fc35411d61 100644 GIT binary patch delta 47 zcmX@Xae`xmG84C\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.mo b/mayan/apps/events/locale/en/LC_MESSAGES/django.mo index e440cd458fffd1adff511ca1d7081c09101b4469..d15d45dedaf563da3f42b1d2338a376644e275ed 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|$;9c80Z_;XL;wH) delta 21 ccmeyx^owai54VAdu93Ndp^25D(ZuPG0Z{`7M*si- diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.po b/mayan/apps/events/locale/en/LC_MESSAGES/django.po index 675e5940ba..acbdaffa05 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: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-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.mo b/mayan/apps/events/locale/es/LC_MESSAGES/django.mo index bbdbaf5d69aee23b9ea9fe46ba87a48bd1b04958..b18574b7e9360d49572e52c7164b93b9340f76eb 100644 GIT binary patch delta 44 zcmZ3*v5I4ZG84Cz*02b~I Au>b%7 delta 44 zcmZ3*v5I4ZG84CfiLQ~kf}x3(q0wYLrbRqHiFxUziRr0U3aQ1D&of0&HfR0}01-S5 ArvLx| diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po index 3c0fd0bb92..57148077aa 100644 --- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/es/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/events/locale/fa/LC_MESSAGES/django.mo index 048a9787f86fefc3250eb66ae9ea07b03d680a1b..1986fe5661463f933ec2ee1d679da0aea7ad0328 100644 GIT binary patch delta 45 zcmcb?af4%nG84C, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/events/locale/fr/LC_MESSAGES/django.mo index eb9f6faf628564bb11af8d993dd4869c1dd293aa..77337e191549cf8aad59c06e0869ab9204643a0a 100644 GIT binary patch delta 45 zcmcc1ahGF*G84C, 2015 # Thierry Schott , 2016 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/events/locale/hu/LC_MESSAGES/django.mo index 067de91dd98fc4b3eb7ab90a179b1614eefe5271..57aedc7ac1a0ee1bdcb593c3f8c1e4d8d4c836f5 100644 GIT binary patch delta 42 ycmcc2e3^MdJGY^su92~VfsvJ|$;3(PCi^l*@%SX>rI#kAr&=jwlulm8s0#oihYi92 delta 42 ycmcc2e3^MdJGX&}u93Ndp^25D(ZosXczhD`(n}N5Q>_#-N+;VhMo(VOr~?2cLk+k9 diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po index dbe077d213..4e89537548 100644 --- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.mo b/mayan/apps/events/locale/id/LC_MESSAGES/django.mo index 84e4c1fdbfd0ea56b29338e8f1c805cc1e5357bf..4e637dac22f1c8ba6f57b864bfce4ab5c3690989 100644 GIT binary patch delta 42 ycmX@he3p4aJGY^su92~VfsvJ|$;3(PC;Kr*@%SX>rI#kAr&=jwrc7SWs0IKbat)#Y delta 42 ycmX@he3p4aJGX&}u93Ndp^25D(ZosXd3+M{(n}N5Q>_#-QzknwMo(VBs0sig;SHDo diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po index fec9609930..0848f551e6 100644 --- a/mayan/apps/events/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.mo b/mayan/apps/events/locale/it/LC_MESSAGES/django.mo index 9abc76feb44fd8d51598a339e82f017570ee2a32..1829b983835063ff1efab7154512c6d791708970 100644 GIT binary patch literal 1081 zcmYk4&rcLF6vwNg;`$?jvoTd;0-Em3E?{7AjR;FZ;_3zm?q#++RA<^r+hsvxVxs?o zUcBjzc=iwQ=FN+VC;tJx_zxJrot*_HdGmR%eZShiU(*xs2)@gZtB|*lDaap)|H4y* zTmu{6S+EP%z-{m%$iZ`94qgErI1Ro5C&2gB{s-^^?2q70@N>2Q9Xy2mfZV|P>ocQ# zpFp4gu;Q0${VV9}d;@)*pP=vSH+TvB3;H_$z}w&?n(+H`AWD=yod^AzKgT4*_wPR+ zf4bBNL3mleGRyn%dC5wW2y3a^6;$jAn-S z+C=o$k%=@upj>*)b3tNmQsGD}b739N3$mr2D?LOhgKAc1!c{#~fiJ^XWLuaW(ly#Q z!!~*hwv}2%w8Ib3WqYmjw6-Y^RQA}zL26m7BUupZXJsaS2p9g72ktNG+o76 zGGPV1mwUUORCYa29;7*!Sv}GDeMGBtz*E6u!Sjf2IG#zIU}o33A_{`xa9DRfx9p33 z9}yUBxslogxj!lsz1#*_l_ZcZn5}g-I_={dY1G5os#Xq9#p3ejo!EClk#VV(X|l_W z6|S`vud~HtKVPvg3~Q@I_oPZAy0|0VQL_<+(ai>iXKY=Y+(uLtrDz8H|H0^vFSby>iy0p^_D7Ax;ccnaLq; sG*mhll&oQxq~b5|cs}QNw#w|NTh6o|&lePG6RosO%0zOD*3uD*_*J`Rp9E, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2015-08-20 19:07+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-09-24 09:51+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 @@ -28,16 +28,16 @@ msgstr "Timestamp" #: apps.py:58 msgid "Actor" -msgstr "" +msgstr "Attore" #: apps.py:60 msgid "Verb" -msgstr "" +msgstr "Verbo" #: classes.py:17 #, python-brace-format msgid "Unknown or obsolete event type: {0}" -msgstr "" +msgstr "Tipo di evento obsoleto o sconosciuto: {0}" #: models.py:13 msgid "Name" @@ -49,22 +49,22 @@ msgstr "Tipo evento" #: models.py:21 msgid "Event types" -msgstr "" +msgstr "Tipi evento" #: permissions.py:9 msgid "Access the events of an object" -msgstr "" +msgstr "Accedere agli eventi di un oggetto" #: views.py:31 views.py:90 msgid "Target" -msgstr "" +msgstr "Destinazione" #: views.py:75 #, python-format msgid "Events for: %s" -msgstr "" +msgstr "Eventi per: %s" #: views.py:98 #, python-format msgid "Events of type: %s" -msgstr "" +msgstr "Eventi di tipo: %s" diff --git a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.mo index 3bcd441c761b09c8ad24ec1d81e47b2ea331c832..5b66b506362749c627953b4719f31c19a5f709ed 100644 GIT binary patch literal 1124 zcmY+C&2AGh5XToNU*SVgaRDJPf=aC_C!4gOYD*EcNu^3n8@1aaaY0TpNw(RwBil(@ zAx`iFNO0lCnFrv2#2X+kT;T!WA^3Z@Dm%>@Um> z|CHz50gK>Sum%UIi^U4ZZ=Vzz^B}NAM#2PvCvAF|b z$`!*mnjF4~lnhu^9HGiexw@O%p`Ox~S4}%=^3{IZ@K6OTSKAKxnkHcp&&$H1l#*Y3 z#EV5gvW2JZL_~4Ep^_&!E!%z3CLWSV0#@$ZMu*LA5nf)$LN?7Do9$TJ z3krqdaG1AFCu-55J6+Jq2puV1NZhqKH4{_7p)_GZ#xJ)v3v;>ZMzu12pkm(7ttn~o zb39Bx!qTBF^kNaoW!C5jZOE?dh3kB29Opz^qr z=OmWo7g;H|h5Gm?_&NHzD%iOCI(qszIJ&q5xdsPMp23vD?~|C9UYeMmYNe2u6Yu9U S`8QMao=Tm}G|<|oJi 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 80886bbc0d..22e933bec6 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po @@ -1,43 +1,43 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2015-08-20 19:07+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-10-28 12:33+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" -msgstr "" +msgstr "Evenementen" #: apps.py:56 msgid "Timestamp" -msgstr "" +msgstr "Timestamp" #: apps.py:58 msgid "Actor" -msgstr "" +msgstr "Acteur" #: apps.py:60 msgid "Verb" -msgstr "" +msgstr "Werkwoord" #: classes.py:17 #, python-brace-format msgid "Unknown or obsolete event type: {0}" -msgstr "" +msgstr "Onbekende of verouderde evenementsoort: {0}" #: models.py:13 msgid "Name" @@ -45,26 +45,26 @@ msgstr "Naam" #: models.py:20 msgid "Event type" -msgstr "" +msgstr "Evenementsoort" #: models.py:21 msgid "Event types" -msgstr "" +msgstr "Evenementsoorten" #: permissions.py:9 msgid "Access the events of an object" -msgstr "" +msgstr "Benader de evenementen van een object" #: views.py:31 views.py:90 msgid "Target" -msgstr "" +msgstr "Doel" #: views.py:75 #, python-format msgid "Events for: %s" -msgstr "" +msgstr "Evenementen voor: %s" #: views.py:98 #, python-format msgid "Events of type: %s" -msgstr "" +msgstr "Evenementen van soort: %s" diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pl/LC_MESSAGES/django.mo index fded7dcf6d918f0d982c0341f3b21b964c60fdda..e9c0269e7bcbf1769618cfec21b8bee0ac8d7b5e 100644 GIT binary patch delta 45 zcmcb|agSqzG84C, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pt/LC_MESSAGES/django.mo index ff845beb2c5330ebeeaeedbf93f71c99cf2dfe0c..cd38e9345cfd6de4c7c60661886a060ff403b224 100644 GIT binary patch delta 43 zcmZqYXy@3#$;54FsB2`bU|?irYBE`bY5n92Oi|oEiFxUziRr0U3I&rjnC}As_jU}c delta 44 zcmZqYXy@3#$;547qHAQXU}$1xXf#=bX+4imVqSV_VtT5TLP5#oLrl?=wV3Y$000pU A761SM diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index 398ab57989..fde6da4894 100644 --- a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.mo index bda3c3f816ed94f05383173c4f6d9e0d7bd25363..4bcc7bdbf124087076c6193518e28b0115dd4e39 100644 GIT binary patch delta 47 zcmdnMv4LZQG84C, 2015 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.mo index 28b02898f15b848daa00e635d9e49e6c7b387f6a..be7128e4d1c690d932aa403f06f459d68b7338ee 100644 GIT binary patch delta 45 zcmcb{a*bueer`iUT_a-!10yR_lZmHxO`gIS#qX1tmtLBfo@%8~lpi1DKlv?VCIDx8 B5ElRd delta 45 zcmcb{a*bueer^L3T_bY^LlY}Qqlu?>@%tp^rI#kAr&=i#<;Ms4Pi|(6p8Sq60{~?u B5DEYQ 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 a95a6225ec..01cfb63d8c 100644 --- a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:19 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/events/locale/ru/LC_MESSAGES/django.mo index 119734728a5927b8e71cbe2cf04ead9eb8452f9d..ee66c977d914e7c7d5eccdfdfbfa2247c2292ebc 100644 GIT binary patch literal 1334 zcmZ9L&2Jk;7{<3yXfYq6k*b1J(2Gz@Ei~C(*M)YIO$BW#Rl+n1PVWUWu4u~9b;NyY{qGt|nAR?dbzc72?gv6Nxe?*^IZ@xO#_&4u6@AJ+xyY{~$hkx`i zUdKF%`3>eV%>Oan2o8DPyI=^u1Wth!@H+S^$ibJv6nq0T;0U+~9tM9Z_kRXoLHr1O zAN;-Cx8TSNp7%HCBmduv!#;08d>ruy;0Z7WUH=*IZLkdzcn^FN{1to+9DwhD+h7Cy zr_5Jj9!C_Oj)3ki?jA=moqso+9#)D08^!&~uy{VszxPS2CA20pFG$=Jnb9QYh-V~c zzZ5NlZ6lR8>2}E6?umU%JzVdA=A??~)NY72PEe#i=c(|TTy=!;nn^0O;c3sC$!=tF z0Y@pEre#-{(nBfyD!A)i7i!jNsHZD(sduDfNS2*$%2-MKTAOoa6+ zBw;Cuf7)SoQ2L`(3T%U&HYh<~BZqe3@K;9vkio50PIh w)T{35b~|6P>x9&%U88)l$PJ1PEBUubua~DExQ=t`{#f>V$OiTgSljfT0R^PQ<^TWy delta 268 zcmdnSwSl$%o)F7a1|VPtVi_Pd0b*7l_5orLNC09kAWj5g79h?6VnrqfhC(1M3dECv zY&Iah5=b)wX%GOJ1p+`J1_sx%)VvaflFEWq2EWAIREB_}{H)aE5?#*}-LTZ6$&VQw zxD8Bnjm#AcO{@%!ChIXt+nVYcSm+uVC>UB=8JKGu00EazVsVLXNKs;5aZX}Mevy@e zTd0qZf}f+WtAdTIucN1rgQJT}kZW+T-Q;qn5FVezy!6t<^i(T_qSDEyn4%{eF>jYy hbYaJZ{R$TwFYLRp@nZMIrVBeR_A^|VabXXT0svy^LVy4O diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index 69da8fcaff..d812db1fa8 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po @@ -1,49 +1,47 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2015-08-20 19:07+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-07-19 20:01+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:19 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" -msgstr "" +msgstr "События" #: apps.py:56 msgid "Timestamp" -msgstr "" +msgstr "временная метка" #: apps.py:58 msgid "Actor" -msgstr "" +msgstr "Субъект" #: apps.py:60 msgid "Verb" -msgstr "" +msgstr "Глагол" #: classes.py:17 #, python-brace-format msgid "Unknown or obsolete event type: {0}" -msgstr "" +msgstr "Неизвестный или устаревший тип события: {0}" #: models.py:13 msgid "Name" -msgstr "Имя" +msgstr "Название" #: models.py:20 msgid "Event type" @@ -51,22 +49,22 @@ msgstr "Тип события" #: models.py:21 msgid "Event types" -msgstr "" +msgstr "Типы событий" #: permissions.py:9 msgid "Access the events of an object" -msgstr "" +msgstr "Доступ к событиям объекта" #: views.py:31 views.py:90 msgid "Target" -msgstr "" +msgstr "Объект" #: views.py:75 #, python-format msgid "Events for: %s" -msgstr "" +msgstr "События для: %s" #: views.py:98 #, python-format msgid "Events of type: %s" -msgstr "" +msgstr "События с типом: %s" diff --git a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.mo index 70a8ac6ef9f17f81ddfc978696abfd925ae1cd0a..d37939c3eda2b38923695364a8235b761ecff255 100644 GIT binary patch delta 45 zcmdnVvXf=P5^h67T_a-!10yR_lZos1Os-~(;`d3+OD|1KPqk7g&WR89oP32b6#!HT B4{QJc delta 45 zcmdnVvXf=P5^e(%T_bY^LlY}QqlxSH@cSg@rI#kAr&=i#=fnqlPR?SCo_v)t1preh B4_^QP 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 1d89d57a7b..7bd47d5b05 100644 --- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:19 links.py:27 links.py:31 permissions.py:7 views.py:38 msgid "Events" diff --git a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.mo index de92f7aeb63cec385bd8a2e912864f2a116d7507..26f50e67a33ac4e2bca8159ca970726c5a0a332f 100644 GIT binary patch delta 45 zcmZ3-vW{iKer`iUT_a-!10yR_lZmJHPM*#f#qX1tmtLBfo@%8~mKh)BH~9mj9ROM{ B52gSB delta 45 zcmZ3-vW{iKer^L3T_bY^LlY}Qqlu^X^7|y_rI#kAr&=kLWyXj3O>Se1p8S!~764bS B519Y} 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 36c499ea00..228280c72f 100644 --- a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.mo index fce9ae55f5f21fa2701aa456c69bc8b7f8bc5f82..f6bcb07fd9d3ec6d620617236637a6f5c6c88b81 100644 GIT binary patch delta 45 zcmZ3&vV>*Aer`iUT_a-!10yR_lZmIcPoBsa#qX1tmtLBfo@%8~l@agkH~AH#6#!K; B4{QJc delta 45 zcmZ3&vV>*Aer^L3T_bY^LlY}Qqlu@s^ZO*`rI#kAr&=jgWyCxCO>SU}p8T585&%-t B4_^QP diff --git a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po index 4d2cbe5353..9b71cf75b7 100644 --- a/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:07+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:19 links.py:27 links.py:31 permissions.py:7 views.py:38 diff --git a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.mo index df078c7d4af9cefee618db5cbcafb5a98eab9ea4..00b45bf3bfb34e762e5035171b6b13b8c40bda9d 100644 GIT binary patch delta 45 zcmdnTvyW%PF(z(9LtP_d1p^~1Q?)S B4*CE9 delta 45 zcmdnTvyW%PF(z&U6I~;71w#`nL!-$TnHKW+B<7`;CZ?xaDI^w6E@Y10e3Lnq2>?%4 B4)6c~ diff --git a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po index dc1c37e69b..b858b60f3a 100644 --- a/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 @@ -87,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +94,7 @@ msgid "Remove documents from folders" msgstr "إزالة وثائق من المجلدات" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -221,11 +222,11 @@ msgstr[5] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -258,12 +259,12 @@ msgstr[5] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/bg/LC_MESSAGES/django.mo index 0218184b55ff8de86a5be9f209eac8d3c26a9cc4..f4126e9631d9d3fde8be8899e27c18e13f4a6820 100644 GIT binary patch delta 45 zcmcb}bCGAmF(z(9LtP_d1p^~1Q@4W B4=(@! delta 45 zcmcb}bCGAmF(z&U6I~;71w#`nL!-$TnU?VQB<7`;CZ?xaDI}#&E@6(|e22M|2>@0E B4, 2012 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -87,6 +86,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +95,7 @@ msgid "Remove documents from folders" msgstr "Премахване на документи от папки" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +109,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -213,11 +215,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -250,12 +252,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/bs_BA/LC_MESSAGES/django.mo index 4483fa40d2f4f698d8bc12cba29cf59913178d88..a84f5c05521823e2aef39a861e4be0a3e0030a0b 100644 GIT binary patch delta 48 zcmX@WeSmwzF(z(9LtP_d1p^~1Q, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 @@ -87,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Ukloniti dokumente iz foldera" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -215,11 +216,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -252,12 +253,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/da/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/da/LC_MESSAGES/django.mo index 72469f7e787d5771e71cdbf3d6258af68a148da2..2de6d19193f958824a9e10b2ffc0d2d853f9ddf4 100644 GIT binary patch delta 45 zcmZ3-wT^4UMka1ULtP_d1p^~1Q, 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -86,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Fjern dokumenter fra mapper" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -212,11 +214,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -249,12 +251,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/de_DE/LC_MESSAGES/django.mo index ae05120aa99628b50e61ddc1f38d6f4235df2dd2..749888c41cbbc7c892f62839529a384224475da3 100644 GIT binary patch delta 48 zcmdlazDaz;LN;zgLtP_d1p^~1Q, 2015 @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -90,6 +89,7 @@ msgid "Edit folders" msgstr "Ordner bearbeiten" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "Ordner löschen" @@ -98,6 +98,7 @@ msgid "Remove documents from folders" msgstr "Dokumente aus Ordnern entfernen" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "Ordner anzeigen" @@ -111,6 +112,7 @@ msgstr "Primärschlüssel des hinzuzufügenden Dokuments." #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Ordner %s löschen?" @@ -216,11 +218,11 @@ msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -253,12 +255,12 @@ msgstr[1] "Ausgewählte Dokumente aus Ordner %(folder)s entfernen?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/en/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/en/LC_MESSAGES/django.mo index d6645a000f8a12bad6ede757f774f2fcbe90dde0..68442b990eb11af1dbe3213da6157c4a7e2a6c1a 100644 GIT binary patch delta 24 fcmbQpHIZvWI}^8|p{|j!f`O5hsmbO^O!Z6vQXd9f delta 24 fcmbQpHIZvWI}^8oiLQ~kf}x3(q0#0^O!Z6vQeXyO diff --git a/mayan/apps/folders/locale/en/LC_MESSAGES/django.po b/mayan/apps/folders/locale/en/LC_MESSAGES/django.po index 22881c1411..2ef17ac4f4 100644 --- a/mayan/apps/folders/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/folders/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: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2012-12-12 06:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/folders/locale/es/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/es/LC_MESSAGES/django.mo index daf5b2648a65ddea9319adde5f58b8320415dc89..ef6452098cdef94a6004b0106a6354a7a06f6fcb 100644 GIT binary patch delta 24 fcmX>veqMaTLN;zgLtP_d1p^~1QveqMaTLN;y#6I~;71w#`nL!-@W*pyiTVYLR> diff --git a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po index f383fbc11e..acaa5a9978 100644 --- a/mayan/apps/folders/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-05-09 01:41+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -89,6 +88,7 @@ msgid "Edit folders" msgstr "Editar carpetas" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "Borrar carpetas" @@ -97,6 +97,7 @@ msgid "Remove documents from folders" msgstr "Eliminar documentos de las carpetas" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "Ver carpetas" @@ -110,6 +111,7 @@ msgstr "Llave primaria del documento a ser agregado." #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "¿Eliminar la carpeta: %s?" @@ -215,11 +217,11 @@ msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -252,12 +254,12 @@ msgstr[1] "¿Eliminar los documentos seleccionados de la carpeta: %(folder)s?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/fa/LC_MESSAGES/django.mo index e590598b7695a81c58cbdc1b27e1fa6f0f9e2cfe..aa8f61db7d4b41b80fbebb70d5b51d874be2a7ff 100644 GIT binary patch delta 45 zcmZn^Y82YAiG|zHP}j&laY|ytLN;zgLtP_d1p^~1QyqSGE3jj@W B4&DF& delta 45 zcmX>laY|ytLN;y#6I~;71w#`nL!-%S*cS5mB<7`;CZ?xaDWnxm_F<3SyoG%l3jj_W B4%7eu diff --git a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po index c2870b7487..68ffc036d4 100644 --- a/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -88,6 +87,7 @@ msgid "Edit folders" msgstr "Modifier les dossiers" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "Supprimer les dossiers" @@ -96,6 +96,7 @@ msgid "Remove documents from folders" msgstr "Retirer des documents des répertoires" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "Afficher les dossiers" @@ -109,6 +110,7 @@ msgstr "Clé primaire du document à ajouter." #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Supprimer les dossier : %s ?" @@ -139,8 +141,7 @@ msgstr "Document: %(document)s ajouté avec succès au répertoire: %(folder)s." #: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "" -"Document: %(document)s est déjà présent dans le répertoire: %(folder)s." +msgstr "Document: %(document)s est déjà présent dans le répertoire: %(folder)s." #: views.py:205 msgid "Add document to folder" @@ -166,12 +167,8 @@ msgstr "Document: %(document)s erreur de suppression: %(error)s" #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" -msgstr[0] "" -"Êtes vous certain de vouloir supprimer le document sélectionné du dossier " -"%(folder)s ?" -msgstr[1] "" -"Êtes vous certain de vouloir supprimer les documents sélectionnés du dossier " -"%(folder)s ?" +msgstr[0] "Êtes vous certain de vouloir supprimer le document sélectionné du dossier %(folder)s ?" +msgstr[1] "Êtes vous certain de vouloir supprimer les documents sélectionnés du dossier %(folder)s ?" #~ msgid "A folder named: %s, already exists." #~ msgstr "A folder named: %s, already exists." @@ -219,11 +216,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -256,12 +253,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/hu/LC_MESSAGES/django.mo index ebba0447b1960f510dd4655a97f4766699fedca6..e6afc465994fe0bc28e60e172e5305f6fd43a7ac 100644 GIT binary patch delta 45 zcmeyt^@D4}Mka1ULtP_d1p^~1Q, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -86,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Dokumentumok eltávolítása a mappákból" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -212,11 +214,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -249,12 +251,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/id/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/id/LC_MESSAGES/django.mo index 45e85a91e94b2642e0166ec4306230907c12f09a..902719afa10161f779b097cfd5a70688efcf1732 100644 GIT binary patch delta 44 zcmX@adWdy{3?sLpp{|j!f`O5hsmWw@#-)>QGDh+EB<7`;CZ?xaDP*QhHe#9p02@XP ARR910 delta 44 zcmX@adWdy{3?sLJiLQ~kf}x3(q0wY@#-%(yiFxUziRr0U3YjUBPcueOHfHJv02QeX AO8@`> diff --git a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po index d245915ffd..aeaf59e46c 100644 --- a/mayan/apps/folders/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -85,6 +84,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -93,6 +93,7 @@ msgid "Remove documents from folders" msgstr "" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -106,6 +107,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -209,11 +211,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -246,12 +248,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/it/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/it/LC_MESSAGES/django.mo index c16aba2b388d7a606d1deb67e57409d75783037b..d1bfbbdc726170a2cf60927c7e18dd2d3f5226b6 100644 GIT binary patch literal 3058 zcmai#J8T?97{`Z@@HpP)6(GPQ1av0ZdpH4wbxaXA-~sR>@Lup5_$2rZh#$L&8`=30ydV4xB!7Q` z6vsc{^Wd&MjN!));PwL8244oxf^BdEd=|V4PJ!Qo4!jAH-9;Gv0()}~JcaqcFivru zyeHq60HnMwgS0On7yJ~Yc&>pI_tzkP>;`U+fIorHfWL#}cMp;z?giff4}m`Dz*+Db z_!9UBh##A3<#F!=VS@SKcl`v;1I)*hdLN1GIiW(KGbn2 z&BU_(|8<)wKwUHq)aK@m6i$}!CT5o9(~zBkh*OE=K_-m_8A~S%6w0=oy0y}t&tJ4B z*qJhkB7-e+=oJDGZ9IP`T_@yT})-eO$~>I)`Nid7x7# zRI1Xbstbf?*;#Qx#%wUQj*pC9SE1y>@mLBh=u}q1o!iLd8`}_FHYyQjlV6mZTn{;& zX?ZksBp2X=j;F&`vTdkdT0S&7sZuH4Hr7f7vS@KYfx{kFrZd5b0;%Z#t``*kE-kb4XIqLO}_IeQXR^+-OyG^;?Yu?OJ-tYNG`iFWLt+O~F zZ`Fv@#==pB4ulCbpBKp}mR9oPIDkNRf@0oDf|F4qRNM)4@;bEBXe=V>txA#je94Je zA%pgsb0fdo-PqXZII^vV@)BuujkdxlZMq4i>d7#%-MBE)RjxbT8Y~SK>K*BKdaZes z9NLe!x;a9+PF`}|QH&a#<-wXTR=T;jR~NlwwH$dIO5-i0feulrK0kIrxhhznW3n8N zjflNPZ4&GAbd*i)+{`S`ALrUB-#^Fu)3YshDvH!NjZ{@3Xk>9Lcp!|Ec-StWb`q#< zWFly0xeZy{5FsC@w=zEIld7Q97Fm-lXEJY@nmVT7l4~P)sIs>CKFR^FMH*yrmk$li z;+2uSksy8HC!m(6TW`bmB~`USRO@6T%{Gz#1DadcY;8Lah7WCDtW+J9T7*f|3pIJQQ5yABi-Qt*B&-eL$f%KgF1uPjhzD12f!+{)$8ZTwVSpTBSot9DPUv z!M^{Je`(gA$)@tlSE@Cp)fVG0#V6;S+Hi&WPj4fm*HC_fha-n_*E6*vx5qs0!V&dsSEQ6qqD6;;3p!w? xW^-|_bj6EOh}P+_&m4z}huDIs$KKNWu4SLueM;)o<8tM1zz7p}@vbPT*&iltQF#CW diff --git a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po index e7878cff73..fa6fd9ff74 100644 --- a/mayan/apps/folders/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/it/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Carlo Zanatto <>, 2012 # Giovanni Tricarico , 2014 +# Marco Camplese , 2016 # Pierpaolo Baldan , 2011-2012 # Roberto Rosario, 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-09-24 10:31+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -30,7 +30,7 @@ msgstr "Cartelle" #: apps.py:68 msgid "Created" -msgstr "" +msgstr "Creato" #: apps.py:71 links.py:47 models.py:26 msgid "Documents" @@ -42,15 +42,15 @@ msgstr "Cartella" #: links.py:20 msgid "Add to a folder" -msgstr "" +msgstr "Aggiungi ad una cartella" #: links.py:24 msgid "Add to folder" -msgstr "" +msgstr "Aggiungi alla cartella" #: links.py:27 views.py:42 msgid "Create folder" -msgstr "" +msgstr "Crea cartella" #: links.py:32 msgid "Delete" @@ -58,7 +58,7 @@ msgstr "Cancella" #: links.py:36 msgid "Remove from folder" -msgstr "" +msgstr "Rimuovi dalla cartella" #: links.py:40 msgid "Edit" @@ -66,67 +66,70 @@ msgstr "Modifica" #: models.py:20 msgid "Label" -msgstr "etichetta" +msgstr "Etichetta" #: models.py:23 msgid "Datetime created" -msgstr "" +msgstr "Data e ora di creazione" #: models.py:63 msgid "Document folder" -msgstr "" +msgstr "Cartella documento" #: models.py:64 msgid "Document folders" -msgstr "" +msgstr "Cartella documenti" #: permissions.py:10 msgid "Create folders" -msgstr "" +msgstr "Crea cartelle" #: permissions.py:13 msgid "Edit folders" -msgstr "" +msgstr "Modifica cartelle" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" -msgstr "" +msgstr "Cancella cartelle" #: permissions.py:19 msgid "Remove documents from folders" msgstr "Rimuovere i documenti da cartelle" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" -msgstr "" +msgstr "Vedi cartelle" #: permissions.py:27 msgid "Add documents to folders" -msgstr "" +msgstr "Aggiungi i documenti alle cartelle" #: serializers.py:58 msgid "Primary key of the document to be added." -msgstr "" +msgstr "Chiave primaria del documento da aggiungere" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" -msgstr "" +msgstr "Cancellare la cartella: %s?" #: views.py:66 #, python-format msgid "Documents in folder: %s" -msgstr "" +msgstr "Documenti nella cartella: %s?" #: views.py:93 #, python-format msgid "Edit folder: %s" -msgstr "" +msgstr "Modifica cartella: %s" #: views.py:127 #, python-format msgid "Folders containing document: %s" -msgstr "" +msgstr "Cartelle che contengono il documento: %s" #: views.py:141 msgid "Must provide at least one document." @@ -135,8 +138,7 @@ msgstr "Bisogna fornire almeno un documento." #: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "" -"Documento: %(document)s aggiunto alla cartella: %(folder)s successfully." +msgstr "Documento: %(document)s aggiunto alla cartella: %(folder)s successfully." #: views.py:184 #, python-format @@ -146,8 +148,8 @@ msgstr "Documento: %(document)s è già nella cartella: %(folder)s." #: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Aggiungi documento alla cartella" +msgstr[1] "Aggiungi documenti alla cartella" #: views.py:227 msgid "Must provide at least one folder document." @@ -167,8 +169,8 @@ msgstr "Documento: %(document)s errore di cancellazione: %(error)s" #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Rimuovere il documento selezionato dalla cartella: %(folder)s?" +msgstr[1] "Rimuovere i documenti selezionati dalla cartella: %(folder)s?" #~ msgid "A folder named: %s, already exists." #~ msgstr "A folder named: %s, already exists." @@ -216,11 +218,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -253,12 +255,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/nl_NL/LC_MESSAGES/django.mo index b90b76719cbd00a97f1ad06ddd5cacc0f0cb0d04..e66bca40b5135701b5f205fe5af73cdb609bebbd 100644 GIT binary patch literal 2610 zcma)-$!{D*6o-otwqXe|I|Nc8MDir+S&W0s7=z>3MwUFmawZlBBvdo~W?bW5hOX+d zEe?nS2aX^CXE-259FaKXf-EB7h{P4~H$))ifCRtS>o_8W(sX}auU@^amicY!=w|{= z;yJ<3T|%5=9>ELkN3aI|1U?Pk1doBo?-t@=@KnY+_z3z7;CR)YY-bO=hFW|Co=1NP##nC;d>s57`aZ=|msoIt)S1|2+_?h)=*O_yyPizXy5z26!Btf)lp$5{UGZeZhXY zHk@DHc+L?#FW_OjoXc}~cn@)0+_*k$i|wM^$+`haeV+wUiljZ05g{av^W(k7_2yhS z4{n?%x5x1C9^(2I?Skt{H|)he1yqa?1>P zG_`;+6Zd*#Oh5L#{o3sexJi_fq9}}bcJfiZtv?Ny9ujo-r4F*BCY>JgV`M~rI7Wc~ z9!lxO9I|G_imPq%DqW<)qK>QSN~bU)qwIx&RXWhYpx74(&xm!^B~P?tW929c$J!;S ztn^4h5C&8z*ZxB%E$oEqW|CbYFtQ(oei30dIw2EVns$rvjVK&a&pKNv@kgTBLit|ez0%~zae)0uf$HfCDq zXPw4uqX9){lg66u-lErN%Eqg$#_YKUT4fz2a5|9+jHfK`ft4|NdKk#dN_kcXJMuM3 zB_mv_~J}-OQDl%jju5?zNxl)gv_9=2!f?nuiYqaECSKA`?mP~wAHoQ1ep0gT8zJY9% zbj`xdyi7kArUQ9uK{l)N6|ogkxx;Y&u${1Qz8W1Kq2T|HjVPU&n<7jt%;iEBw3XUP zM)HplG~rxaK;_8CsO7sT_N^YeJdg{q$#x;a^;mqd9d?|LNE{1@_{5Y~5 zx_t5{E~E66k3)}>9?%%CB!bLlaWmC$Tw^P{dML-aYb23dI&8HjabjZYlb0^t9j~Y^ z8LM!(mB*J#n$CplJQYqdyO%iPA`rK{!l=v?;T6V==+Z7lI~ZO{KJuDPbg?K{DPAoU zIQisda&>vru=_5JmBn7puBR)kfIl){2L@6jn?+5M?S=m!RF#67$TgvrD$9eb2UnA9 n^D4@4gtL)Pm{{WMj|Ab2(=E#ZmgBKT0Em2vcJwgWX*~W9pvk{$ delta 364 zcmYMuF-yZh00rPvn>1;Vf`}BV5a?8DN-ix3S#+p^5GzPG2e~#!iN>5Pso2#>%L;r%ai}=pP$9;JrcbB{8^-ueHu~xY!NEJ3=1RmUh$qU%<3SD>u7rvkZ z-(co{pas?vA&<}ov+jMFkOBGwT|+lk2yxIYG{zp;#, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-11-01 09:04+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 msgid "Folders" -msgstr "" +msgstr "Mappen" #: apps.py:68 msgid "Created" -msgstr "" +msgstr "Aangemaakt" #: apps.py:71 links.py:47 models.py:26 msgid "Documents" @@ -38,15 +38,15 @@ msgstr "Map" #: links.py:20 msgid "Add to a folder" -msgstr "" +msgstr "Voeg toe aan een map" #: links.py:24 msgid "Add to folder" -msgstr "" +msgstr "Voeg toe aan map" #: links.py:27 views.py:42 msgid "Create folder" -msgstr "" +msgstr "Maak map" #: links.py:32 msgid "Delete" @@ -54,7 +54,7 @@ msgstr "Verwijder" #: links.py:36 msgid "Remove from folder" -msgstr "" +msgstr "Verwijder uit map" #: links.py:40 msgid "Edit" @@ -62,43 +62,45 @@ msgstr "bewerken" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:23 msgid "Datetime created" -msgstr "" +msgstr "Datumtijd aangemaakt" #: models.py:63 msgid "Document folder" -msgstr "" +msgstr "Documentmap" #: models.py:64 msgid "Document folders" -msgstr "" +msgstr "Documentmappen" #: permissions.py:10 msgid "Create folders" -msgstr "" +msgstr "Maak mappen aan" #: permissions.py:13 msgid "Edit folders" -msgstr "" +msgstr "Bewerk mappen" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" -msgstr "" +msgstr "Verwijder mappe" #: permissions.py:19 msgid "Remove documents from folders" -msgstr "" +msgstr "Verwijder documenten van mappen" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" -msgstr "" +msgstr "Bekijk mappen" #: permissions.py:27 msgid "Add documents to folders" -msgstr "" +msgstr "Voeg documenten toe aan mappe" #: serializers.py:58 msgid "Primary key of the document to be added." @@ -106,23 +108,24 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" -msgstr "" +msgstr "Verwijder de map: %s?" #: views.py:66 #, python-format msgid "Documents in folder: %s" -msgstr "" +msgstr "Documenten in map: %s" #: views.py:93 #, python-format msgid "Edit folder: %s" -msgstr "" +msgstr "Bewerk map: %s" #: views.py:127 #, python-format msgid "Folders containing document: %s" -msgstr "" +msgstr "Mappen die document %s bevatten" #: views.py:141 msgid "Must provide at least one document." @@ -131,27 +134,27 @@ msgstr "U dient minstens 1 document aan te geven." #: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "" +msgstr "Document: %(document)s succesvol toegevoegd aan map: %(folder)s." #: views.py:184 #, python-format msgid "Document: %(document)s is already in folder: %(folder)s." -msgstr "" +msgstr "Document: %(document)s bestaat al in map: %(folder)s." #: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Voeg document toe aan map" +msgstr[1] "Voeg documenten toe aan map" #: views.py:227 msgid "Must provide at least one folder document." -msgstr "" +msgstr "U dient tenminste één mapdocument op te geven." #: views.py:248 #, python-format msgid "Document: %s removed successfully." -msgstr "" +msgstr "Document: %s succesvol verwijderd." #: views.py:254 #, python-format @@ -211,11 +214,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -248,12 +251,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.mo index 6fe75fa312d181a294d23e1bfceb399547dea714..d96133b64b7c4026364c9817c6235439571fd8c7 100644 GIT binary patch delta 45 zcmeAc?-t*X!NzT9sB2`bU|?irYBIT)ZQ*1^_9z~o#Ju#<#Pn1vg@T;TRqTQ+03v`4 A_y7O^ delta 45 zcmeAc?-t*X!NzT1qHAQXU}$1xXf(N)Z6S|OVqSV_VtT5TLP5@CVfN_F)$9T+045&{ A?f?J) diff --git a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po index e6b7ff3e3a..64d57db613 100644 --- a/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/pl/LC_MESSAGES/django.po @@ -1,27 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic , 2012-2013,2015 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 @@ -89,6 +87,7 @@ msgid "Edit folders" msgstr "Edytuj foldery" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "Usuń foldery" @@ -97,6 +96,7 @@ msgid "Remove documents from folders" msgstr "Usuń dokumenty z folderów" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "Przeglądaj foldery" @@ -110,6 +110,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "Usunąć folder: %s?" @@ -217,11 +218,11 @@ msgstr[2] "Usunąć wybrane dokumenty z folderu: %(folder)s?" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -254,12 +255,12 @@ msgstr[2] "Usunąć wybrane dokumenty z folderu: %(folder)s?" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/pt/LC_MESSAGES/django.mo index 4c54906799eacfe744132af1ab9cf16158dc72c8..0f7ce74b79e01fda04c8fabe3b77e9a5d8323124 100644 GIT binary patch delta 44 zcmdnRy^DLpZzgU-LtP_d1p^~1QEJ AumAu6 delta 45 zcmdnRy^DLpZzgU76I~;71w#`nL!-%T%u9KE67$ka6Vp?z6becvuVRkgEX1;c5dcDV B4jTXf diff --git a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po b/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po index 86d90c9007..5a8f74114e 100644 --- a/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Renata Oliveira , 2011 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -88,6 +87,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -96,6 +96,7 @@ msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -109,6 +110,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -214,11 +216,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -251,12 +253,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/pt_BR/LC_MESSAGES/django.mo index bede165f047e7415ee9838f63f8341f3900f9ad0..40124051ffb60b572978bef0b4a8bdbe7ebcbed0 100644 GIT binary patch literal 2985 zcmb7_$!{D*6o(5FmJDGFYXXEy0BIc3Gh;gtGg+L(@kkLFVQk}TRPL@BSLp5k7j- zgy(5INA6&(37#0k3*!&40saX-3D)mq>_PAhct7}h&Wqp!m`C6};M?Fs;Je`6;FWy; zD)>0&pMoUk8<5U@3!Vml21(!ZyBM1W7r{f|d*E*HbMOi9D-eI|CSD}x2XGJg3rPBY z1<8)Tz-Pg+yBNbCJA~JBU>!URUI6RhI`|BD4crTU4La~9NOC(6`Xyqs2%f@x&%KOs z@Kx|JFa*hucfk9=_d&Y%5lHrY22%XK0LiW!AjR){@DcDQko5irJ__!JvmNjNI0Z`Z z74Sol?Eem|fxm+kk1g= z{0)-4eQ+uS4}%YbAAkr)YBNk=PvN2SG^h?}pk&h6Ktwqx_Y?=p*+D$yJLPvj9*PUa zj0Wi>`^YC6q_Y_0*8w~n55&<~c7;ZLp5)hDnmFJY;qOnPF0nT=&{_$NUy=bTbnY}Vn?J|HWw(DzJ@BY#WIeaEYle*%gKEm zJE39~_shC~d6r!eD>7u=#5z7OdQAnA3&%q#u%KgE9&X&`OcvP6(RrgHVK(`ja+B*G zr<@k4p_HsZ2c@UM7Sb@3o0j*Cj!IYZ-O5^Vfh1Za$ajcgDLOqkQb1+SXKs5l*Spiz zWhK{3qvnmi1ijw*z+0BaDjm0ZS8R%y&zz?n< z4Wl#BXw_y>erQGB(&hlJJGtSSgAnz2ocpW7Sm{o_vDERVhv!IXPa1D7_H}@&ZS(0B z?Qi(uNyA)jVRSnDVG5T2D`ef^4&E_`z zFj45?1JN%eKx;P3rPC)p!{*5$x?Fr2I$N?MYr`gk0v+j{_&PIJ0&V%$wanORGeb9t zsCA)<>S1HsE`~ZL7aB^@??ttV^0Mh}zr!zWUFXs|yyKxyR_gA{kaHjVT<$D}gsL!Fmyg@h--36)U)bbNC!@;|H9=3ryjSNWW)K&2kfE z<338G6_i4cP#SEZ9H@ygJi;74#Tk5qS^SC_JjWLteu$!DtWWrn9Pm93;3t&2XP8kv zrG5n)=eW#+Fx^Y|0Po;F=I||A_yuKJKar2R;35rTRHcL(N7MB zv-DRlxsd|zP^Lae{vV^k;xfu#Fha`rWsLGhGCg_IBqlSwcLb&32JOum0Gc?nwe zr#(0xJe8B1N~B~CB3Dm;M8YBSJ9=nd#T@f6zB*7?$QN(f&O+HKnv;0eDU|X>$1XZ$ z$C)h, 2016 # Emerson Soares , 2012 # Renata Oliveira , 2011 # Roberto Rosario, 2012 @@ -12,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -30,7 +30,7 @@ msgstr "Pastas" #: apps.py:68 msgid "Created" -msgstr "Criando" +msgstr "Criada" #: apps.py:71 links.py:47 models.py:26 msgid "Documents" @@ -66,52 +66,55 @@ msgstr "Editar" #: models.py:20 msgid "Label" -msgstr "Label" +msgstr "Etiqueta" #: models.py:23 msgid "Datetime created" -msgstr "Hora e data criada" +msgstr "Data e hora de criação" #: models.py:63 msgid "Document folder" -msgstr "" +msgstr "Pasta de documento" #: models.py:64 msgid "Document folders" -msgstr "" +msgstr "Pastas de documentos" #: permissions.py:10 msgid "Create folders" -msgstr "" +msgstr "Criar pastas" #: permissions.py:13 msgid "Edit folders" -msgstr "" +msgstr "Editar pastas" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" -msgstr "" +msgstr "Apagar pastas" #: permissions.py:19 msgid "Remove documents from folders" msgstr "Remover documentos das pastas" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" -msgstr "" +msgstr "Visualizar pastas" #: permissions.py:27 msgid "Add documents to folders" -msgstr "" +msgstr "Adicionar documentos para pastas" #: serializers.py:58 msgid "Primary key of the document to be added." -msgstr "" +msgstr "Chave primária do documento a ser adicionado." #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" -msgstr "" +msgstr "Apagar a pasta: %s?" #: views.py:66 #, python-format @@ -145,8 +148,8 @@ msgstr "Documento: %(document)s já está na pasta: %(folder)s ." #: views.py:205 msgid "Add document to folder" msgid_plural "Add documents to folder" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Adicionar documento para pasta" +msgstr[1] "Adicionar documentos para pasta" #: views.py:227 msgid "Must provide at least one folder document." @@ -166,8 +169,8 @@ msgstr "Documento: %(document)s erro ao deletar: %(error)s " #, python-format msgid "Remove the selected document from the folder: %(folder)s?" msgid_plural "Remove the selected documents from the folder: %(folder)s?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Remove o documento selecionado da pasta: %(folder)s?" +msgstr[1] "Remove os documentos selecionados da pasta: %(folder)s?" #~ msgid "A folder named: %s, already exists." #~ msgstr "A folder named: %s, already exists." @@ -215,11 +218,11 @@ msgstr[1] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -252,12 +255,12 @@ msgstr[1] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/ro_RO/LC_MESSAGES/django.mo index 0d77c3b73fd893be4b8ba7c56e00ee4eb58595ef..88ac90571e031beb8b947bed0f752f62fbfbccd4 100644 GIT binary patch delta 446 zcmX}oJ4*vW6o%p1O=3(oDrh4ZC0-FFAvZBDh$$2dM7$IhHeroJ3Eg$Zn94xexWI~c;KDTE(qP@kK}Af_>ZHcnz5=Y(jA0~VufT;nU3+@n6w;Fb+M z$0WXE9=kY>%iN|1mOQK2OMil4JoEN1ahAUA`G`~W-)M+!R$l2t7GeJ1%b6o0gzx@K z|D`^!)5G*b^&@}*DL%$92V_6Ca1QKjKjq#dgtmv%PQk8d~lcI(P|MLw+fEhDt%R?COdeYsGD G!09i?P&+dK delta 371 zcmXxgF-yZh7{>AUdTG_9AUZizxmE`eTYIszlEuuT2!e|aQbDpQD58U18oLwCJU#t&2{E{QNdy_%=CF+092KPeBv_fy_4E>-!Mv0_Y#ReYZ1`e@? zZ#act7~nUS@CPSQ7ep2@!WCS@c|5>ZC4IT(Vuyv4x0`s2DL!KrrTBM1ZR{#evfRcH zH*p!a#$MnO_YcSn`EVSO$3O3fW9vNHe}bR#KYnBXCwwBx9^&rQoXga^OAAj?vsI5f z#, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-04-17 09:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 @@ -52,7 +50,7 @@ msgstr "" #: links.py:32 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:36 msgid "Remove from folder" @@ -64,7 +62,7 @@ msgstr "Editează" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Etichetă" #: models.py:23 msgid "Datetime created" @@ -87,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Scoateți documentele din directoare" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -133,8 +134,7 @@ msgstr "Trebuie selectat cel puțin un document." #: views.py:175 #, python-format msgid "Document: %(document)s added to folder: %(folder)s successfully." -msgstr "" -"Documentul:%(document)s a fost adăugat la directorul :%(folder)s cu succes." +msgstr "Documentul:%(document)s a fost adăugat la directorul :%(folder)s cu succes." #: views.py:184 #, python-format @@ -216,11 +216,11 @@ msgstr[2] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -253,12 +253,12 @@ msgstr[2] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/ru/LC_MESSAGES/django.mo index 3222a044b37dd6a8d74e0ba463dafa5ff1c0229e..8f3c334adbbd8a08f9d559928744fe4436195527 100644 GIT binary patch delta 517 zcmX}oy-Pw-7{~GBReSR#l0YaWD_VlYYYO5dB+;M|w3M6KMFT4og=n#w-A?@h;@Th- zXoNO2v|fpVmeyMQ1A>OWN2CXS_jB$8=e6s4ao0XQwi`iB6Cb%IUgEUyp$a&TM>vKh zOyC&?@d0D_jZ3(w2{DODwBa_YdAq3A$)Ft%a9N0&C@@&1QAa#hy;(Ap6Xy@|6nsKJGC;4hNZ^Q%Ts{F8ad=0Z_ ow#|F9Wp>S;Fq^~SquJ?S_3N@^pS^3^wk(bo?I)U-G{5ZcfAK9>LI3~& delta 373 zcmXxgze~eF7{>8SE~!6K1-l5vO4O~;+Dj|d;LyoQ!AVf33ewG?5EKy#E-ntri+@1D z)ybigv*03hR%cP1T^#(rMIU(hTmpCZCXdq(Q@yuBaAQcG&e1bELtm&S_Ka!a0#@+= zSMeGb@d+pJ3j_Sd9RA=KTHlx@jIfN$Si(J=^-a&5u-N6r6}va^16$}qid`(=Ef#Tr zlQ{hI6}NeQ$1Pmr_7%K9W*7~}6{F}r9Zm<;Sp5W@@;~D&^iOCa%9%!vy-&IHi*oMw zqgtbqG-KCDT_ROmifZ*r;^M@m&dH8F&2P4kI$67On8w{qp6$LggMr+I^Y`U&-IFXg F`~}PhE=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" +"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:33 links.py:16 links.py:44 models.py:45 permissions.py:7 #: views.py:104 @@ -28,7 +25,7 @@ msgstr "Папки" #: apps.py:68 msgid "Created" -msgstr "" +msgstr "Создано" #: apps.py:71 links.py:47 models.py:26 msgid "Documents" @@ -52,7 +49,7 @@ msgstr "" #: links.py:32 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:36 msgid "Remove from folder" @@ -64,7 +61,7 @@ msgstr "Редактировать" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Надпись" #: models.py:23 msgid "Datetime created" @@ -87,6 +84,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -95,6 +93,7 @@ msgid "Remove documents from folders" msgstr "Удаление документов из папок" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -108,6 +107,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -217,11 +217,11 @@ msgstr[3] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -254,12 +254,12 @@ msgstr[3] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/sl_SI/LC_MESSAGES/django.mo index 5b86db59613a75a9db7eb65ff033c11b78f4ffab..bb1e3b162f22a25f79a91266696889b7d2143133 100644 GIT binary patch delta 218 zcmZo-Th3O0Pl#nI0}!wRu?!Hq05Lld=KwJXbO5m)5O)GGClK!dVvyQHK&%YJCxG}0 zBLl-5AZ-A|2bm!1J^^VqApZ}L2B~9aW?%p+V_*Sd5C95;%mFC@N>0qRW%Wr+O3j(L zvY6Y@P}j&`R!U6;g?R4WA|14A=i17lqyLj@y4D?`J{xr|-> fK8bnhrHSc4>EfLDV9&|l7^5dAGR>aM%&Y, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -86,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,6 +94,7 @@ msgid "Remove documents from folders" msgstr "Xóa các tài liệu từ các thư mục" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -210,11 +212,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -247,12 +249,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.mo index 25340d1f28a42251b36e5f8d26e532c9310658fd..2ad8193dd4d8c10493c5f456ae68b12afa8d8fa4 100644 GIT binary patch delta 48 zcmZ3-wT^4UMka1ULtP_d1p^~1Q|JNr$}V2<8=nK_yf E0CD~gmH+?% diff --git a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po index 2cd6e4e632..6f7b1920a3 100644 --- a/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/folders/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 links.py:16 links.py:44 models.py:45 permissions.py:7 @@ -86,6 +85,7 @@ msgid "Edit folders" msgstr "" #: permissions.py:16 +#| msgid "Delete new folders" msgid "Delete folders" msgstr "" @@ -94,6 +94,7 @@ msgid "Remove documents from folders" msgstr "从文件夹中移除文档" #: permissions.py:22 +#| msgid "Edit new folders" msgid "View folders" msgstr "" @@ -107,6 +108,7 @@ msgstr "" #: views.py:54 #, python-format +#| msgid "Delete new folders" msgid "Delete the folder: %s?" msgstr "" @@ -210,11 +212,11 @@ msgstr[0] "" #~ msgstr "Add documents: %s to folder." #~ msgid "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgstr "" -#~ "Are you sure you wish to remove the documents: %(documents)s from the " -#~ "folder \"%(folder)s\"?" +#~ "Are you sure you wish to remove the documents: %(documents)s from the folder" +#~ " \"%(folder)s\"?" #~ msgid "Document" #~ msgstr "document" @@ -247,12 +249,12 @@ msgstr[0] "" #~ msgstr "What are folders?" #~ msgid "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." #~ msgstr "" -#~ "These folders can also be described as user folders. They are a way to " -#~ "let individual users create their own document organization methods. " -#~ "Folders created by one user and the documents contained by them don't " -#~ "affect any other user folders or documents." +#~ "These folders can also be described as user folders. They are a way to let " +#~ "individual users create their own document organization methods. Folders " +#~ "created by one user and the documents contained by them don't affect any " +#~ "other user folders or documents." diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.mo index c47f64e29a0692993da1f16687120608a10459e7..09b270e0b42246f3244af7ae1ddea595c578329c 100644 GIT binary patch delta 44 zcmey)`ki%y1S7Yhp{|j!f`O5hsmWwz#)XqFGDh+EB<7`;CZ?xaDI^w6)?zvf04rM! A<^TWy delta 44 zcmey)`ki%y1S7YBiLQ~kf}x3(q0wYz#)UjSiFxUziRr0U3W-IN4>Lwj)@C{b046>S A+yDRo diff --git a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po index d5346db5ce..4731305b37 100644 --- a/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/bg/LC_MESSAGES/django.mo index 4ee2a4af2e7caad0de8d88059541a8256f413333..ef1d61dceaf5135b5a264061a9ef079e951f4b15 100644 GIT binary patch delta 44 zcmaFI`i^yj1S7Yhp{|j!f`O5hsmWwz#wC-lFh=qCB<7`;CZ?xaDI}#&)@3>f04Sdg A#{d8T delta 44 zcmaFI`i^yj1S7YBiLQ~kf}x3(q0wYz#w9#HiFxUziRr0U3Q6gck1, 2012 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.mo index ccb95b5e2b8c2848cafb3a1fb5096a8758e0f3d6..3ba00312637b7e2c723f33b9d6010d34ceb10118 100644 GIT binary patch delta 47 zcmeyv`iFIc1S7Yhp{|j!f`O5hsmWwz#(k4NGDh+HB<7`;CZ?xaDI^ugJ2_7FV%h`% DUFHuN delta 47 zcmeyv`iFIc1S7YBiLQ~kf}x3(q0wYz#(n%giFxUziRr0U3Q5KBPL7iwFh)=IX4(h< DRU8it diff --git a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po index 35ef7592d5..7365f0ad6a 100644 --- a/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/da/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/da/LC_MESSAGES/django.mo index 03136d397570fa7d7e22082c9b271739f68b7ad9..64d729f50f00e332aed45fa68595503c6d73f453 100644 GIT binary patch delta 43 zcmeys@_}W-FK$CaT_a-!10yR_lgX@%3ny=8jN, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.mo index 2bc660141021b15ec44d5d34e8240eaa61a4e734..e5eea70ee2a6f20bd4631ecee6943dbcc3db10b2 100644 GIT binary patch delta 48 zcmaFQ@t$LYF%!3;p{|j!f`O5hsmWwJrUR4tn4|c867$ka6Vp?z6jD;-U0gS(GjlKk E09&aI?EnA( delta 48 zcmaFQ@t$LYF%!3eiLQ~kf}x3(q0wYJrUU#wiFxUziRr0U3Mr}aF0PaRGDUCBU}k3o E0BFMw-v9sr diff --git a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po index ce27dd4c14..52d65299f5 100644 --- a/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/en/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/en/LC_MESSAGES/django.mo index a74863750bfaac17d237cd02c12073df486ec086..d3d9e38f152a88870eb019753ed0cc9ce811b083 100644 GIT binary patch delta 22 dcmcc4a-C(uBW^=OT_a-!10yR_lZ|h)7y(%22UY+8 delta 22 dcmcc4a-C(uBW?o|T_bY^LlY}Qqm6H~7y(%$2U!3B diff --git a/mayan/apps/installation/locale/en/LC_MESSAGES/django.po b/mayan/apps/installation/locale/en/LC_MESSAGES/django.po index e79d56cc89..2e47336ff5 100644 --- a/mayan/apps/installation/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/installation/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: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/installation/locale/es/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/es/LC_MESSAGES/django.mo index 2b6935746b8e624cf2d8a604c3fb8cca5754aa69..5a029be7344c948aced0a4dcdeed022b0d1de96f 100644 GIT binary patch delta 45 zcmaFJ@sMMKF%!3;p{|j!f`O5hsmWwJrbUzAGDY$DB<7`;CZ?xaDWn!}c4L-i1OPl1 B4W|GA delta 45 zcmaFJ@sMMKF%!3eiLQ~kf}x3(q0wYJrbRqHiFxUziRr0U3aQ1D?=wYjc4wAi1OPRP B4V?f0 diff --git a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po b/mayan/apps/installation/locale/es/LC_MESSAGES/django.po index 3c72f69cc4..e118dc9b52 100644 --- a/mayan/apps/installation/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Igor Támara , 2015 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.mo index b7f323b5bc78fc6d04a7013f406f79a38023b873..5ab9b6aa7c2c2ee3f5ae40586c8acca2d92d1cec 100644 GIT binary patch delta 45 zcmX@hah79)F%!3;p{|j!f`O5hsmWwJrbUzAGDY$DB<7`;CZ?xaDWoNCc4KB|1OPOt B4O##I delta 45 zcmX@hah79)F%!3eiLQ~kf}x3(q0wYJrbRqHiFxUziRr0U3TcUx?=wYjc4uZ|1OP4B B4Nw38 diff --git a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po index ea31c7c227..9f201db31c 100644 --- a/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.mo index c9b6ba4bab999aa7baa13d23dd0efb0dab42d16d..6be9a1f8789164c052d217dc2c3787a1fdb9cb61 100644 GIT binary patch delta 45 zcmaFC@q%N6F%!3;p{|j!f`O5hsmWwJriGK=Fh%kBB<7`;CZ?xaDWnx`c4by(1OPr? B4Y~jT delta 45 zcmaFC@q%N6F%!3eiLQ~kf}x3(q0wYJriDB{iFxUziRr0U3TZ`??=eMhc4Jmz1OPYS B4X^+J diff --git a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po index 8400cc09a1..7384bd1cf1 100644 --- a/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/hu/LC_MESSAGES/django.mo index 9d088e39f23f293345a841df5aaf5a1f472691e6..4a2de9caf326a4fd91f90e8d6f964d609cfb5e6e 100644 GIT binary patch delta 42 ycmeyu{DpbKa&ALIT_a-!10yR_lZl&_OipHu;_*q$OD|1KPqk9WD4o2A(EM(W?b<7^leCBr zfrL2p1Q&$Fhv34IJ14}ABj16)(=>euVQKX9cxT4r+5fK_WA7Q(W!O0E4eUDXC(JK8 z#n^dp0`xI6;4N?-oC2SK1X}Pc_-@F(AwPhVIR6Be!0+Hy@CWz>_8WEq{@XK*T>;Y6AWr;I-4Q2QSdq(vr+TqN?~Gi@0g)8z3&lv|Ta>vj+0 z5#VH2ur;wMQ`Qn`SF)CpeNsmnAgO!G8l6e)4lY2HbzPCxbdTjKCv6<=?CN&F)~$IZ z6UXaq-jcS!3u0=BU7@MA(s*9lkh!srH;RsG^T*vz!J8(g()zO|U$%1aV!k4rjHwcp z=XtrzE3*_;;(K#Enu{U?@(tNjzV6YuXpvXuC|ZnX7w<+`r8QAF-n2p&7^9y?L)gU7 zvdHpO7Lx8~-Vc(YA7shHPKMzJiOC)yTX(vmBY9JbET%gChQbS`x1G!5FzomHf%CQ1 zmfZ0fp*4lD%GfaTPvx?m6=6Co5-JzYlp6I$?QkOHASx{z?J!f`+|BV^CwE+!r$Xr^ zO16b9q^rJYuJVP$IDg}ow7jMh(^k3@)54~5qh@1*vz~UXNcpO&`0azI~*& wI#KkIbt*Avp$2aIe!L8gg$^ZxA@@Ot$FoRen+lWjVm%>4P0pGg{&>Lt0?O+*<^TWy delta 277 zcmaFIafPM+o)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~Z-Y9>PI=}>wuknUwR0cK!NHH*j2nGfL2B0_t3yA5GT9TNVGkGGT$mFMt ze%uBox<=*-h9*{q#*^)sq>W8=4J>qx3=|A4tqcvd4S;~lC$YFhH>4;ruQ(^MB)`Z? zAt*m7wWuT?NEas-W#&&_$rQrllbDxYnwXwyrI1-N`43a{

I8DaWFc%;fx>Oomh- Sosn8nlE@I2n3G?W$^Zb>mo&!! diff --git a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po b/mayan/apps/installation/locale/it/LC_MESSAGES/django.po index 9955edba3d..2550da1111 100644 --- a/mayan/apps/installation/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/it/LC_MESSAGES/django.po @@ -1,31 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2015-08-20 19:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-09-24 09:39+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 msgid "Installation" -msgstr "" +msgstr "Installazione" #: apps.py:22 apps.py:29 msgid "Label" -msgstr "etichetta" +msgstr "Etichetta" #: apps.py:25 msgid "Items" @@ -37,15 +37,15 @@ msgstr "Valore" #: apps.py:41 msgid "VirtualEnv" -msgstr "" +msgstr "VirtualEnv" #: apps.py:46 msgid "pip not found." -msgstr "" +msgstr "pip non trovato." #: links.py:12 msgid "Installation details" -msgstr "" +msgstr "Dettagli installazione" #: links.py:15 msgid "Details" @@ -53,16 +53,16 @@ msgstr "Dettagli" #: links.py:20 views.py:13 msgid "Installation property namespaces" -msgstr "" +msgstr "Namespace proprietà di installazione" #: permissions.py:10 msgid "View installation environment details" -msgstr "" +msgstr "Vedi dettagli installazione ambiente" #: views.py:27 #, python-format msgid "Installation namespace details for: %s" -msgstr "" +msgstr "Dettagli installazione spazio dei nomi per: %s" #~ msgid "LSB OS" #~ msgstr "LSB OS" diff --git a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.mo index 8da3476eccc11ae415e7a1715fef184c259ee037..178658b73d58f0a0573f3fb3b33ab90651e37cbe 100644 GIT binary patch literal 935 zcmZva&2AGh5XTLa0?Wst;sys-2$6uC-6W-|wgga{6h&%E)rP>S$jweRZoT%(_9pEk zaEG_)v+xXXcLwkg8WUq8=izHH6UrG*~^Pk?%glBkEMGn7BSP)fI zHwd|nd@|$mj4zPS(a(^+=05Tf@&I{;%20RFetC+Q|>1-Xd!0rD9V zkiOnGq>ulO#8Rct=b>57>1+Euf9|0c${Qg!XC!TKTu4j0$~rD3cS5Uc22Cy^9AuVk z^Fxqiz-0ksAYe+xTp|TE5k{*Fl)KCu2;&MaJ8D95kyE7|9qB?PHL`2;5eyycCTsx4 zV&|Cl_$gPk)9&pDdys46SkI;+VH-tiSzpIA*!|dNn+D2BS(`hEX(OtyvU;60nlx&} zuUA;K5=9uu_Fy7>-D`0XYpl_FBW|v~itq&6+&b1bTv>d+HZko?K#C(p_c@nNsAKvD z&OLVKc%NqYX|2z9izK8y;Vx&7Y1u2-m4)GwZE2HP^yQ^#Ta9&k zer;70U2f5Obv+;-AjMx%^P2;6iv#~#o6nq^1jq&)i=*SY%>kw}tcHWxi?n~YMu4Lj KqE!N_M*afcY5I)- delta 177 zcmZ3^-o)Z~Pl#nI0}wC)u?!IF05K~N+W;{L1OPER5C;PBd`1R_NFdDt#6N*-AYx#c z_)ubUE~B5Zfr+k>xq_jIm7%e&fr)_uSAf56P-m7(F}cZ}lvLHS9kMJ4$PLHWgrMVa}N4VjYpeG>E1OB2(9TJmz@{d^`*W{RHt HkI57O6=){h diff --git a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po index 04069cbc0b..b61161bb7e 100644 --- a/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/nl_NL/LC_MESSAGES/django.po @@ -1,51 +1,51 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2015-08-20 19:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-10-28 12:36+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 msgid "Installation" -msgstr "" +msgstr "Installatie" #: apps.py:22 apps.py:29 msgid "Label" -msgstr "" +msgstr "Label" #: apps.py:25 msgid "Items" -msgstr "" +msgstr "Items" #: apps.py:30 msgid "Value" -msgstr "" +msgstr "Waarde" #: apps.py:41 msgid "VirtualEnv" -msgstr "" +msgstr "VirtualEnv" #: apps.py:46 msgid "pip not found." -msgstr "" +msgstr "pip niet gevonden." #: links.py:12 msgid "Installation details" -msgstr "" +msgstr "Installatiedetails" #: links.py:15 msgid "Details" @@ -57,7 +57,7 @@ msgstr "" #: permissions.py:10 msgid "View installation environment details" -msgstr "" +msgstr "Bekijk installatie-omgevingsdetails" #: views.py:27 #, python-format diff --git a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.mo index 6ded16ed76760a63915b1162ee0468216080117b..da77cb77b27ed9c2a8704a25a371ae5d48945940 100644 GIT binary patch delta 150 zcmdnQxq)*+P3%)f1_lu3W?*1A&CI~S1*ES7X)z%E2uSM#>7PJa21skNFfgzKX*VFv z0i^waG$)V_2hw^#IuS^N^iKfNB0zff#+y-$+=hm_M#c&TMpmXKlkJ$Cm`hT#C$}JM*7`Y8hbdAgv3{9*IjVIeNIk6^ZrY2`h eZf2_H@kz`}FHKBOwNfa^nf#Y2dUGnXHzNQKupCVQ diff --git a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po index 47600c6593..79520a562f 100644 --- a/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/pl/LC_MESSAGES/django.po @@ -1,27 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic , 2013,2015 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 permissions.py:7 msgid "Installation" diff --git a/mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pt/LC_MESSAGES/django.mo index 6ce504dfebff458a4ae22012369b9c5a7c070d1c..a68ea7b639cbfd3369f8b043c7ff112ac3243801 100644 GIT binary patch delta 43 zcmaFJ_K, 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/pt_BR/LC_MESSAGES/django.mo index b40158089f58a630ccadc8d77060a068860c1e30..776c39b3b842d359f45c0851d51188fede846e42 100644 GIT binary patch delta 64 zcmaFD@q}Z8F%!3;p{|j!f`O5hsmWwJCRq^Q&|JaD*vi0savD?T7|M3 Rsa6UFCGk!{n, 2015 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ro_RO/LC_MESSAGES/django.mo index f2a3cc7c7a40aa023455feb22289968d44ef1822..c96406a446a662e89d8bd66c7eed2fcd58a8e27b 100644 GIT binary patch delta 520 zcmYk1y-Ncz7>858Tl@eKK@^OFi0GBOS`|wX#a0lC6%`Q&C2G7z(o0Qp#Z9oATPcoC z&h8G5U7TEJ-gbn|!B!51E$z!;FA4?KgYK0!D50=?iH z41ul~A)WB(pC|r24Nsx(z)|Kd+z%hYZ=ejKyp483;%JjCEQZlIfO}x|dqA$>=;94L z3E#p|;3GT^Kf%aq^`ehp+qxfRbb+Yi^>Bu62F5ZenH4IaXWTL&4cWB3Y)FBfa9O{1 zM)rlaA(Q!_N-Cm417+#C3WKv`{iS%}c}{Acx~a@U+Hupao7gToJG?3k0-YSQJVR5i zw}>;xTcVzq@s?*@RHDF)b@nt13|?0{Lw7AdXMqUmx)#QAn)SnqSS_)@XF93XO5-wi z()frS4iwM|nU7?xj(3WUY+Gq2hp$T^gydATMrziy5M)hTajGOIdAP)Fv(|WMo16VN a(Y98;X5~=Q)@&hV7|vMgH)}@NB>4fc4t0sA| z85m9hX^^@}ObiU1KzbIC2Jx2wX(b@N21o;yF)#x$NIwe@1Hr`S@{`pWbtdOB`f(eW z=o*B{w, 2013 +# Stefaniu Criste , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" +"PO-Revision-Date: 2016-04-17 11:19+0000\n" +"Last-Translator: Stefaniu Criste \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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:16 permissions.py:7 msgid "Installation" @@ -27,11 +26,11 @@ msgstr "Instalare" #: apps.py:22 apps.py:29 msgid "Label" -msgstr "" +msgstr "Etichetă" #: apps.py:25 msgid "Items" -msgstr "" +msgstr "Articole" #: apps.py:30 msgid "Value" @@ -39,15 +38,15 @@ msgstr "Valoare" #: apps.py:41 msgid "VirtualEnv" -msgstr "" +msgstr "VirtualEnv" #: apps.py:46 msgid "pip not found." -msgstr "" +msgstr "Programul pip nu a fost găsit." #: links.py:12 msgid "Installation details" -msgstr "" +msgstr "Detaliiile instalării" #: links.py:15 msgid "Details" diff --git a/mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/ru/LC_MESSAGES/django.mo index 59a1df5fac659ddf5ba3827e1f0ae974d3a56421..ae304e1ecd11aab4a3f61fcb4c0a611693fee94e 100644 GIT binary patch literal 1388 zcmb7@zi$*r6vrnC1ad@CKoO##coep{pt;*U&WNnNMv84DD?Y_?4)?>|_}FM~b~QU| zW61@?MGBDeTTu$+iW2F9e9;APs8XewYf?q&_!pv-`Ob2-F*pSyz5UG0d++<+8)^SO zb>s(z^)BozYy)-@_7}`8dV{fJ;5pF6l)(?cOW-*82}qy@kAmNg_|u46;27@jgC+0} z@ICNP@YI`(Jp-NYzi;6T9zDX?hu|4-0h|Hr;Md^$;O}6OKRQ1f`TqgS@Lxa^r@?C= zq>J9++FPziSI@1tVJKUyckp%np(S>rxMA$L!y`N2Q+q2h*F)TQk(Vtcmx>P&DestE@QSV;#{)jNUl-zLIWh#YNQj@mCEcE zK$JGQi09NQOQV!jVo)*|V_6ct-acaTF(&RH�pX%hIBY9JbZa_Le37N_4gB2H~>Z&8qQ8q^k33xzw0%%|pq6}V)H`h}PW8_U! zO=A(MNow5?I+G^6*1XCu@5i}{D^l}0)k@lt>I8K8dSv#R4M^vu#W>d@=2sKl%>q(s zam>Q{Bt74T=hc|+g`rR5Tz25V%;LEHV4N?GL}OJ^R=W*l=@ryEyFF z-|R#C$o81s!ghOj3*VnDu8V*Hy%IT~15#w4x*Qh`_UulP_t5sp4(yZRH+JVR3A=3{ z55Fq@4!iaG`OH4R7=8N$wu8cVn7xPE+xDp)p#EKEf5ZsA;g`;jKKlPV-E9=_W9&PJ rbjj?ukh=x_P4{fWyY5+RpYVBv>rMO1p1k}0;Drxm?XTzrg)8ho*;Dil delta 246 zcmaFEb%L$_o)F7a1|VPsVi_QI0b+I_&H-W&=m266zY~agfOsMhgVfFgVpSks0>t7> z3=F4$G)VptkSzqH-vem@AkDKGU%%Q8w%p3kT= z`6;6xw}FYSk-37QiIt)8WIHBVLjz-7BSQrvLn{MQZ37_S@<}W%(G4j|%qz}GEXgmj xQV7aVN-ZkM2hzofMVa}N+nGXmd=m50OB2&mtrUt%C*NX=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" +"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:16 permissions.py:7 msgid "Installation" @@ -27,11 +25,11 @@ msgstr "установка" #: apps.py:22 apps.py:29 msgid "Label" -msgstr "" +msgstr "Надпись" #: apps.py:25 msgid "Items" -msgstr "" +msgstr "Элементы" #: apps.py:30 msgid "Value" @@ -39,15 +37,15 @@ msgstr "Значение" #: apps.py:41 msgid "VirtualEnv" -msgstr "" +msgstr "Виртуальное окружение" #: apps.py:46 msgid "pip not found." -msgstr "" +msgstr "pip не найден." #: links.py:12 msgid "Installation details" -msgstr "" +msgstr "Подробности установки " #: links.py:15 msgid "Details" @@ -55,7 +53,7 @@ msgstr "Детали" #: links.py:20 views.py:13 msgid "Installation property namespaces" -msgstr "" +msgstr "Пространства имён установки" #: permissions.py:10 msgid "View installation environment details" @@ -64,7 +62,7 @@ msgstr "Подробности среды установки" #: views.py:27 #, python-format msgid "Installation namespace details for: %s" -msgstr "" +msgstr "Детали пространства имён установки для: %s" #~ msgid "LSB OS" #~ msgstr "LSB OS" diff --git a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.mo index bea4d564a179c1b9f719624c101e3adba3c977ad..8ea91bdb8a727d1c607f6f3939714dcf8779851b 100644 GIT binary patch delta 145 zcmdnRa-Ajco)F7a1|VPtVi_Pd0b*7l_5orLNC0AXAWj5gka#8#Utwfm$OqEgKI}@VT|JUNz6+xO-xU< XQYg-e5B8jVmNA#zzbY>=JCOkZbN(7( delta 115 zcmcc4vWvy>o)F7a1|VPpVi_RT0b*7lwgF-g2moSsAPxlLD~t>bkwBUoi1mOPfLsQK yiGdOm^ZmFDOmvOR6%0+R42>tA*u?LXn3rCfn4W5-P@EGV>^ZrTF?#Y7#vA~8Iu$Pf diff --git a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po index 4d19b97016..7f5797ae46 100644 --- a/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/installation/locale/sl_SI/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2015-08-20 19:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:16 permissions.py:7 msgid "Installation" @@ -26,7 +24,7 @@ msgstr "" #: apps.py:22 apps.py:29 msgid "Label" -msgstr "" +msgstr "Oznaka" #: apps.py:25 msgid "Items" diff --git a/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/installation/locale/vi_VN/LC_MESSAGES/django.mo index 3988920fdf20cd1c2af1a0df6799848f00d6c450..39bf8e7553d87d1ee7097c7925dcddfd9826ae60 100644 GIT binary patch delta 45 zcmZ3$vVdj6UT#A}T_a-!10yR_lZhubPwr-n;`d3+OD|1KPqk7g%Zv~6oBV{)1^`m0 B4`KiS delta 45 zcmZ3$vVdj6UTy;uT_bY^LlY}Qvp{|j!f`O5hsmbJA#^GZg^< DT@nu5 delta 47 zcmey$`jvG<5+k>PiLQ~kf}x3(q4DHg#, 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:54-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 permissions.py:7 diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.mo index c0afbff4000735938caa4ccabbef2d76805c1365..7a4b4bb3b14a6326d1107fab99c6b0b46ca02ba0 100644 GIT binary patch delta 45 zcmZn{Z5Q2eoR!, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:33 msgid "Linking" @@ -145,8 +143,8 @@ msgstr "is in regular expression (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -222,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -251,6 +248,7 @@ msgstr "تحرير الرابط الذكي: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,6 +268,7 @@ msgstr "تحرير شرط الرابط الذكي" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -377,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.mo index 07a8e570d6a08a47e44ccb11c6b54827bb6070c9..5bd142a5bb762dc1e9bcfc305c53c96cadad977f 100644 GIT binary patch delta 45 zcmbQkJBN3JGBdZKp{|j!f`O5hsp(`r<|UKwGe`0GB<7`;CZ?xaDI}$DwqQwN0stX% B4J`lw delta 45 zcmbQkJBN3JGBdY, 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -144,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,6 +268,7 @@ msgstr "" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.mo index 16ffa14841f7c9316bd97f03bb4a9403c7643067..47f0f219f563a4a7566ab3dfb1e067edc0bdfcd2 100644 GIT binary patch delta 48 zcmX>ma!h2yaaL|aLtP_d1p^~1Q`5ma!h2yaaL{v6I~;71w#`nL*vPpSoiV!B<7`;CZ?xaDI^ugJ2_77XN%tai_M1_ E0Ee#-N&o-= 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 a98e7cbd74..0f44c3592b 100644 --- a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:33 msgid "Linking" @@ -145,8 +143,8 @@ msgstr "je u regularnom izrazu (nije bitno velika ili mala slova)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -222,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -251,6 +248,7 @@ msgstr "Izmjeni smart link: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,6 +268,7 @@ msgstr "Izmjeniti uslove smart linka" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -377,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/da/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/da/LC_MESSAGES/django.mo index f873c57f0aab5a9bc5798467dda5138ca78259a5..ddbb8e9cd507f2d3c4c92f6a95579c80d107cf50 100644 GIT binary patch delta 42 ycmey&{F!;eN^V0#T_a-!10yR_(}`OaPEKNs;_*q$OD|1KPqk7=Nu0c!(Eod5s; 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 cd30ded4ce..3ed5cd7193 100644 --- a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -147,12 +146,9 @@ msgstr "ist in regulärem Ausdruck (ohne Groß/Kleinschreibung)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die " -"{{ document }} Kontextvariable ist verfügbar." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Eine Vorlage zur Verarbeitung eingeben (Django Standard Templating Sprache (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Die {{ document }} Kontextvariable ist verfügbar." #: models.py:43 #, python-format @@ -227,10 +223,8 @@ msgstr "Ähnliche Dokumente für %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Dokumente in Smart Link \"%(smart_link)s\" verknüpft zu \"%(document)s\"" #: views.py:97 msgid "Available document types" @@ -257,6 +251,7 @@ msgstr "Smart Link %s bearbeiten" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Smart Link %s wirklich löschen?" @@ -276,6 +271,7 @@ msgstr "Bedingung für Smart Link bearbeiten" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Bedingung für Smart Link \"%s\" wirklich löschen?" @@ -383,14 +379,14 @@ msgstr "Bedingung für Smart Link \"%s\" wirklich löschen?" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/en/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/en/LC_MESSAGES/django.mo index 7d1642e1daee19a5974a3ac425cf19957aae4bd0..2dc9524097a21d216742b458a05ca11390e9f20d 100644 GIT binary patch delta 24 fcmX>sbXaIZ11qsbXaIZ11q, 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-05-09 01:40+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -146,12 +145,9 @@ msgstr "está en la expresión regular (no sensible a mayúsculas)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"Introduzca una plantilla para generar. Use el lenguaje de plantillas de " -"Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). La " -"variable {{ document }} está disponible en el contexto de la plantilla." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Introduzca una plantilla para generar. Use el lenguaje de plantillas de Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). La variable {{ document }} está disponible en el contexto de la plantilla." #: models.py:43 #, python-format @@ -160,9 +156,7 @@ msgstr "Error generando etiqueta dinámica; %s" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Este enlace inteligente no está permitido para el tipo de documento " -"seleccionado." +msgstr "Este enlace inteligente no está permitido para el tipo de documento seleccionado." #: models.py:88 models.py:100 msgid "Smart link" @@ -228,11 +222,8 @@ msgstr "Documentos en enlace inteligente: %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Los documentos en enlace inteligente \"%(smart_link)s\" en relación con " -"\"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Los documentos en enlace inteligente \"%(smart_link)s\" en relación con \"%(document)s\"" #: views.py:97 msgid "Available document types" @@ -259,6 +250,7 @@ msgstr "Editar enlace inteligente: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Borrar enlace inteligente: %s" @@ -278,6 +270,7 @@ msgstr "Editar condición de enlace inteligente" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "¿Borrar condición de enlace inteligente: \"%s\"?" @@ -385,14 +378,14 @@ msgstr "¿Borrar condición de enlace inteligente: \"%s\"?" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.mo index b869031e1fca6ecb7790197ce24df49e17e37658..751488f12a924df1796fcd4fbc4627e456092c5b 100644 GIT binary patch delta 45 zcmX@7a86;vT@G$TLtP_d1p^~1Q`5;WI2KKw&KbqylbDxYnwXwyrI41m`2%Mh8vtgz B52^qF delta 45 zcmX@7a86;vT@G#o6I~;71w#`nL*vOWI2Q5vB<7`;CZ?xaDWoM%?&OT#{E;)34FF^A B51;@5 diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index dc6465ca76..95490a2616 100644 --- a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammad Dashtizadeh , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -144,8 +143,8 @@ msgstr "موجود در عبارات منظم (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "اسناد در لینک هوشمند: %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "ویرایش پیوند هوشمند %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,6 +268,7 @@ msgstr "ویرایش شرط پیوند هوشمند \"%s\"" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.mo index e9fff0ac345524b6e19ed63ccdfa6f62ee8a4c18..d0d811bbc9808963fb365bc76c5bcd5fb445d2b4 100644 GIT binary patch delta 45 zcmcbienWkOEjPEJp{|j!f`O5hsp(`7?uC=TaYym^B<7`;CZ?xaDWnx`_UGwj2LMXI B4v_!= delta 45 zcmcbienWkOEjPD;iLQ~kf}x3(q48u7?u9%)iFxUziRr0U3TZ`?UvNin4&dov2LMA# B4u=2$ diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po index e303807db6..69d42feab8 100644 --- a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Pierre Lhoste , 2012 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 @@ -145,12 +144,9 @@ msgstr "est une expression régulière (insensible à la casse)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"Indiquez un modèle à restituer. Utilise le langage de rendu de Django par " -"défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). La " -"variable de contexte {{ document }} est disponible." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Indiquez un modèle à restituer. Utilise le langage de rendu de Django par défaut (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). La variable de contexte {{ document }} est disponible." #: models.py:43 #, python-format @@ -159,8 +155,7 @@ msgstr "Erreur de génération de l'étiquette dynamique : %s" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Un lien intelligent n'est pas autorisé pour le type de document sélectionné." +msgstr "Un lien intelligent n'est pas autorisé pour le type de document sélectionné." #: models.py:88 models.py:100 msgid "Smart link" @@ -226,11 +221,8 @@ msgstr "Lien inetlligent du document: %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" -"Documents du lien intelligent \"%(smart_link)s\" en relation avec " -"\"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Documents du lien intelligent \"%(smart_link)s\" en relation avec \"%(document)s\"" #: views.py:97 msgid "Available document types" @@ -257,6 +249,7 @@ msgstr "Modifier le lien intelligent:%s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Supprimer le lien intelligent : %s" @@ -276,6 +269,7 @@ msgstr "Modifier la condition sur le lien intelligent" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Supprimer la condition du lien intelligent : \"%s\" ?" @@ -383,14 +377,14 @@ msgstr "Supprimer la condition du lien intelligent : \"%s\" ?" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.mo index 182a1557104ffa9ff1cee9bff400010c579acaff..3ea7887c18ea067bb5e9de67b3e66891d90a3210 100644 GIT binary patch delta 42 ycmeyt{DXPIN^V0#T_a-!10yR_(}`P_OipEt;_*q$OD|1KPqk9WD4o2I(Fy=K%MOG9 delta 42 ycmeyt{DXPIN^S!aT_bY^LlY}Q^gfwLgndlyEZ-5 zld2j&Hsr=7;sgRAkjRA~@wi1oCohrs~e z1%45{7yJhJUhpOG&EPHY1o)fk`+vZ@@q8CPcEJ0=cYsmBfQ zUEnTAInP!60?6@S1v&l&@J{eYAno>Za0dJfcm})|i?|Ga5~QA=2Wir8g6JZ?4RT#C zg7_1^zz^m87Np#Nfgb^nVN&WNLH6%})OQ7>KdyogfKP#M2ftFie*xrtKLFnVz6?_C zPe97O1%3y<{yTUc&tJn}`tw&HUWtE#ZSZxF^UuKe9|bRh^wXz7uET?8!Ow!Hz!yQ< z=XW6e_bT{qunXf--xZMS)!-9g0p1V33^FeM1XAv6AlG#alivp>Amu&|a{LYO$6x@b z!E*>gu1|rqQy=8G=Ro%VE{Lw;dli2QVrk;nAVNs|5u~1f1v}t>tLGWKY~lGKunqP> z`uFSLC%|8VT=#J(4|9q~K}FkiM^6kh!r>b>)eZ{)AZAQYKgHxt3|s8}_vgGVBht z7mtp|HE!ib;r7TliH=UIpzC=?FF1KU-QjP&Sk$==x+;H9yRnPJeWDETwA@3cQ5m6uNEuujU! z@p)upe5~c|l~QW7YgOO$Bs`;Yu>=RkpXOv^zwZAM1#n2Cw--xsvIijKLXlw>;Y&KMxmQ$M{41BlU#(I1!jY9^mxS@NY z)hqgKZQHZ0b8V+L+M{`Vdwpo~V61OXx8&NUmd`v>hupKz(%(Vv1i7W0iB2+Js!?#Z z#FBFey-Zu}6r^M_ZJKDFp|G?waN2u>x_GQ`+GMt#K!xDU`Vf(}Y`3%v*bGo1FESXp z*oY6sfT9c65-ZW_D{x{Rg<|ickI&FUd`f3@u(&qfS&duy^iaE9si}PQOWn&iy7?HT zqu_`gX(3~K`H<_8umzTbMWwMPb>A?~2Wep6mRQ?F2dBAwY~XTjeH~P)g5vU2p34G* z+}I$#8dUED&S8tdzQuN99*+&$V+4=XLu@cZw8V9T9j$%3YN#r^$8g7z}@LN zb-488+GEN2x*uoU&@NfBy&}aA3rgTk71lbiDJrHtmSM6Qx1#{_wf{KI3r*e4nZks;8~p?n_Ns9bSSo$@=+uBIqV zt85QCtMN@k=Iu1#;^f24QMXmLn&p6AM!-O{Ny9+Z@|hE0+JI!D97~YfO>n@>l-m@l zXzzg2WqdR@?odk|;lX`p{wv>t9xfjH1r2r7v2Tu&$dfFfUeN)`8-d9}K#5hv=tlE~ zvQrZSql|__3^y9YP}%QSL?31v_t^j0h=s}=1&&Owo$)ssX~sdlPeMXK57H5e7w3Sw_HD*d&v&iilgj_F}z;Dv_Akfsu3&W zZeqm{Of@AcDtbHY&k3wYaG1*GvhYvM$Vl4bE5!&c7&2VT_~x*acf(kOeEh#gH0}@U z3MGdK`CNO9Ql_aV71=R^9+DTmpB`cKzl}b6;;h&C} h+E|=-I98D|Whs92+?Y1jC<2SWY2xA0xIIkl{{UKYgopqD delta 1032 zcmYMzPe{{Y9LMp;bh^3CKg*?Qu3wpo*l1JB7#2wj461{45IQaWp#ycMzY#&Spj#3Y zPeO#9N{BiP^3ox?crbzvLUbuSbg64d1lghYXU_Wad!Emu&smm29>EVsD*B! zHueV_v6;pI^P3)C)S;hB3mC#fIEDJbUDVE2%I(GS_XZ|t|BMM$4^+x4Yj=*O9krkijN@rkN~f_IZ=y2w5H;~5 zeP}`rrU@L17N!e!grW#jwCdf^k!i9fiY8aavp9+yIrsnPg59dVXovkh_L;xie)q>$7Xz;, 2016 # Pierpaolo Baldan , 2011-2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-09-24 10:31+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 msgid "Linking" -msgstr "" +msgstr "Collegamento" #: apps.py:55 models.py:18 msgid "Label" -msgstr "etichetta" +msgstr "Etichetta" #: apps.py:62 models.py:25 msgid "Dynamic label" -msgstr "" +msgstr "Etichetta dinamica" #: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" @@ -38,11 +38,11 @@ msgstr "Abilitato" #: forms.py:35 models.py:109 msgid "Foreign document attribute" -msgstr "" +msgstr "Attributo documento esterno" #: links.py:14 msgid "Create condition" -msgstr "" +msgstr "Crea condizione" #: links.py:19 links.py:36 msgid "Delete" @@ -54,7 +54,7 @@ msgstr "Modifica" #: links.py:27 msgid "Conditions" -msgstr "" +msgstr "Condizioni" #: links.py:32 views.py:183 msgid "Create new smart link" @@ -144,22 +144,22 @@ msgstr "è un'espressione regolare (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Inserisci il template da renderizzare. Usa il linguaggio di template di Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Variabili di contesto disponibili: {{ document }} " #: models.py:43 #, python-format msgid "Error generating dynamic label; %s" -msgstr "" +msgstr "Errore generando l'etichetta dinamica; %s" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "" +msgstr "Questo link intelligente non è consentito per questo tipo di documento." #: models.py:88 models.py:100 msgid "Smart link" -msgstr "" +msgstr "Link intelligente" #: models.py:104 msgid "The inclusion is ignored for the first item." @@ -167,11 +167,11 @@ msgstr "L'inserimento viene ignorato per la prima voce." #: models.py:108 msgid "This represents the metadata of all other documents." -msgstr "" +msgstr "Questo rappresenta i metadati degli altri documenti." #: models.py:118 msgid "Expression" -msgstr "" +msgstr "Espressione" #: models.py:121 msgid "Inverts the logic of the operator." @@ -179,7 +179,7 @@ msgstr "Inverti la logica dell'operazione" #: models.py:122 msgid "Negated" -msgstr "" +msgstr "Negato" #: models.py:129 msgid "not" @@ -187,11 +187,11 @@ msgstr "not" #: models.py:134 msgid "Link condition" -msgstr "" +msgstr "Condizione link" #: models.py:135 msgid "Link conditions" -msgstr "" +msgstr "Condizioni link" #: permissions.py:10 msgid "View existing smart links" @@ -217,31 +217,30 @@ msgstr "Interrogazione dei link intelligenti, errore: %s" #: views.py:78 #, python-format msgid "Documents in smart link: %s" -msgstr "" +msgstr "Documenti nel link intelligente: %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Documenti nel link intelligente: \"%(smart_link)s\" è correlato con \"%(document)s\"" #: views.py:97 msgid "Available document types" -msgstr "" +msgstr "Tipi di documento disponibili" #: views.py:99 msgid "Document types enabled" -msgstr "" +msgstr "Tipi documento abilitati" #: views.py:108 #, python-format msgid "Document type for which to enable smart link: %s" -msgstr "" +msgstr "Tipo di documento per il quale attivare collegamento intelligente: %s" #: views.py:173 #, python-format msgid "Smart links for document: %s" -msgstr "" +msgstr "Collegamenti intelligenti per il documento: %s" #: views.py:198 #, python-format @@ -250,13 +249,14 @@ msgstr "Modifica il link intelligente: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" -msgstr "" +msgstr "Cancella collegamento intelligente: %s" #: views.py:222 #, python-format msgid "Conditions for smart link: %s" -msgstr "" +msgstr "Condizioni per il collegamento intelligente: %s" #: views.py:253 #, python-format @@ -269,8 +269,9 @@ msgstr "Modifica condizioni per i link intelligenti" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" -msgstr "" +msgstr "Cancella condizione collegamento intelligente: \"%s\" ?" #~ msgid "Smart link condition: \"%s\" created successfully." #~ msgstr "Smart link condition: \"%s\" created successfully." @@ -376,14 +377,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.mo index 05581ec833f4ba1809c056558252f9625617289b..da52ed42211f4661900f60b3340e0397c673f97a 100644 GIT binary patch delta 1389 zcmYk*&ubKC9LMp;Y`Td_W7_y5+BL}-HU5aHSv935VvWBpt`bbE=tUkk<2udkOqiM2 zrd9S*{RbvWKs^YBw$Ov9Ac!JfYJ2cj=%Jz)4>nK`@#M+(XS0hw>@%;KXZHC%-{-r} z{<8eh%F45j#>TvstLhfDDmD)1lJg#Vxxe2%?1j~`(h7rkGKdY{A3un${t z6t$_tsQ5o1xtm#R#yQNfzPZ7TGJAlkz++T^7ub!jupQgkRt|fRAv1!i$SC&XN&FZu z)y7lQg1@7Rc@q`)HY)BzykDW*&$!7maFw*Qz!Ox4|8Y@8Uf0I6WVx2-UR1&dxhR1# zRDvF=5;L{upHOjTQ5(CCs>D6iyuY!cjQ{6GnY~4QF-sKfa4j-qHlf~cM+Nu_HSYv& z#WUE2S5P~>gPMOAwbKWv`A=~jzC@jYwpQxj$4!p68rX}PFop^cqTWyAZoGy%O#fmJ z&LhXcw2+M!ZbxF94pgPOkOEiF&1O_JHD575rR)5e4WNUg1ywFpU=97lrd_LPQP!*; zJUweS`pMLEX!Uz*VKpV9rhkQ!(+2gAP$RGEPtaK4rc)y{m9Y9(!i{u?uJWsGqH|2D z2W^W6Xv^sO-RrG89mw?W7(Hh_-=6keXCf?4m)#(7l9?$tHv7V0!b`j`;5Kq?;yT6p zNP0Xo)?NGB{@SeA?4Jp2*(*9kbN%$!%;A;;-%mwu91|mblUd)XaZ~VuNiQgw@v@B) z$LHyGPh(R9 z=Um_WHgLwR^%LSayWEA5xHhn-RAz6V7sK-Iw302Rud^rH3pOZC+mbu%1pcWbh4fI< zsW11saq+A-dD=$rix7ull(<2?3a&ZEz<1V06Ru-zP_~n9kp9->_tw8yuLE-y3PH?T rDLR`=t>1XbL^M6At)~~7yK{wVF%E@OQ*1)z@V#=`U8u*;&6$RG!pzYB delta 985 zcmX}q&r1|x9LMp;-O=6EY|AoNb8FPqi%C1Xim=8)T_Q3I=^zxzro*zh%xvo#p4uY1 zRR@Po9)zG@LS2HQQ+OykbPa;SKVYF--8%ICtZrZCnb-Vy=6Sx~XP%wJi{AQfkM+b5 zDcT_IOq(%Ncs<04NQaFXLkD|t0gs`F9ryry@FB)<3oU$w{rCot;1@iEKQV&8aM+l- z`Lq8Z!B+#ku(1ng@D!d$4OBzAn#UN$4LpvUsEOaB3fMt?zl$fZfpLtr@AdCT4l~6m z!Te^1i*X)Y#RGV^`NEh-s0p8=7GoPV@N3k-A8?D+`i>6w>y)L0ws8bMqY`Ui0)JyC zc9XpdNN^ftelx^{D$JugE}#;*r4D!pHP9xi-?RPqAMrHzUonY)QHc)FnVd`#mFNg6 z@pG8MIqb$&tn1(2+kfy9^}##T0N+sWe_$R%q<;|4;z_)Mtgfk`CSF4hv(8B?a35J9 zGelFU7)`9uUZB`|vmytQB#S-MduPieZ{E*MC$TrSaST2Mb}W;8S=!7_~09tp*#`rJ!M@I!fM3$t%7c zZI6Vy(vuUJY1^61IoV)3lI%)nCo+zmadJ*NSd8?==lz>*wdULN{%WCG@`I<5rTA>Y zE3OraZqD|~i*vJq6}=Yt(HlWWY$fD+K@cmBUGQ%6nd?@U?Pb^YD{i$=^Q&dQSXwHW Pi+-izmX$)jGaUK{r~7DE 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 8bf8cf7b07..1c84a40b76 100644 --- a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 # Lucas Weel , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-09 15:56+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -26,11 +26,11 @@ msgstr "Koppeling" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "Label" #: apps.py:62 models.py:25 msgid "Dynamic label" -msgstr "" +msgstr "Dynamisch label" #: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" @@ -42,7 +42,7 @@ msgstr "" #: links.py:14 msgid "Create condition" -msgstr "" +msgstr "Voorwaarde aanmaken" #: links.py:19 links.py:36 msgid "Delete" @@ -54,7 +54,7 @@ msgstr "bewerken" #: links.py:27 msgid "Conditions" -msgstr "" +msgstr "Conditie" #: links.py:32 views.py:183 msgid "Create new smart link" @@ -62,7 +62,7 @@ msgstr "Nieuwe 'smartlink' aanmaken" #: links.py:39 models.py:29 msgid "Document types" -msgstr "" +msgstr "Documentsoorten" #: links.py:47 msgid "Documents" @@ -144,8 +144,8 @@ msgstr "komt overeen met 'reguliere expressie (hoofdletter ongevoelig)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -159,7 +159,7 @@ msgstr "" #: models.py:88 models.py:100 msgid "Smart link" -msgstr "" +msgstr "Slimme link" #: models.py:104 msgid "The inclusion is ignored for the first item." @@ -171,7 +171,7 @@ msgstr "" #: models.py:118 msgid "Expression" -msgstr "" +msgstr "Uitdrukking" #: models.py:121 msgid "Inverts the logic of the operator." @@ -221,13 +221,12 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 msgid "Available document types" -msgstr "" +msgstr "Beschikbare documentsoorten" #: views.py:99 msgid "Document types enabled" @@ -250,6 +249,7 @@ msgstr "'smartlink': %s bewerken." #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,6 +269,7 @@ msgstr "Bewerk 'smartlink' conditie." #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +377,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.mo index 1ca3c85471b77047e226b14b0cd22bb2c93fa0c6..7e338b92e4c6789199b9bb422c470ac4956764b7 100644 GIT binary patch delta 45 zcmeBE>r>lc%gt?QsB2`bU|?irYC742d*S47+)+F}iFxUziRr0U3I#cv{dxAY0RSr>lc%gt?IqHAQXU}$1xXgt}2dm)ccVqSV_VtT5TLP5^t7u?aC19, 2012,2015 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 msgid "Linking" @@ -146,12 +144,9 @@ msgstr "jest w wyrażeniu regularnym (wielkość liter ma znaczenie)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" -"Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Zmienna " -"kontekstowa {{ document }} jest dostępna." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Podaj szablon do wyrenderowania. Użyj domyślnego języka szablonów Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). Zmienna kontekstowa {{ document }} jest dostępna." #: models.py:43 #, python-format @@ -226,8 +221,7 @@ msgstr "Dokumenty w łączu: %s" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "Dokumenty w łączu \"%(smart_link)s\" powiązane z \"%(document)s\"" #: views.py:97 @@ -255,6 +249,7 @@ msgstr "Edytuj łącze: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "Usuń łącze: %s" @@ -274,6 +269,7 @@ msgstr "Edycja warunku łącza" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "Usunąć warunek łącza: \"%s\"?" @@ -381,14 +377,14 @@ msgstr "Usunąć warunek łącza: \"%s\"?" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.mo index e155982050caad2ac30f6463ea39c40109be6c62..d2e09912e28e83b199892eec7a19683b6e04700a 100644 GIT binary patch delta 44 zcmX>ldP;P|7glaVLtP_d1p^~1Q`5=+S(i@U$QH%zlbDxYnwXwyrBJY$ll>qw09Ka{ A?EnA( delta 45 zcmX>ldP;P|7glZq6I~;71w#`nL*vQ+S(ozoB<7`;CZ?xaDHN1UUd$G~nVWq-GXP^n B4_E*I diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po index b234abef01..15ca42fe00 100644 --- a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 @@ -146,8 +145,8 @@ msgstr "contido em expressão regular (insensível a minúsculas/maiúsculas)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -223,8 +222,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -252,6 +250,7 @@ msgstr "Editar Ligação inteligente: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -271,6 +270,7 @@ msgstr "Editar condição de ligação inteligente" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -378,14 +378,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.mo index deac5d6a84ae3eaca84812ae30545439731ee2d2..291998338c397e6b6e10a9fcd5e69b5f7962d144 100644 GIT binary patch literal 5042 zcmbuBU5H&*6@Yhbt#;~9O-%i%)op5$8RPw#Nz=rerp=@?fyhi7l4(Uj%AR}n+}X*w z=iHoq?#v{i=tDt@4^p)h3qHi8)QG+)MFmCVS_B2@gHRFit?HYg7F0z1*7>>TWPVg| zbNBtu&)R#hz1G_6tl#ar?Kwqzkp2PsKW|a$9Q^IA{Lv=gtkixu1>XzLzzOK!y)cD$ z!7sr*@EW`u{s7(%Uxj<&YsLG2z+K$m#mhFl555B~K^fPDcfiYV9zG54fj@_Dhrfrn z!N0=y!N0@ZaQ9nsJq|#A>L`ETgD0S@|2HUl-}6?b-VgUfc|HqKNd-{!I1k?mFF~2- znS#$k8UIx%x&dWh-+}zpFZq*s zehp>bH{b{1Ei5YfXejb+DEcly@yA(s5MF?9gU=VwuR~eyNAOMXCs5}7DU^9%h2O{5 ze}dxsZ!lQH*P+PWjh?}AO(gqT!)2J%xE z_>*(+St$N}8p=AKhqBI>q3Ba@GG6AKEFQ|f_S3~L(nKF=49#rvaVWMG`$@w^S&Yj5 z#YWOZw-)`wbcrL`i<|>#qMw!v+7x|;E_?6Lr9D93OBZ|HN|z=%;1FH*BJJID@q@Gj z^uzRnbU9=)L>=UNyUBTxga7{}7>XGrd z+NEBJlbhz)hhSn&YO8h12eNpz-1bksnzNxzZGoD6HD9ji!&^li!@CLYMtane)^nbj9?Vikqz=3AfLqlbFb_Qb*J-1ubGF7?HsO)hCG%4dG5qGqU^{Fo$RtJg6_@x_JM7z3ORESZR<_Rp&iB^0sR>MKWP2tI zbwlG`y^Wh@soQ*kRd_*c-1ozPV{Z?5pBL`IIDF?7Mco-MnY=Q`I;fG@h`D z#6m|enoB0q^K*;mCeGSHoTQCK-*Z9Zti8*_wbN6)mUA81TZ zH)am$_DtvS;YR!Zb{oOQS-a+B-c54TNA%30PW#BgHf>_T__VQ?82!$osdn|*Vmh= zEaFz|MwUpD*pm+8q}7)_H*C=NtuhO>2I-S0&$gx}7EdqESJs(swkP;@r5uFD5^>rg zgKeZOlAVi=>F%mYyiJckzI3W_w33rWS8URlkGgTdsqW~b%Pt-3-qG1w6KBFevLIU)RN|hBLK>g|citdTI2s^?G0uLk13A&+z10 zOq8XTJ2XbyeO{|2H;5$zkI$UkIX{S_(YM#E%g$8b^6B!g^Zz<^m*g76sMFVe*d=1) zCSPVp;A69F%4>1)0LA01QmE@!y<=0w4rEWYEl46JZ@EOx4or`k%e}KxwnU^{sEf;v zA1+0=ds$Am<8orHn~arPI41d$GK?m#_sKU&Il*R&%eSMPW3DI#;%$AfYL;C{#0POz z1aSEn-YLhCsrp;?xV17sNGgNe|Kg2J#le;-`Ig#b^v$U2%x3FpHJ>^@G~{|>cl31% z2a^>ACMmGR1!d%&t|G4#UDzosOM#udUKxjPY?{Qu@Uqdvepx`++$(vl;Vzq^-jH*U zCy2iIa9l1R9VBu%h}OI&`Twhq*{rx2U0t)`=IX=xbab_L#=<66<*QA_L2f_?yT!y= z%~57t##cpxBDyqUNx2=ttkBZ1woc>zw~SdX_;_tcb@(H}YZyjmnca zNL=4K%$e6K^L+KnFRhI5g!Wab_Cm6gk!a;JpzD@2DQB4~&{MH)-ldL;Rf~g;ZL<^` z>vT(I$f_C1%R!8X`J`%6>rN4E#rEmwM!)2CUuZnscjS2vv8r8fCz=^1%So!b+(EE! z`0PoTaIi%>zmJEQHlHDnSld_SMctr9HS?d|?Xa$k$TPCE$yT)#ow~NFm|Dd{4AQrw Mm-1cLuD6@?-;av3dH?_b delta 1306 zcmYk*Pe_zO7{~F+bkla-byw3gwO32cKWpwPSxbSLl7$HEp^JpruIOgD;ve*2Y{_EmkvdTutOap`uQPfJtP?eiSO}vDaxQt3<12z5w zD$(z_AGffP_{Pnw9&AVb(1i+k3A1nzHE|p@@i;zWn-=jT_suL%zmH-E&Y&vy5*7F@ z9>On3Oq0jpgXqW987@Lx_;DH;V{T#)?;=Go8`ywv(7`QKB86nF@!=g$p-S9?`aOnP z@jRB`0&0PeQS+{QsJ}AZ;DG{c?hO2cHQX2FZzmGLYmP))OfD%lz~<0cX#JzC?uyrsihjoO+zRGz`-pC6 zDy_Ctt(9Iy*S2I@x{{~kac693#)&1z;)yBSo>OWQIVoG^I&bG)rP&duX43w2_1W^= zYpZv1SF+qKZNYH66KacuT5XTJ!rjsu42PU>C=zP1mRD!eop`Z 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 fed816756c..368c5190ce 100644 --- a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po @@ -1,9 +1,10 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Aline Freitas , 2016 # Emerson Soares , 2011 # Roberto Rosario, 2012 # Rogerio Falcone , 2015 @@ -11,20 +12,19 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 msgid "Linking" -msgstr "" +msgstr "Ligações" #: apps.py:55 models.py:18 msgid "Label" @@ -32,7 +32,7 @@ msgstr "Label" #: apps.py:62 models.py:25 msgid "Dynamic label" -msgstr "" +msgstr "Etiqueta dinâmica" #: apps.py:66 apps.py:71 models.py:27 models.py:124 msgid "Enabled" @@ -146,19 +146,18 @@ msgstr "está em expressão regular (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." -msgstr "" +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." +msgstr "Introduza um template para renderizar. Use a linguagem de templates padrão do Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). A variável {{ document }} está disponível. " #: models.py:43 #, python-format msgid "Error generating dynamic label; %s" -msgstr "" +msgstr "Erro gerando etiqueta dinâmica; %s" #: models.py:52 msgid "This smart link is not allowed for the selected document's type." -msgstr "" -"Este link inteligente não é permitido para o tipo de documento selecionado. " +msgstr "Este link inteligente não é permitido para o tipo de documento selecionado. " #: models.py:88 models.py:100 msgid "Smart link" @@ -224,17 +223,16 @@ msgstr "Os documentos em referência inteligente: %s " #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" -msgstr "" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgstr "Os documentos em link inteligente \"%(smart_link)s\" em relação com \"%(document)s\"" #: views.py:97 msgid "Available document types" -msgstr "" +msgstr "Tipos de documentos disponíveis" #: views.py:99 msgid "Document types enabled" -msgstr "" +msgstr "Tipos de documentos habilitados" #: views.py:108 #, python-format @@ -253,8 +251,9 @@ msgstr "Editar Ligação inteligente: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" -msgstr "" +msgstr "Apagar link inteligente: %s" #: views.py:222 #, python-format @@ -272,8 +271,9 @@ msgstr "Editar condição de ligação Inteligente" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" -msgstr "" +msgstr "Apagar condição de link inteligente: %s?" #~ msgid "Smart link condition: \"%s\" created successfully." #~ msgstr "Smart link condition: \"%s\" created successfully." @@ -379,14 +379,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.mo index 6be36a43f5d7fd71c93f58cfaff9dea84125fd22..56b85aa338e5bd1cc7bc6535015be2ed6b401c29 100644 GIT binary patch delta 878 zcmXxiOK1~O6vpx6q7olCXsV$GBn6ER5D6+# zcVY)uZd?h1ySS(nQLv)8a;J+TxKa^>?!=Ys{!gCOC*ZvXhv>GdP4bRKON0@%yOnpWzmq!yf#EdjA^|&=Q;mF^j{* zw;UI%7&!Lt!3k8r2C4|xP!nHAO?(&MQKcssabHg_k3U6^`}fFUKR9j0B~+rlWG{zs zCvL|)@ok)o&DcN>XHhSOR8VIEh;G7OKRLP!*X&1)fI^d&SAe4@hBbHC;=mpo8%NXP`-` zI*Y6wpwu+WHu?ZvyGRSAU7|X7QbRRmr4lHbYO1E)lcy`A|4mt|gvv&ZKkSrJ_2&;1 za(SEfVt@SAnTkgftz@|}RlU%Dok%;yF!T#WFDOJKBYsc{g6{D#f1-M&cBwW~_YYMX z)yOLZ;a;Bk;XW_eAC-#npX9xGHg&wGT&YiAu1xdF#hKF+WAV?_=XgH7kZIJ;p073* KZntk_MxDR0xmoo9 delta 806 zcmXxi&ns+U9LMp;3^R=1KgReu&fF^s!<-qVP9!N7gl46=SE8gWC}lAvV_~6Wp_7&P z11v1A)xGJKmH&XvWTV7JQc79y{*3W7&v`x1Idi_>=lP!JE%-N>xveQYG_(l4h2CCZ zOds}mxX>Q310OMnRbFH2u>)&x2upAV3o(U_IFGfM#wy&$A9#XIc!{OPWK5Pp4>ulA zF9wOi(DY$3Ca@U?QHf?z3tdD4m<)z-4=eE$_5XiZgxA=BS?tDFEW-#78^~{Z87Sd6 zYSR;_z*DHeDZHX8X>^#6_`mLNqQ(3O+wcOlz--=o>|*|mKe3tJwBj&YIEP{Kn=J-) zc#JXpgDUwQYGDDQGBg#a9fYs~N72S4YDYV$Pj`TdcZsURHR}DB{QMnznTG;wM&ERd zflB%tRe>}r@h0*!+gzf!hZG_gG=!>By*uX#WmG2>SrbjoJR>D6>a)2aDx zlqQ#1*?jq%R$iTw@1}#H#>#U|+lkOsPfnTAejPKNfI7FpyXdZXx6YruK2K?^KN=sf z?0&~ixF1E~Kq4Bqt+?&jF}KsVTRFL~y1cQlyyRHxYxBuz_ssXpZS>!`Z~lw(|HY2y E6Yu#-QUCw| 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 f3699cd158..22ca9f229b 100644 --- a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-04-17 09:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:33 msgid "Linking" @@ -27,7 +25,7 @@ msgstr "" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "Etichetă" #: apps.py:62 models.py:25 msgid "Dynamic label" @@ -47,7 +45,7 @@ msgstr "" #: links.py:19 links.py:36 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:23 links.py:43 msgid "Edit" @@ -145,8 +143,8 @@ msgstr "este în expresie regulată (case insensitive)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -222,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -251,6 +248,7 @@ msgstr "Editare legătură inteligentă:% s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,6 +268,7 @@ msgstr "Editați condiție legătură inteligentă" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -377,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.mo index d751434975c36c29ff7798c0f6f648a5a9d83d3d..cc892430f8f2d1a7941dea23e2d7c68262b85cc0 100644 GIT binary patch delta 1115 zcmaLW&r4KM6u|L2zWL?&W74wGw0xNwsSn?bGYaA+nV?0cSgVNeISn#kqvU8Am1v6s zEr?fyixx%gOA{r`A^(7QFL3KxC@3O`s72p1>bAq&_jy0>z31FJ_iJWrXSOT7PZe>J zR!6(&Q7VB8MI4ABO{r$Iuo@p=6~4g3xQc%Kgq663<+y{z_zS)0;ZTEqJcv3TP-;fS zISFv%3^rgN`fz;j{uCbJ`Yx8>BDUdclny^5W2mnf#P3*(zfmSoMQ4&&J<9hzcnr^C znDNyJC-T7!9_=?;|NB0(22cVpJ!GkK1P}N zCLYIcSkCyWf@#VP9gku!N-2j>GM~U0K0@i}BO3SvDWTFsN_AlrrSus*gf}sc4^jHt z#0$8EC-4-ro{XLDRF*;??5Js51Pd-vn#@qmnaV+L@anIizQ?cO~P6v3x`fg zm!OA04<4jbL3G%I2Qi2s`U^S~bgx^7E}nXSM*XtSzMf}(JoA0N&-1+hMPK}@n0{l3 zA=)`wwZoWEoKEpaWF2Eh(8F#F@C;635ogiEhnU7y?86vO;U;$B2Xyfh4&v8?acq9m zIm?B=n8Q4?T*hA1L^qII<{oD8KKA1x>ci`(#9yP{|A^;t7f;|1)boGv7-snE#XOcw zY|Jp7JQr>q-nfhU;0me;Pf-)Ep(cKbJ=}PQ*BF0hSxPufb{8=`w2rD!3$?&?jPNZ6 z_#Ml9-?%J8B^twVoW#?(hE=qviN0YSf8r31b{-^HN4-CTW7xzCxP{ko5BZrCtI*aK zPz#>GSSy;MqrIKSOBmx#e2;o?AN8EefGV01%wP$7Fv6=ig&ZF>PX+9D;P7^JBpItNFgJy%eyB&fD2&{P>M zR#8-1C+X-!8$0Wi?6y`(d>fR_v?HKrX11 xqtK7SS{T@!%xZqRvD9oensYUOxn%?Qw%u^|?U(Ewd&TQ+H$1PS{iHMN{0Au@P9^{V diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po index cf2af204bc..7a6846669d 100644 --- a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2016-03-21 21:10+0000\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-02 04:15+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:33 msgid "Linking" @@ -27,7 +24,7 @@ msgstr "Связывание" #: apps.py:55 models.py:18 msgid "Label" -msgstr "" +msgstr "Надпись" #: apps.py:62 models.py:25 msgid "Dynamic label" @@ -47,7 +44,7 @@ msgstr "" #: links.py:19 links.py:36 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:23 links.py:43 msgid "Edit" @@ -63,7 +60,7 @@ msgstr "Создать новое отношение" #: links.py:39 models.py:29 msgid "Document types" -msgstr "" +msgstr "Типы документов" #: links.py:47 msgid "Documents" @@ -145,8 +142,8 @@ msgstr "В регулярном выражении (без учета регис #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -222,13 +219,12 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 msgid "Available document types" -msgstr "" +msgstr "Доступные типы документов" #: views.py:99 msgid "Document types enabled" @@ -251,6 +247,7 @@ msgstr "Редактировать отношение %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -270,6 +267,7 @@ msgstr "Изменить условие отношения" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -377,14 +375,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.mo index 2a6082ddf5144d9264b7ab0d44b960736d339abb..e620cd432403688ad83e1d1698d6709a36938b95 100644 GIT binary patch delta 185 zcmdnRa-Ajco)F7a1|VPtVi_Pd0b*7l_5orLNC09^AWj5gka#u_UtwfmC3vv1^DX*rIuwDXXfYW zx+IpQS}7PA7@Fw<)ft*A7+6@DT28#vHMxv2ir*(OFTFG|9jKx>CqCG7@_EK=cK@op I#Oy={0OCX>&;S4c delta 130 zcmcc4vWvy>o)F7a1|VPpVi_RT0b*7lwgF-g2moSEAPxlLD~t>b(NMktPy>+5z%VgT zYGR=uw}FYSk-37QiIt)8#8a}|2FAKZh6+Z8R)z)>KXvi@B<7`;CZ?xaDHP|#2YXJg LW{jTvj4=xUo9Y

, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -144,8 +143,8 @@ msgstr "" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "Sửa liên kết thông minh: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,6 +268,7 @@ msgstr "" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.mo index 85098aa6f77c150111fe659b68a8d34f9efde11f..bf81964d9bd319beca9169573f7d0a00659f67c9 100644 GIT binary patch delta 48 zcmew@_*-zpB35ogLtP_d1p^~1Q`5<7S=Ua^VvFMUNz6+xO-xU|JNr$JWQ*Q>gw31@ E0F18>>;M1& diff --git a/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po index ec401f70d4..d607aedd2c 100644 --- a/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 @@ -144,8 +143,8 @@ msgstr "正则表达式(大小写不敏感)" #: models.py:21 models.py:114 msgid "" "Enter a template to render. Use Django's default templating language " -"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The " -"{{ document }} context variable is available." +"(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/). The {{ " +"document }} context variable is available." msgstr "" #: models.py:43 @@ -221,8 +220,7 @@ msgstr "" #: views.py:81 #, python-format -msgid "" -"Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" +msgid "Documents in smart link \"%(smart_link)s\" as related to \"%(document)s\"" msgstr "" #: views.py:97 @@ -250,6 +248,7 @@ msgstr "编辑智能链接: %s" #: views.py:210 #, python-format +#| msgid "Delete smart links" msgid "Delete smart link: %s" msgstr "" @@ -269,6 +268,7 @@ msgstr "编辑智能链接条件" #: views.py:334 #, python-format +#| msgid "Edit smart link condition" msgid "Delete smart link condition: \"%s\"?" msgstr "" @@ -376,14 +376,14 @@ msgstr "" #~ msgstr "What are smart links?" #~ msgid "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." #~ msgstr "" -#~ "Smart links are a set of conditional statements that are used to query " -#~ "the database using the current document the user is accessing as the data " -#~ "source, the results of these queries are a list of documents that relate " -#~ "in some manner to the document being displayed and allow users the " -#~ "ability to jump to and from linked documents very easily." +#~ "Smart links are a set of conditional statements that are used to query the " +#~ "database using the current document the user is accessing as the data " +#~ "source, the results of these queries are a list of documents that relate in " +#~ "some manner to the document being displayed and allow users the ability to " +#~ "jump to and from linked documents very easily." diff --git a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.mo index 078be1bf2e6d32dd8cc9c4018b2bc17695965847..221ad445d127e535cc07d8a39bafc41d0534f59d 100644 GIT binary patch delta 42 ycmX@ka-3zt5^h67T_a-!10yR_(~0X>Pflly;_*q$OD|1KPqk7=ESh|Pu^j*@84hRw delta 42 ycmX@ka-3zt5^e(%T_bY^LlY}Q\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.mo index ce85c43d849bdde913c47f614d996a0b24ed2ef8..e2cd12d3d41d130cb1922eadf7ab2aca9f614698 100644 GIT binary patch delta 42 ycmey){GEBi5^h67T_a-!10yR_(~0ZXP0nJB;_*q$OD|1KPqk7=N}qg~(F6cEEDmx2 delta 42 ycmey){GEBi5^e(%T_bY^LlY}QrI#kAr&=i_rB9AwjGlai(HH\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.mo index 4a937324de746ab8050e7bae00cb7a136b683890..8b747daee398ebf1d70892b008c88f1b632de0da 100644 GIT binary patch delta 45 zcmcc3a+_ts5^h67T_a-!10yR_(~0X(Om1h4;`d3+OD|1KPqk7=Dvoz@ocw^X8USHn B56A!j delta 45 zcmcc3a+_ts5^e(%T_bY^LlY}Q\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/da/LC_MESSAGES/django.mo index bce02dd87d0a9cc01ebaeabea4c28260e9fa48f7..b1e5c87306553309d392ec10c314889967c7b50a 100644 GIT binary patch delta 42 ycmeyw{E2zO5^h67T_a-!10yR_(~0X>Pflly;_*q$OD|1KPqk7=Nt}Fu(Fg!F_YPSA delta 42 ycmeyw{E2zO5^e(%T_bY^LlY}Q\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.mo index 87ecab11b9eb2b130f79d9aae7cff4b5be7d4575..45cb6d6bbc660f69b35fc893a2716a2768431078 100644 GIT binary patch delta 47 zcmcb^dWUs`9V54)p{|j!f`O5hsp(`-#siZjnWFf867$ka6Vp?z6jD;-U0f#@F=YV& DNs|sM delta 47 zcmcb^dWUs`9V54aiLQ~kf}x3(q48u-#smC5iFxUziRr0U3Mr}aF0PX~n4%{aGi3q* DP9Y8+ 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 1dd598a636..45668e68a8 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 @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:04+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.mo index 6a0a4fc8c972390039298c645023e9c24edc7c0b..6bcd9f629a7e30c990fdd2d33100f323088b2afd 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|>BQ-e0Z_~bMF0Q* delta 21 ccmeyx^owai54VAdu93Ndp^25D@x\n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.mo index 60dd1a855972a5ddfca7436ab60d54b288db0041..d4da72101e836629642aeda2de5ae4798d607a60 100644 GIT binary patch delta 44 zcmcb~dXsg79V54)p{|j!f`O5hsp(`-#zm8VFh=qCB<7`;CZ?xaDWn!p4rJ;804^#H A1^@s6 delta 44 zcmcb~dXsg79V54aiLQ~kf}x3(q48u-#zj0niFxUziRr0U3aQ1DUol2c4q|Et04F95 A`~Uy| 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 f849bec9d2..28b9f597cd 100644 --- a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:04+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.mo index 849a73a70f6bbc929311c04faae7d0b625193472..5decc33561e69cd0e97309a52591c10dc6ac7641 100644 GIT binary patch delta 42 ycmbQiGJ|Ep9&STJT_a-!10yR_(}~B|Om1L|;_*q$OD|1KPqk7=OPqX@(H;OHfesk} delta 42 ycmbQiGJ|Ep9&Q5@T_bY^LlY}Q\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.mo index 4cf78f9f34b17c35cf23e5d1af36776a9e93a0bd..cade42fce7f19ee5dfdf59a510261bfcd0429358 100644 GIT binary patch delta 44 zcmey*`k!@!9V54)p{|j!f`O5hsp(`-#>0~(nWA`n67$ka6Vp?z6w-<&7cun$04&rE Ay8r+H delta 44 zcmey*`k!@!9V54aiLQ~kf}x3(q48u-#=|^5iFxUziRr0U3TZ`?xtXFT7c=z$05KK~ Au>b%7 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 b6c794bc20..8dd496115e 100644 --- a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:04+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.mo index 31bc4567914cc984d23936813d32222fc4d2f6fe..576f0cdf0837fe2de007a14690546db8c0a851b4 100644 GIT binary patch delta 42 ycmcc2e3^MdJGY^su92~VfsvJ|>BLFvCi^l*@%SX>rI#kAr&=jwlulm8s0#oipbf(S delta 42 ycmcc2e3^MdJGX&}u93Ndp^25D@x)2%czhD`(n}N5Q>_#-N+;VhMo(VOr~?2cTn)JZ 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 f23da8db96..8ab470b890 100644 --- a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.mo index 61e0fc9f5475bf246f3b7b7792f09869ccf1e5c5..2fac201b33dd1155b36aa4fa41d82fda3ca7c9fb 100644 GIT binary patch delta 42 ycmX@he3p4aJGY^su92~VfsvJ|>BLFvC;Kr*@%SX>rI#kAr&=jwrc7SWs0IKbiw&ay delta 42 ycmX@he3p4aJGX&}u93Ndp^25D@x)2%d3+M{(n}N5Q>_#-QzknwMo(VBs0sig`VE-? 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 3fb4e77904..28aab4d7a8 100644 --- a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.mo index a0b07801ddb6685c423105272d8ece71ce8080f1..9c4fb23e94bdf5907a04bdcf3b25ffa71033e1f9 100644 GIT binary patch delta 447 zcmX|+ze+?ft8+Tw9+=DE5 z0@L6HOd-zHsts$9 zaXUiL<_t(f3uYpf&<-=gL{gBZ;wNsQk|nGwv`bRbVmNH0L-h^W)9P4o<8OET1EGhV zdZASE%M}`w!)kSSy|BCL2Q|OELW5dZsw@SFsU}N}-_|TiV`h{N=?>Fe(FT*Ju}B47 zlQu8%abA?X-jythi(JW3-rFDbyhE5I-9CO5($RyryuQf{qk<~UD90pcm_(3`SaGh% WmPql8phthHtM($&Qc}?WL4E;QPG(F1 delta 184 zcmcb^`h_|4o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlL>5L2vVL%!r{|?9oA}|2y zg#*9D+|-Hh{kaWHbdAgv3{9*IjVF6DO7oiP8d&HW87LT9S{a&7E@Tv!a0~VEQSfv0 zbycu&^>y_0ad32T333e%p1hecl*cDAFTFG|J=IDfvt%+mQ}pC~CLK1v{M=Lp1^`MQ BAzc6f 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 c6a26082a1..c734ff472b 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po @@ -1,34 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2015-08-20 19:15+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-09-24 09:13+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 msgid "Lock manager" -msgstr "" +msgstr "Gestore blocco" #: models.py:14 msgid "Creation datetime" -msgstr "" +msgstr "Data e ora creazione" #: models.py:17 msgid "Timeout" -msgstr "" +msgstr "Timeout" #: models.py:20 msgid "Name" @@ -36,8 +36,8 @@ msgstr "Nome " #: models.py:46 msgid "Lock" -msgstr "" +msgstr "Blocco" #: models.py:47 msgid "Locks" -msgstr "" +msgstr "Blocchi" diff --git a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.mo index c3e432f76e7a9a81c17102e68d6e5ff46ef9c2fc..2c3454e1511d6eb8fde9bb78abfd5f4d6d740506 100644 GIT binary patch delta 285 zcmXZW!AiqG5C-6lrXKVl6;Im3+$EB z;S2Z<9=!W3{%!r?+Zq1DG9Ui8|NeXAuLQCS9q2;~Qds91+Q8sL4PTxRub9UW?`-=U zOw^lT-DLfz7*~>=DlKK~q*F$U3FEn|%0kZE^6~m0ih^#B!fq1B%g@u>L4YD0QZz{V z;aQ06r(C;WTCuG)yRu5?>P2c*Sh{D{PT4tK$Zb>q7niwVrO#)jY4*IVdGj6)Q?~hn fbD5CUPm{Fy@q&{PTf;oZX$wQrl2b*7``Cy-evU)W delta 198 zcmX@l(#jHWPl#nI0}wC)u?!IF05K~N+W;{L1OPD$5C;PBN=62TFeo3S0muadkX{&= zSQNr-V4`beu3%_lWoSI{qO^^vu7QQFk%5AtrIn$nwgC`u`6L#X=!O&}<`w58mgE;% zDY%9D_$c@}`noFExcWMJ`ZzecxCFTd2T!(UOyT!Q%u6p#Oi#5^$jgcM^O-!4F?up5 MlMbt2Vqz`>0HkImP5=M^ 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 0e832b5318..97fbc9977c 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 @@ -1,21 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2015-08-20 19:15+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-09 16:40+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 @@ -24,7 +24,7 @@ msgstr "" #: models.py:14 msgid "Creation datetime" -msgstr "" +msgstr "Aanmaakdatum en tijd" #: models.py:17 msgid "Timeout" diff --git a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.mo index 920f3b37eb3298cbf6efb5d7e04e6e201f312d28..2f721648c0b17e8dcb01c0d3a86cb3b9d86c2a34 100644 GIT binary patch delta 42 ycmZ3>vX*7S5^h67T_a-!10yR_(~0X>Pflly;_*q$OD|1KPqk7g$eDbAF&6+J=MEzP delta 42 ycmZ3>vX*7S5^e(%T_bY^LlY}Q\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.mo index 971e20307f9c45c8bc2d8948207e0fcdc912bfdc..123c54baf499ef921cc35c8da258f1b80996481e 100644 GIT binary patch delta 41 xcmeyy{Ed0S5^h67T_a-!10yR_(~0ZXPtInH;`T|*OD|1KPqk7gn0%Pg7yv1@4i^9b delta 42 ycmeyy{Ed0S5^e(%T_bY^LlY}Q<)qe 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 d68b7a17d2..3be7f3e8ca 100644 --- a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.mo index 28e967ca29817adedb02e074c2989c75cb723a38..d875d26b9c379eb8b06b8fb8cca778c6ab413f9f 100644 GIT binary patch delta 455 zcmX|+y-EW?6oqFs{tKcAT8K<(;fCE!BDh#+6m5b^NF_p??2d6TyAx+OVrOe%6N68n zAihCtO_|0Q&_)YEP{9}Q%o@D#&6#^S_Y8BJx)?lvnMz#~)DV~hB`^jqfvz@~1P>qu zx?mhUfdTLg^!yd*jCasB2>FK2g8M!~hM|v8-FKlQ&^IXdJo1UlGzLFV>?NU)Bvh-e zLC~Mv2!Snmh^#BlVj)B7vzW&s;G`hEDk21!8whZzW7$h4d{&m)%WlSLe$6bb)kMhYrs5)I5nW-rT}{rzzggOoLAs(^ z^M>ELGWI44EUY&0v`g!8IbUpj7>i}ZGs@|aRE+wZdP=a)UFSxUd`+G-xR7LvD;|1+ d`BG^|r8kfM9TC}<_+W_#b*UZvtS(e9fOGBlp-$tcZhs%v1OYh<8cXlZ3=I=PThT*58X z$49}>(brYM#?{x+)5pQl#U;o!IC$~~#uR>^#Ju#<#Pn1vg@TfJr=ZEgOwp6;n6!EQ Q@^e!eLNaqx^Giz@0QemvRsaA1 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 1e528d33ee..b33cfb2628 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 @@ -1,34 +1,34 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" -"PO-Revision-Date: 2015-08-20 19:15+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-04 19:32+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:10 msgid "Lock manager" -msgstr "" +msgstr "Gerenciador de bloqueios" #: models.py:14 msgid "Creation datetime" -msgstr "" +msgstr "Data e hora de criação" #: models.py:17 msgid "Timeout" -msgstr "Timeout" +msgstr "Tempo de expiração" #: models.py:20 msgid "Name" @@ -36,8 +36,8 @@ msgstr "Nome" #: models.py:46 msgid "Lock" -msgstr "" +msgstr "Bloqueio" #: models.py:47 msgid "Locks" -msgstr "" +msgstr "Bloqueios" diff --git a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.mo index 76b5c11e9c9d16e71b4dea5fc30a2f47266bb1fd..4160a281ac79fa0d3e72ec5fb868efde6ba8f612 100644 GIT binary patch delta 45 zcmZ3>vX*7S5^h67T_a-!10yR_(~0YMO|E2&;`d3+OD|1KPqk7g%8w87pL~fi8URnc B4@>|6 delta 45 zcmZ3>vX*7S5^e(%T_bY^LlY}Q\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.mo index 4fcb8a4cb08347d6f2a4101bfec9ffe7c41b077a..b9970521ace43ea26d94296f6105eb91ed1a0ded 100644 GIT binary patch delta 152 zcmey*vWzwGo)F7a1|VPtVi_Pd0b*7l_5orLNC09MAWj5gb|6jzVnrqfhCCq62E-G9 zY(5}89Y`|*Y37NJqU<4=xvBZ3B@;vaxeX0kLbn-#Qef$>|UD$A8=Y>5NHe77J*u($;bIl@U delta 112 zcmZ3+`k%$|o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxj#MWCWEAk7BE6+kv4kY<<| uC^|9EkK4dR*T`JK(8S8nc;fLjJU)qe>7|M3sa6U_rIU*oqbJ{D+zS9DY7`Iv 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 c59a478084..d532d5e137 100644 --- a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po @@ -1,24 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:10 msgid "Lock manager" @@ -30,7 +27,7 @@ msgstr "" #: models.py:17 msgid "Timeout" -msgstr "" +msgstr "Таймаут" #: models.py:20 msgid "Name" diff --git a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.mo index 4919aa85d03c2ee5166a2b958c803a682f657af3..70062d1c09c54f2a06e470cb120945ae50fbcfdc 100644 GIT binary patch delta 45 zcmdnVvXf=P5^h67T_a-!10yR_(~0Z%Os-~(;`d3+OD|1KPqk7g&WR89oP32b6#!Hv B4{ZPd delta 45 zcmdnVvXf=P5^e(%T_bY^LlY}Q\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:10 msgid "Lock manager" diff --git a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.mo index ff3f788e4e5e7f588748d0301743e0cc4bad4c80..7ff23a51ff0a9d8b1f2e64e82ec62dfda9742688 100644 GIT binary patch delta 45 zcmZo*X<(VKgxk_%rGULPiCSPUL1^_^` B4$J@m delta 45 zcmZo*X<(VKgxkPG*T`JK(8S8nc;foK{62|!>7|M3sa6VQnekzMld~D4CtqXK0sueb B4!-~Z 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 ab30940492..710bb23a22 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 @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:20-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-08-20 19:15+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 diff --git a/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/lock_manager/locale/zh_CN/LC_MESSAGES/django.mo index 8c6851b7ef17c515e4044ee1838c84cb5f16f8b0..222bc205e2d131e41a2f7ada65843ae673ad31bb 100644 GIT binary patch delta 45 zcmeyv{D*nM5^h67T_a-!10yR_(~0Z1PcCDO;`d3+OD|1KPqk90%7}ONn|z*87XWE^ B52647 delta 45 zcmeyv{D*nM5^e(%T_bY^LlY}Q\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:10 diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.mo index e4d593729de863c2190bf8b368fb6f9ae56a8631..798d7b15f07efcfc0be0b15a8b19b388efdc4fb2 100644 GIT binary patch delta 42 ycmZ3;x{!6kVQxc1T_a-!10yR_(~0L+Pi|w3;_*q$OD|1KPqk7=ESh|u@elwfg$~sK delta 42 ycmZ3;x{!6kVQvExT_bY^LlY}Q\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:25 msgid "Mailer" diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.mo index 41a8f565eb1a396513a5deced7ccf2f9b2a07666..2046c01dcdf56d1ce0ce94f030310073e0c3f0e4 100644 GIT binary patch delta 45 zcmcb@eT93&OeStaLtP_d1p^~1Q`5;yn3hZqWsc(UNz6+xO-xU?gM B4ln=! delta 45 zcmcb@eT93&OeSsv6I~;71w#`nL*vOyn3nMPB<7`;CZ?xaDI}#&c4v;>yq;N=2>?i_ B4kiEq diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po index 5d562fc798..c79c8d79b6 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Pavlin Koldamov , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 diff --git a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.mo index 7479e0e7726fa70df6018cc59135ce803e1c2631..6621c1115fb95af1dde5656fe6fe0661c31db5fb 100644 GIT binary patch delta 45 zcmbQnI*oP0VQxc1T_a-!10yR_(~0L!OkTzq#qX1tmtLBfo@%9#R2=W*IQc*0bO2R8 B57+\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:25 msgid "Mailer" diff --git a/mayan/apps/mailer/locale/da/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/da/LC_MESSAGES/django.mo index 2add574c51d98ae00edae81ab371041763a8b040..97a0d55e8d7c486269cc2e8c30e1649cf3317761 100644 GIT binary patch delta 42 ycmZ3>vX*7SVQxc1T_a-!10yR_(~0L+Pi|w3;_*q$OD|1KPqk7=Nt}G2(GLJBRt{+Z delta 42 ycmZ3>vX*7SVQvExT_bY^LlY}Q\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 diff --git a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo index ae3b607a735c55985d0f384e812085ec8328f2c7..4680b55b45e5897165cbf31321fb7343c1d85785 100644 GIT binary patch delta 48 zcmbO)IbU+a9X4)5LtP_d1p^~1Q`5=M*$zzJ&K||@lbDxYnwXwyrI3;u@8Y^yfTN!U E0EBK2uK)l5 delta 48 zcmbO)IbU+a9X4(Q6I~;71w#`nL*vQM*$(jgB<7`;CZ?xaDWs&vySPqX#vZ*{kfV\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 @@ -61,11 +60,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Anlagen: {{ document }}\n" -"\n" -" --------\n" -" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "Anlagen: {{ document }}\n\n --------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -74,12 +69,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: " -"{{ link }}\n" -"\n" -"--------\n" -" Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" +msgstr "Um dieses Dokument anzuzeigen klicken Sie bitte auf folgenden Link: {{ link }}\n\n--------\n Diese E-Mail wurde gesendet mit %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" @@ -115,14 +105,11 @@ msgstr "Link für Dokument: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung" +msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenlinkversendung" #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "" -"Vorlage für den Nachrichtenteil des Formulars für die " -"Dokumentenlinkversendung" +msgstr "Vorlage für den Nachrichtenteil des Formulars für die Dokumentenlinkversendung" #: settings.py:24 msgid "Document: {{ document }}" @@ -130,13 +117,11 @@ msgstr "Dokument: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "" -"Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung" +msgstr "Vorlage für die Betreffzeile des Formulars für die Dokumentenversendung" #: settings.py:30 msgid "Template for the document email form body line." -msgstr "" -"Vorlage für den Nachrichtenteil des Formulars für die Dokumentenversendung" +msgstr "Vorlage für den Nachrichtenteil des Formulars für die Dokumentenversendung" #: views.py:56 msgid "Must provide at least one document." diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.mo index 6a0a4fc8c972390039298c645023e9c24edc7c0b..6bcd9f629a7e30c990fdd2d33100f323088b2afd 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|>BQ-e0Z_~bMF0Q* delta 21 ccmeyx^owai54VAdu93Ndp^25D@x\n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo index 3dc483650fb9fd59f2da2d526e6969802a89111c..9388e3b453289b83b62feca34599c28584c97976 100644 GIT binary patch delta 24 fcmca6bxmr+9X4)5LtP_d1p^~1Q`61Q+49){X(k7) delta 24 fcmca6bxmr+9X4(Q6I~;71w#`nL*vcQ+49){X=ewp diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po index 879d79776e..620c494815 100644 --- a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2015 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-05-09 01:36+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 @@ -64,13 +63,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Se adjunta a este correo electrónico es el documento: {{ document }}\n" -"\n" -"\n" -"--------\n" -"Este correo electrónico ha sido enviado desde %(project_title)s " -"(%(project_website)s)" +msgstr "Se adjunta a este correo electrónico es el documento: {{ document }}\n\n\n--------\nEste correo electrónico ha sido enviado desde %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -79,13 +72,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Para acceder a este documento, haga clic en el siguiente enlace: {{ link }}\n" -"\n" -"\n" -"--------\n" -"Este correo electrónico ha sido enviado desde %(project_title)s " -"(%(project_website)s)" +msgstr "Para acceder a este documento, haga clic en el siguiente enlace: {{ link }}\n\n\n--------\nEste correo electrónico ha sido enviado desde %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" @@ -121,15 +108,11 @@ msgstr "Enlace para el documento: {{ documento }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Plantilla para la línea de asunto del correo electrónico para envío de " -"enlace del documento." +msgstr "Plantilla para la línea de asunto del correo electrónico para envío de enlace del documento." #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "" -"Plantilla para el cuerpo del correo electrónico de envío de enlace de " -"documento." +msgstr "Plantilla para el cuerpo del correo electrónico de envío de enlace de documento." #: settings.py:24 msgid "Document: {{ document }}" @@ -137,15 +120,11 @@ msgstr "Documento: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "" -"Plantilla para la línea de sujeto del correo electrónico de envio de " -"documento." +msgstr "Plantilla para la línea de sujeto del correo electrónico de envio de documento." #: settings.py:30 msgid "Template for the document email form body line." -msgstr "" -"Plantilla para la línea de cuerpo del correo electrónico para envío de " -"documento." +msgstr "Plantilla para la línea de cuerpo del correo electrónico para envío de documento." #: views.py:56 msgid "Must provide at least one document." @@ -153,9 +132,7 @@ msgstr "Debe proveer al menos un documento" #: views.py:105 msgid "Successfully queued for delivery via email." -msgstr "" -"Añadido de forma exitosa a la lista de espera para envío de correo " -"electrónico" +msgstr "Añadido de forma exitosa a la lista de espera para envío de correo electrónico" #: views.py:114 msgid "Send" diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.mo index 09249c1f4639307280ddb5024185fa64115dd668..3a0871e7110de62cd0dedcecd1d4d48f9a4767e5 100644 GIT binary patch delta 45 zcmdlbyi0h)GZt<`LtP_d1p^~1Q`5;GSr$!Rz#7HllbDxYnwXwyrI41m`6uf^W&mCi B58MC% delta 45 zcmdlbyi0h)GZt, 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.mo index 92b49c990a2a624d2305fd19f45bf0565145f767..68ac401944ad9c9f1897e7120af5b9d54bd78c29 100644 GIT binary patch delta 45 zcmaDL`9N~R9X4)5LtP_d1p^~1Q`5=M*$z+M&K||%lbDxYnwXwyrI1#%S%BjL3jl2f B519Y} delta 45 zcmaDL`9N~R9X4(Q6I~;71w#`nL*vQM*$(sgB<7`;CZ?xaDWnxmUdbN4S&-vA3jk>M B503x< diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po index 5a1b0b1405..c4d440791c 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 @@ -62,11 +61,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Attaché à ce courriel , voici le - document: {{ document }}\n" -"\n" -" --------\n" -" Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" +msgstr "Attaché à ce courriel , voici le - document: {{ document }}\n\n --------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -75,11 +70,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" -"Pour acceder à ce document cliquer sur le lien suivant: {{ link }}\n" -"\n" -"--------\n" -" Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" +msgstr "Pour acceder à ce document cliquer sur le lien suivant: {{ link }}\n\n--------\n Ce courriel a été envoyé depuis %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.mo index 1f25302393bd792412665b544d8a8d6ab3bce088..3ad8c86f5dd0f9df0ed716f032aaf11b6e411b67 100644 GIT binary patch delta 42 ycmdnWvXy1RVQxc1T_a-!10yR_(~0NSP3~lj;_*q$OD|1KPqk9WD4qO>F&F?X?hc;- delta 42 ycmdnWvXy1RVQvExT_bY^LlY}QrI#kAr&=jwluoW@jGp|MF$e%Go(`1& diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po index db0f4c3c07..478628ce15 100644 --- a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.mo index 1d29bd505acc97169ac49a33617fd08ef65b9bb3..25ce02cbc79eb4c9cc75daece7380e27fecaa7d4 100644 GIT binary patch delta 42 ycmcc3a+_tsU2a1|T_a-!10yR_(}^$EPhP?p#p9EhmtLBfo@%9#nKJn=V;lfNaSu@d delta 42 ycmcc3a+_tsU2X#tT_bY^LlY}Q\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 diff --git a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.mo index 20a3264de4c80154a771cd4d671a6ddac3dd35a6..1ccfce19a49f51d4bc51c7bda7ebcbb968b9f32b 100644 GIT binary patch literal 3197 zcmb`J$!{D*6o(5Ewt)l)O9<(PjDcy9m&E&j6DR23o3Wlj4STx8mg=9 zI8p9^5JEyo+&BPI1SkFh1j>aR5lDywk>J9C6Wln#?^X9K9z(FAl-&JwZLi)|Z+vCX z&JP6|;dz*!8-zH-yb&+7Z^5^~%ivCMafcAQz}LXrKm|Ss8t?(|onrnIa5ws2f_uQP z!F#~(!4miz_z?If_z1Wg!uNwugSUe(gDn4b@MbUqZvj^err_h~p9k?LKE{jn{}kK{ zegpFQpFp! zkp1uj$mjkF?gRe@?*#WjdFCj{c25?pgS=mYd`=8L3cd>-0KWk50KY4E1>|#o2icxK zK>Ufn@ZxiKKp4*x_yqVQ$bNkZE;fjjL8FDK+CDoQXCVaRRMUe@!wn|)$&Y$mf z=)#3kiGre)sL|iHB2!vcDxnmcsA)}`4vciHIio`NhSM%qqbZH_ht}0{svQPL#R(H_ zh#Bb=$pqTyw#s|?SD^>7ayn^|vesCNO-s!Dhl*m>8zQ5~sx&QnU3-SQH99c7A{`jR ziL1p9{-h?3?n)Y3mTsENh0Jf=v)P+s-oT>7S*_CE_lBs$R%Jb4vZ%uh*;1mOrHAw|61 zD%NYtZcuMaSu|9;6LaKv!C=}H$%NrHEhE0Hgxco%G*{$*w|Kkqq}~2G!<&WY3RK6V7`)-`pYP}!Ht#@D{zhS{#6r5Hz)h4M? zU2e#PW@qY4rA5^-)&=#nrK8|P)=GnhsZnX+R3n(SN;<3$_~zAUygK%5Fg6y9KSR~= z+Tp`Nb)s6u!eCLYX_h;~4<$##wAoQyRr7+G#?g*VoIAW$UIo%R4I8 zq|$0*D{VG4P*FRr#D$QGc9qdmeXc&+_sCeeTADVA!%Yhs8y%SI)LBgwbug)7pg z%1yo6I2j!2uj3P&$_BGZXd*nU3!bQa>w$~ZWQG{=okI=-7ujUT1_b7~}^ z{ZlkHdbA{t$FXX`J0$s5rB3>iMwc!Us%|&a5S`5xVzA!6vUwXsK!{FoAHhg&yWmb6 z+c8{YQ4+{lDUNqKS>hzudqa60;wr0qMYpG3ujp=3RLmujw))&TQ`DK6qC9u|c~$O7 z8YrLLG403ZxoG-pJy>}=$`1LdSGfJ<^YcA74oKR%akGQPY^>OD?SE5>j`5uZ0~Zff z;g&W6;ZC$g368PRP?q%0h4v$*^qL|`ZM|E#9as2B`S|rcKuxKOGM{EK{)=g4ND6he5`Vp}<7pLX Y^65wT@c-Z77o7u#c=69nH%wam1NwlGhX4Qo delta 310 zcmew>@tdXoo)F7a1|VPoVi_Q|0b*7ljsap2C;(z!AT9)AP9UxaVr3xi1mfw83=C_5 zG#3!NGC|Y@0BMjpaX=a<%>bkrn1L8%J{Y(pmZT~q=A|fOkT, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2015-08-20 19:16+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-09-24 10:09+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 msgid "Mailer" -msgstr "" +msgstr "Posta" #: apps.py:37 msgid "Date and time" @@ -28,31 +28,31 @@ msgstr "Data e ora" #: apps.py:41 models.py:16 msgid "Message" -msgstr "" +msgstr "Messaggio" #: forms.py:29 msgid "Email address" -msgstr "" +msgstr "Indirizzo email" #: forms.py:30 msgid "Subject" -msgstr "" +msgstr "Oggetto" #: forms.py:32 msgid "Body" -msgstr "" +msgstr "Corpo" #: links.py:14 msgid "Email document" -msgstr "" +msgstr "Documento email" #: links.py:18 msgid "Email link" -msgstr "" +msgstr "Link email" #: links.py:22 views.py:31 msgid "Document mailing error log" -msgstr "" +msgstr "Log errori mailing documento" #: literals.py:7 #, python-format @@ -61,7 +61,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" +msgstr "Allegato a questa mail è il documento: {{ document }}\n\n --------\nQuesta mail è stata inviata da %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -70,7 +70,7 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" +msgstr "Per accedere al documento fai click sul seguente link: {{ link }}\n\n--------\nQuesta mail è stata inviata da %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" @@ -78,51 +78,51 @@ msgstr "Appuntamento " #: models.py:22 msgid "Log entry" -msgstr "" +msgstr "Elemento log" #: models.py:23 msgid "Log entries" -msgstr "" +msgstr "Elementi log" #: permissions.py:7 settings.py:11 msgid "Mailing" -msgstr "" +msgstr "Mailing" #: permissions.py:10 msgid "Send document link via email" -msgstr "" +msgstr "Invia il link al documento via email" #: permissions.py:13 msgid "Send document via email" -msgstr "" +msgstr "Invia il documento via mail" #: permissions.py:16 msgid "View document mailing error log" -msgstr "" +msgstr "Vedi i log di errore del mailing documenti" #: settings.py:14 msgid "Link for document: {{ document }}" -msgstr "" +msgstr "Link per il documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" +msgstr "Template per l'oggetto del modulo e-mail per l'invio del collegamento al documento." #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "" +msgstr "Template per il corpo del modulo e-mail per l'invio del collegamento al documento." #: settings.py:24 msgid "Document: {{ document }}" -msgstr "" +msgstr "Documento: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "" +msgstr "Template per l'oggetto del modulo e-mail per l'invio documento." #: settings.py:30 msgid "Template for the document email form body line." -msgstr "" +msgstr "Template per il corpo del modulo e-mail per l'invio documento." #: views.py:56 msgid "Must provide at least one document." @@ -130,28 +130,28 @@ msgstr "Fornire almeno un documento " #: views.py:105 msgid "Successfully queued for delivery via email." -msgstr "" +msgstr "Messo in coda per il recapito via email." #: views.py:114 msgid "Send" -msgstr "" +msgstr "Invia" #: views.py:120 #, python-format msgid "Email document: %s" -msgstr "" +msgstr "Email documento: %s" #: views.py:122 #, python-format msgid "Email link for document: %s" -msgstr "" +msgstr "Email link per il documento: %s" #: views.py:125 #, python-format msgid "Email documents: %s" -msgstr "" +msgstr "Email documenti: %s" #: views.py:127 #, python-format msgid "Email links for documents: %s" -msgstr "" +msgstr "Email link per i documenti: %s" diff --git a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.mo index 7fdab9fb0e0f6e7113a99eaee74ef8539bdf21c6..426a200b38c3dfb03709dcc732dd4d7f4367a47c 100644 GIT binary patch literal 1828 zcmZ{k&u<(x6vqt|(k{?K`6(#k6$DCD&Hf5O(WC*CW-C=>+o;)aLR9XIch|{`z4drD zU8;%$SHumeR}d%896537AHbDf5&Qw1`M#OSB-sdSJs&^&+5Y<3Z=YN|^MgQn1N9Q> zAE@u5e)kkUC}*D*;tY5Wd=Weko&zs|Z-O6I{hxy8VfVp{;FsVlpamP?x8U30_uxC= zFW_bHG59?A56J8O3qA*mXM|V)7Qpwx3n1%Q23hAS$eMRS_DjJlU=IEU?LUI-|JAdl z?x^BDkad3p^1hG23*gTn>-`mc4SWo;?k6DY{Tn230pi{R7eUthdBt52KXC^i)-wc` zKm)ShBaq|z6ZjVRd)5CZcop_vAcveabDUp5<-*!Hu3UIsE-$09c1#hkqO#7zf@2r^ zvCZc|IE(vWo6q+;>RD7Ar-&aQUgFP&jb~z0dPUO2{m0mNki-Eo#x!K6NBXr(iGdy@|@sC9DJc%rmYF7FK5zFZ?nJC zxUDAE`JkVTbR2BtqbwNMkQ&>!2EjF_q=$dNw;EEn-T64^bb{_OwY%ZUO3?nO-G*au zTTL~ud%~|BbXTd<4VPE0v{4#ch(j=N(qxJB)`irYLhPQQ9Vrvf!N01?o~-KlY{ao> zMmGHfv&|?+e1n0KX-J#7kH)lkQ~9xS3Eo?_M2lnZCt<5~aB$G{ypJBL`#ihlY$lzy zu9fn!0~M!P3zLckTPC@4bE~z~=-=q~jsnzawj0;1@wo3`Fq`1?UfuVtNg}mbqi8H$ zru_Qu;Cirnq~JtWm$%t>|J`rpI~IC_%vO7x0${o3a3GCNNCD7+F*x3U+{^H_7A zruI~F)sFkw$>D0HBERP5olY=qrWVfGrP^e;oQyj4sYv2U z, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2015-08-20 19:16+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-10-28 12:35+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 msgid "Mailer" -msgstr "" +msgstr "Mailer" #: apps.py:37 msgid "Date and time" -msgstr "" +msgstr "Datum en tijd" #: apps.py:41 models.py:16 msgid "Message" -msgstr "" +msgstr "Bericht" #: forms.py:29 msgid "Email address" -msgstr "" +msgstr "E-mailadres" #: forms.py:30 msgid "Subject" -msgstr "" +msgstr "Onderwerp" #: forms.py:32 msgid "Body" -msgstr "" +msgstr "Body" #: links.py:14 msgid "Email document" -msgstr "" +msgstr "E-mail document" #: links.py:18 msgid "Email link" -msgstr "" +msgstr "E-mail lin" #: links.py:22 views.py:31 msgid "Document mailing error log" @@ -78,11 +78,11 @@ msgstr "Datum en tijd" #: models.py:22 msgid "Log entry" -msgstr "" +msgstr "Loginvoer" #: models.py:23 msgid "Log entries" -msgstr "" +msgstr "Loginvoer" #: permissions.py:7 settings.py:11 msgid "Mailing" @@ -90,11 +90,11 @@ msgstr "" #: permissions.py:10 msgid "Send document link via email" -msgstr "" +msgstr "Verzend documentlink via e-mail" #: permissions.py:13 msgid "Send document via email" -msgstr "" +msgstr "Verzend document via e-mai" #: permissions.py:16 msgid "View document mailing error log" @@ -102,7 +102,7 @@ msgstr "" #: settings.py:14 msgid "Link for document: {{ document }}" -msgstr "" +msgstr "Link voor document: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." @@ -114,7 +114,7 @@ msgstr "" #: settings.py:24 msgid "Document: {{ document }}" -msgstr "" +msgstr "Document: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." @@ -130,28 +130,28 @@ msgstr "U dient minstens 1 document aan te geven." #: views.py:105 msgid "Successfully queued for delivery via email." -msgstr "" +msgstr "Succesvol in de wachtrij geplaatst voor levering via e-mail." #: views.py:114 msgid "Send" -msgstr "" +msgstr "Verzenden" #: views.py:120 #, python-format msgid "Email document: %s" -msgstr "" +msgstr "E-mail document: %s" #: views.py:122 #, python-format msgid "Email link for document: %s" -msgstr "" +msgstr "E-mail link voor document: %s" #: views.py:125 #, python-format msgid "Email documents: %s" -msgstr "" +msgstr "E-mail documenten: %s" #: views.py:127 #, python-format msgid "Email links for documents: %s" -msgstr "" +msgstr "E-mail links voor documenten: %s" diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.mo index 9078b6c873f0d7b18647ae49a1b0a9b447320ecf..1fb73eb45ee66804d0b4ee60db9643d036e2a6fe 100644 GIT binary patch delta 264 zcmWm7u}cC06vy#*+1-hE6`mypQKv3B2%aLrO_DCc(JXEf$3aCn*wo-6giXTz1%iuX z++EWii|3f)5vr6= zuz&@u;3?jsfga|uj~Doe*Eq#9Tw)Htbh(!*A?CoymUV+WETf&}8FsLZJuKn}+PJ{~ z-UdsUL~Es=F&wAXXxjCL+iHcE>Ro2+KZOtKTll9AOmFxSybc53wMWlUSBnq!uP`MZ delta 266 zcmWm4u}cDR7{>8e>*q;oqNyl|UI&2=f|elO6o!*>bJTPk#~B>a($wH)2oAyh2|, 2015 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:07+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:25 msgid "Mailer" diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.mo index 175bbb7aad12ec583964bab0f330212b6e64683d..f1f05abb0b1d5e4e2af96f992960a60f1345b5f3 100644 GIT binary patch delta 44 zcmeyt^@D3eD-*Y&p{|j!f`O5hsp;eiOzS86Fh_CwB<7`;CZ?xaDHLp8!hD4h070q_ AnE(I) delta 45 zcmeyt^@D3eD-*YYiLQ~kf}x3(q4DGiOzU}k67$ka6Vp?z6becv+c8IPUdDWh5dc!8 B4+H=J diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index 62d98edb8c..f419ceacc2 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:25 @@ -106,9 +105,7 @@ msgstr "Hiperligação para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Modelo para a linha do assunto do formulário de mensagem da hiperligação de " -"documento." +msgstr "Modelo para a linha do assunto do formulário de mensagem da hiperligação de documento." #: settings.py:20 msgid "Template for the document link email form body line." diff --git a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.mo index 108fef086f439a5bedbacbb61740f372ae4be89e..57b92419dfdc6fbd4f977e02fe13cb2b014ce303 100644 GIT binary patch literal 3295 zcmb`JO>7%Q6vqcBUoPdNd>2X|f}%uaZO62r) zX;q11#Q|~Q!~sx2m5@N<)?-mF<-&oUKmv&i+&OVU;{RsXcH&SqLX5Kh?aa=+dGF18 zZ}RKz9Uluc!t*RYcL;HSc_)6*Zh)7;@4+45(p^IA0^b7f2Nk#n)ZkO#2l@9a;DhLY z3+@K5gO7qY!2M>uw<`;52v;?16{DFTsz%U%-7}f=#c%7axM}qyPGSLg16Q z0kVESLoqXJZFJk<1&ac7!=>G_^zy1PQ&Q3V%A#fk~ zFjxYyl{f*u1kQu(pB~8m=!5KsPe8W+8h8x64!#EdopTySoI(E*I1kkTsmM2Sc6@Hum1e{g#O57hDca-ZXh zb!Pk7*9Z;Y9>;GUj=s<5%V+SM?`3f$W}K7Fjta?Xa-GPM>dGi4yts~{P&d=AN?esL zUL1Dl(xpOyg1i-|FVA{VPkOB17^zFM}C!{DTt z)!~|$lTMLLpiR_OSucCb^&nO*O4_81(S~B(7IU{yQPjL4G7OEfHt!AW8S7SQ|M(2M zVGKK-&sXp(wXpR-(%3Y+>0>5jVe6XB-V_TO7A4L^$`0SxL>;y&;{lUJ9cIY367|$N zf=^eX5WaF0D~SP}j83a4POBvJKSMpqYrYc6?10BUZWvFO`LM+4wAsXltu&6;=)F{> z2oZ0$ilY@})@Zn-C>pBUi}~bu!p5-4g9*c3TE_XZ5^9_CZKlX=mw3CfpxypHWQaL&P@7y>Wss89Bx8}fNmSMqs7@Sqc zMmnidU9QQ5YIF6|g(cO~#sziTj>2FzZQG!st5jHgvk{y$N;=FBIPtLDO7-BO17)*2oJ{JV_HB=X%vrso(Dx z9d8n~)G7-o8EvJBv?+Dj=0JsATZ(gmrJg%CyHuJi)aUE9k$0ww<-$pwIAmSWSnI)b zr&e7FVH_n#so9anDmQ(maVj`6n#Y^AlnH7{Q-?VDDjivl+)(!_`MnB@acX27oI=#2 z03rU|*N0zT<2rFR%yHC~ZTLgq!N zAjrv36ApXZRrjPeJgmrs3x&a)&EE!IpRqPgoE9@}=*q!@{Gs)) zRwG>h>z_feMI^A^wx{4p?+=cv%owkHQPg$Fdisx&mFf63O^zj2E04*|i--E$a=pxS z+aQ4z8Ek&L^=wMMKi>msy#6_A!Uka*)zMpBcq^;6YIPeyMX|_1DEa!7W<0NPhu}7) zg#9)MXNiB8+G&J>iCpr*ic4fH&HXAP zUXVC(tBS+{At4Sqzzqow92X((95^6xK>QILIPm?=%Y*h_rXWd{}4O_-U6QhkH8Z6 z9r!%>1Nb8N8+aBJ_XzPI@Dg|*SO(957ePMv3dnk01)l-m2U+eGI0JqPR=^*@I`{`T z2hL#eJoq;F8Ep9kychlX)A@OeAnUabvh6L9_0`~`;0GYvceCJ^Alvml_%ir&!9PLv z*I6jV^RI!d-xV}dU>k&p_y{})-UQj6Z$NzFCp52szkrv))A#3gG(hejfE(bqU=fnc zFRbfBsKfFYe)t@Y!BePg>#$&{c)aLv4B0OBCELw~V)zxSL9!pWOijX{fBcV7ac!r(;D_c zupR|(D(hmSLu$%Hsj0Er+%9dYzOg=Nx^5f=%W2mIEfZ2{^YvD+VwLoe5BO4sRIk=9 z2GzNsK2No|uyz6e)hYyoEwvZ(zQ^P)1oax#YhiVMrixP9KwN{CmD<6%#)hXfC>HDk8Tb1e22_a=8rRI9GG4@HVTrI5_?Quhc)?pt8dv)L|xC^mf zpw6zePWi<*T5G|ju^cP0qioR79TVX`hjghO`_g8TTA2iExGH!Yx}SC3Vts+~-^D3S zm#H?rP!cP~_Kk?7$6cmfW2N9`mUu+077rZ}nRrVL9Vx2@M~3ij8bS67@>DQ<{6^%% zEHD}?-g_qhcN1AM!Ga|2%E8g#3nQ}2H9CW+FRi5UhMXAaWI`L9AhP99`X3Eja#@a$ zk#wwJVvr+>T(PS5vRA29N7-5GtHcm;qH(j7_QqS5MML8~+XDRNu3>g8K)CUw3ZG@7 z6LZ7KCFfG@4W|!e59}amEly-^1mcBUrn)ju9@%zf(KHdOHEHH7Yq2ZYq7DZ, 2016 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:07+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-17 22:45+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:25 msgid "Mailer" -msgstr "" +msgstr "Envio de emails" #: apps.py:37 msgid "Date and time" -msgstr "data e hora" +msgstr "Data e hora" #: apps.py:41 models.py:16 msgid "Message" -msgstr "" +msgstr "Mensagem" #: forms.py:29 msgid "Email address" @@ -45,15 +45,15 @@ msgstr "Corpo" #: links.py:14 msgid "Email document" -msgstr "Email documento" +msgstr "Documento do e-mail" #: links.py:18 msgid "Email link" -msgstr "Email de ligação" +msgstr "Ligação do e-mail" #: links.py:22 views.py:31 msgid "Document mailing error log" -msgstr "" +msgstr "Registro de erro de envio" #: literals.py:7 #, python-format @@ -62,7 +62,7 @@ msgid "" "\n" " --------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" +msgstr "Se anexa a este documento de e-mail: {{ document }}\n--------\nEste e-mail foi enviado por %(project_title)s (%(project_website)s)" #: literals.py:13 #, python-format @@ -71,15 +71,15 @@ msgid "" "\n" "--------\n" " This email has been sent from %(project_title)s (%(project_website)s)" -msgstr "" +msgstr "Para acessar este documento clique na ligação a seguir: {{ link }}\n--------\nEste email foi enviado por %(project_title)s (%(project_website)s)" #: models.py:13 msgid "Date time" -msgstr "hora, data" +msgstr "Data e hora" #: models.py:22 msgid "Log entry" -msgstr "" +msgstr "Entrada de registro" #: models.py:23 msgid "Log entries" @@ -87,7 +87,7 @@ msgstr "As entradas de log" #: permissions.py:7 settings.py:11 msgid "Mailing" -msgstr "Mailing" +msgstr "Envio de e-mails" #: permissions.py:10 msgid "Send document link via email" @@ -99,7 +99,7 @@ msgstr "Enviar documento por e-mail" #: permissions.py:16 msgid "View document mailing error log" -msgstr "" +msgstr "Visualizar registro de erros de envio de e-mails" #: settings.py:14 msgid "Link for document: {{ document }}" @@ -107,12 +107,11 @@ msgstr "Link para o documento: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." -msgstr "" -"Template para a linha de formulário electrónico Assunto link do documento." +msgstr "Modelo para a linha de assunto do e-mail para envio do link do documento." #: settings.py:20 msgid "Template for the document link email form body line." -msgstr "Modelo para o documento, linha de corpo formulário de e-mail." +msgstr "Modelo para a linha do corpo do formulário do e-mail para envio do link do documento" #: settings.py:24 msgid "Document: {{ document }}" @@ -120,19 +119,19 @@ msgstr "Documento: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." -msgstr "Modelo para o documento, linha de assuntos e-mail." +msgstr "Modelo para a linha de assunto do e-mail de envio de documento." #: settings.py:30 msgid "Template for the document email form body line." -msgstr "Modelo para o documento, linha de corpo formulário de e-mail." +msgstr "Modelo para a linha de corpo do e-mail para envio de documento." #: views.py:56 msgid "Must provide at least one document." -msgstr "Deve fornecer, pelo menos, um documento." +msgstr "Deve fornecer pelo menos um documento." #: views.py:105 msgid "Successfully queued for delivery via email." -msgstr "Sucesso da Fila para a entrega via e-mail." +msgstr "Agregado com êxito à lista de espera para envio de e-mail." #: views.py:114 msgid "Send" @@ -146,7 +145,7 @@ msgstr "E-mail de documentos: %s" #: views.py:122 #, python-format msgid "Email link for document: %s" -msgstr "link de E-mail para documento: %s " +msgstr "link de e-mail para documento: %s " #: views.py:125 #, python-format @@ -156,4 +155,4 @@ msgstr "E-mail de documentos: %s" #: views.py:127 #, python-format msgid "Email links for documents: %s" -msgstr "link de E-mail para documento: %s " +msgstr "link de e-mail para documento: %s " diff --git a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.mo index 358120ab5eed66c5319c4a3509a9bed1fd50f6ad..3a0d42b05603328ef819a0e4b063f129ddbd5cba 100644 GIT binary patch delta 170 zcmeysGMzQ+o)F7a1|VPtVi_Pd0b*7l_5orLNC09^AWj5gWgyN5;){$74E;cw2Z$4y z7#K8wbRLif3NrvHuvtI~0$dVHQWZ)vb5kb<6muII>KYj<7#LZZnoc~oYw`@nD1M*B my!6t<^i(T_qWt(E|H&U2!+3yt5*1F&%v8uPN}TM*qy+$JO&@ar delta 131 zcmbQv`hg|jo)F7a1|VPpVi_RT0b*7lwgF-g2moSbAPxlLi;N5mr9fH(h~0r2fLyRX zAO!~#vx>P5OmvOR6%0+R42>tg*v0RYn3rCfn4W5-P?R4Z\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:25 msgid "Mailer" @@ -75,7 +73,7 @@ msgstr "" #: models.py:13 msgid "Date time" -msgstr "" +msgstr "Data și ora" #: models.py:22 msgid "Log entry" diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.mo index b815247086792c2078bf3c1087bed6b7851356db..5bd5e1c07b9938806297f9e22da082b72cb8a14d 100644 GIT binary patch literal 2165 zcma)*+fN)-9LJA}x2;!<)@wYCu_-CDJF`Ho149!EjZIi3fQ|OWOm`03v9mMlnHlJ& zZBihnHDKBYFHc^o&rJY9k;_&S_08l=;xqq8-~9e&mt6wYGRfJ`IluEezsvWW-D+?9 zlHq#}<5i4hjMp%RAHWa3-@rETckoH@FYs~jAMj;x3w#m0+t_b^kg-EpbMOE-0FwW^ z;3MD%;G^J2;2U5Gr1*0n<-Z9Y1aE`n_a}H1{2P27ybDr}mmXs5d8|7hX6yxUpurEp zVXP}42RFe^a0|?X2T;T-V1I*W!49k^!FKR_a0L9Rv2H^VXR$sAz5`0|F>oC$fqyjY zoiIWI_5=p?L$Oe1s_WC>y*{*%#@gN^eMvKv%AUe_27^A7()==*k)BA)o+ax*;8fY5 z9SLsx4v*ZjsITg?pct2hAMvv7dahsMLdrmLFDS9W#+J!1UE+Yx;7V7)UM4P_W0b#q8PEUxL8EOiP-b1{F7M3!l~CTJab>o<37+SuI>v^-MN7K7?9gfaRg`rlzMpn<94EzY!tBqGHXeJUDqg=(a zUB8zX&)YH-k@f!gDeZX6k1|dOsSWwXz`>g{`SEjZ)GXHIGR};6v9vwyR3OWt$^A;Y z46W{7UY}Y={5K8VvJ8IsFsG@0$TAFmg6kaaSod4`?X5nmo2Karz0b(=%a`j%`i<@m z95EV4EK8@Y)UV&_X&ryNqiIK6q}k5dXCcA~o=1SLj@}GYKd2S8u4-J}QLD*xGOsq& z0#je8g=9u8aJ9)0sCBMt$#u1=7FA8H(PBp3!QO&eQfmm7 ze2!!*YAu<8v4$g?`2CfV*OF^6&QT7WOlDEXirP$O_WU>1O|?uFCDZ$fb_+etA?F%3 zg9^D?zF+*WQEe&)HUD#~HPWTIm(1_kyS=+LByP1v;y_*W%+xKQrWTXWs6~ji!qhjI zlIc_YF2l5eD}e|oTm3?Jk<8QJw2#RR4%a!zoBD3y+yrL%QYEty7{X+REX z8sa3g_ZBC;nET00TjOhKOrX_k_*Wg0W lbD1s#SBsADZuk4zpwo9aPL)G&sC0GLtx}5rdCoiD?Y~HHY5M>G delta 273 zcmew=Fq5tRo)F7a1|VPtVi_Pd0b*7l_5orLNC09^AWj5gWgyN5VnrqfhJGL|2E-eI z>;NEr0!T9gX&?nQ3rInLOJYf?LP=(BDuZunafw1fQGQuwN~%I)i9$|lV)5i^CV|P4 z%znuRCb~xE3Wg?DhQ_)ECI$vv0sgu{sb!hPnfZCTATz8Kj0_A-bqy?ZjSLhFEv*dA zv<-lO%O|n8L^q@;F|Rl$u_V99O2IAE$49}>(brYM#?{x+)5pQl#U;o!IM{CTZsrgk gpTxZM(!_M2aYdz*`B\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-07-13 21:46+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:25 msgid "Mailer" -msgstr "" +msgstr "Электронный почтальон" #: apps.py:37 msgid "Date and time" -msgstr "" +msgstr "Дата и время" #: apps.py:41 models.py:16 msgid "Message" -msgstr "" +msgstr "Сообщение" #: forms.py:29 msgid "Email address" -msgstr "" +msgstr "Адрес электронной почты" #: forms.py:30 msgid "Subject" -msgstr "" +msgstr "Тема" #: forms.py:32 msgid "Body" -msgstr "" +msgstr "Тело письма" #: links.py:14 msgid "Email document" @@ -54,7 +52,7 @@ msgstr "" #: links.py:22 views.py:31 msgid "Document mailing error log" -msgstr "" +msgstr "Журнал ошибок отправки электронной почты" #: literals.py:7 #, python-format @@ -80,11 +78,11 @@ msgstr "Дата и время" #: models.py:22 msgid "Log entry" -msgstr "" +msgstr "Запись журнала" #: models.py:23 msgid "Log entries" -msgstr "" +msgstr "Записи журнала" #: permissions.py:7 settings.py:11 msgid "Mailing" @@ -92,19 +90,19 @@ msgstr "" #: permissions.py:10 msgid "Send document link via email" -msgstr "" +msgstr "Отослать ссылку на документ по электронной почте" #: permissions.py:13 msgid "Send document via email" -msgstr "" +msgstr "Отослать документ по электронной почте" #: permissions.py:16 msgid "View document mailing error log" -msgstr "" +msgstr "Просмотр журнала ошибок отправки почты" #: settings.py:14 msgid "Link for document: {{ document }}" -msgstr "" +msgstr "Ссылка на документ: {{ document }}" #: settings.py:15 msgid "Template for the document link email form subject line." @@ -116,7 +114,7 @@ msgstr "" #: settings.py:24 msgid "Document: {{ document }}" -msgstr "" +msgstr "Документ: {{ document }}" #: settings.py:25 msgid "Template for the document email form subject line." @@ -132,11 +130,11 @@ msgstr "Необходимо указатьть хотя бы один доку #: views.py:105 msgid "Successfully queued for delivery via email." -msgstr "" +msgstr "Успешно добавлено в очередь доставки электронной почты." #: views.py:114 msgid "Send" -msgstr "" +msgstr "Отправить" #: views.py:120 #, python-format diff --git a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.mo index 7f361f82422472160f4a442c5170b41adf1d0574..7947303cfc8fbdc70a1094a396a537f34037a13f 100644 GIT binary patch delta 45 zcmeyt@`Gi\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:25 msgid "Mailer" diff --git a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.mo index 389a7422ee51f5bbd3c5d3f7f05ac685f69fd48e..58c2f067873cfe998825b5708745b173350fe802 100644 GIT binary patch delta 45 zcmX@fa*}1jVQxc1T_a-!10yR_(~0NyPM*ye#qX1tmtLBfo@%8~mKh)BH~9-=C;(*| B5Ci}K delta 45 zcmX@fa*}1jVQvExT_bY^LlY}Q\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 diff --git a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.mo index 9a8565540ec735bcfa3d3b3bd1c960b3cfef4fd5..d8ab2ea206307a30c726de7ffa8be0ad798fd0b2 100644 GIT binary patch delta 45 zcmZ3>vX*7SVQxc1T_a-!10yR_(~0M{PoByc#qX1tmtLBfo@%8~l@agkH~Af-JpftU B50n4^ delta 45 zcmZ3>vX*7SVQvExT_bY^LlY}QSX~p8THC4ggm> B4~GB% diff --git a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po index b18141236c..68d6790c07 100644 --- a/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-08-20 19:16+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:25 diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.mo index b54f06132b28a76df3417e58ab754b03f5abb19f..6f20d3280aab42b163f24bdddc9c5ee4f820dcc8 100644 GIT binary patch delta 85 zcmeAW>k!+($!ct9sB2`bU|?irYN~5sVqm}(;IA8$T9#RynV+ZYl30>zrC?-WXr^mu nplf8IU|?=#Y&zM7wQ}+y)+ipI#Ju#<#B`vN#G=j8Y;Rcrtv?r? delta 85 zcmeAW>k!+($!ct1qHAQXU}$1xXsl~sVqm}(;IA8$T9#RynV+ZYl30>zrC?-WXr^mm ntZQVbU}R`zU_9A|wUWmtF)zI|F&!wKSTuPHYxHIrwl^#Qr+*iP diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po index 2afac07b6d..f55324a8bc 100644 --- a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+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 bc73bbff7d94a3595dbed6cd64e3135b47b9f1a7..8fa341dd1538121795bddc028205ddc473357ee4 100644 GIT binary patch delta 85 zcmbQqF_UA%Nk(HsLtP_d1p^~1Q&U|769WUT0Ds+})UwRt%=|oEm&B4(D+MD1Lo;1N o16?Bv1p{*{W7Elh7;7fCGDY$DB<7`;CZ+?GB&Bb@$7Ib20QlV)-T(jq delta 85 zcmbQqF_UA%Nk(G>6I~;71w#`nLt|Y769WUT0Ds+})UwRt%=|oEm&B4(D+MD1Lo;0i oV_hRd1tUW%1LMhm7;AWZ67$ka6VrjxN$HcznW8t}XR=}h0QNN)#sB~S diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po index 04b8907be7..6fc0b44d0c 100644 --- a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/bs_BA/LC_MESSAGES/django.mo index 6f18c3a6ee35fafcfb5ce2fcac12af130359fdc2..0706344f25d74a4843231400ea254edd7b5b72e6 100644 GIT binary patch delta 88 zcmbOvG)ZU!C#$icp{|j!f`O5hsj04kiGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6s rfv%B-f`Pe}vFT(R)@hR;u}1OxB<7`;CZ+?GBo)UyIc~OQyUqjv|HT;9 delta 88 zcmbOvG)ZU!C#$i6iLQ~kf}x3(p|P%kiGcxEfWK}~YFTD+W`3ToOJYf?m4cChp_#6M rv96J!f{~$>f$?M;)@l4ciFxUziRnP;q~drd$H^C2qc_{IU1I_O_DmSM 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 fc7032eaf6..e3e01b024c 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+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/da/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.mo index 385a77f281af2b001145805328fd055c48c0349d..6662d5afe8c3de15b14e31a75ef1b361e6a1d7b9 100644 GIT binary patch delta 61 zcmX@iahPL+J`=a0p{|j!f`O5hsp(`ZCRuJn16?Bv1p{*{W7Ek=OqG*gFh%kBB<7`; RCZ?xaDWoKBc4TH^1OVk=5Jdn0 delta 61 zcmX@iahPL+J`=ZriLQ~kf}x3(q48uZCRuI+V_hRd1tUW%1LMg_OqD!7iFxUziRr0U R3Mq+`Z!tx0c4B5^1OVMx5G?=z diff --git a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po index 8f1bdb3790..de0dec79b7 100644 --- a/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/da/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" diff --git a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.mo index 9fb51e65da3d37033c1a2434dd004abbb5f00ad3..10e9d47bae7cc1b2b2a6042247931528b20e8b24 100644 GIT binary patch delta 2075 zcmYk+Z)jUp7{~F`uG)WVyEa|dcHO*9Ti0$)mZWQEvbD~(QPcIGwX&(xdAo#KX49^@ z#g!q!A;@0I7Ai8COhJ4hx?-73CW=mF43UWlWndZX#Z*L{zR(vF{Qhn-*dfpT+;ehs z?>WzTZZ7to?n|#$6)YOsIMG0Sns3YzJa7*OnpJ4b7Hq^;jOF@sxR(BDtjG7T2fxHx z%qudc8tbtHw__bfkW0)sZZIZo4sdcW0}igoW4H-VA|G>(LnU6oGQ5IKxPr}iJJ)Y4 z&W=a1fbl8R#FFU86R6)`z#9ApJv`t1#L0&Y+`?DzEYsbGEv3dhgfHRK_&Jgsvyo-% zMw?MdYDX;~gt~DUnUfhsA3lj%`KwrtZ=-&{gdv`9KI0^ax3CJE_|}76IDi8t@B7*s~;P%H1oXRsHy;8|1#FQX5yp(b2ZLH@ULQo)J7h~R#F9(BPN$j4mf za38MVDE^CDVQgLY#$%}8$1#AXa11Zu5Z3VY=P-^F_%&*xtySb-5Av~WvTt^vQrd%U z*pJFY5<_?#RU7AX<3Hf}JY#O=#?Mf3e!jnmt@tadraT;)u?z+X7V4lS?Jc9hhq;oD}JN@@j8CpTT6~$@p zrkPcvRvbpXHiu9TIEpHs48DmU;OiJ;mT|m}V;JS4NqhrUr24TYvIg~_N>pYWPz&^; z7M$M2Nr;mu>On`5?KP*6dNl9g19%R1;?JmJvNjsS_L>mx#XcOx*O2-$*O5!jAE=3x zkVdV%7Pa>=oY(t5%tcX{#zvATu(*;S^3-qz}JEt>7vum8+-~{DPhMJL>!9 z#_S%4&`bXy>cPh`4`YOy-=6}A_6 zTTV@)RaYT# zNM~oJ+_Nbb4EQ>NRxlh1bZiUIN(Swe;~Sr|lc^VMXJ#&9jn7O>*(qz(PRt%oSi2p! z>z{SId$RbG2`4k{u`{clrz!^RYE2}P qmp*o;CLRCs%hd}-wL{t2CX(@)!|wc9!oqCIzkH)%Y)xj``tE<|0o_ml delta 1989 zcmX}sZ){Ul7{~EvV^RiXf4a>%=Je`@14d`tZNR#LV}C^Fh66N`0KvPou1nZ-Yth9w z^}kVK2q_u^FUW{7@lO`Cm`r@5Q4^y^gCxGu8E1qLqQ1~%i6I)lzuP-c`t)<|x!t+v zJm8}SS_;ivxfRo`H#SqbA2 z)WSNj6-Q8ipT!&T6|BNHaE|BOJe}tl7-P8);cvJT``4Hqz!#9D*e|GwE~Aq37qSEU z8#S@g!dk2r!|0%Pz8lLhh5Gv^Fow@#l;_(#oe*9_t?VBh#7cfWj0aH@yp2lThyL|N zR7QSA?Yx8^9l}y<#xYa|k7F2TQ49Xozy2Px`xz)HFWfkUd@RA&t(d_PJc-)bWz>X! zpeD2m(haS+7Z2kwzK;*1emn{;M)5P$LYGhrxn4>B$-Wh{eWf&r8!?2+L^sB81XUZ) z`s1@WS7i2qKc1lCHgNwLR4u)OP524kk5^DNv4xvDsy(RZrfSH)s&<+I?eG}tEja04 zzlTcs1=IxJ`QyJM&$cBb`&P=VbgkAmjGMXcLuKeO)Y~wNTG+d&jb6;sVR3dH^?(YV zrlM)V(>Q>y;UXq*hSl!H1suZ&KUQ(Rj#|iR)PvqaW%N91gBMUczJxJcKt7hO;Hey^ zZ9?kK; z9C6l8(P?F14pkHj*p9!Vc38*3YvoU)YT_6=cm`E$AEOptc1z)?>QOsv!!CRTRRd>H z#rP*`ArDgF<9h$UqNAO5IA$ww0=0uFR4TKm9lVSkcpP>AbJQ7M!rReqD=eT9sZHCZ zF&fi*P1#V>X7_kKYL4f7lW1bK-37e&_g=rRcU+AU@fN7_?A3tZ_F*b&i!a&t3NwyFM87}2%z8R(^#4Xyy*EWip*m2JD(z~@ zu4<}+Xd);9uXZ@rtnuH|?jTgfYAUV)qD&XGJBf|N4qedNh;Bk>zmrgL>Nr&GHH2!X zhfq_!IK*AVc0#R>2oXBcIxWRJJ1z!^7Gk-T=NbZ=^V5NIf&6g!kHx{%c-omrX556E zadZC$*XK8c))uXaw1;C`ooIVJ+Lr67YUqu$g=0}C7L7;RS|YU7LvA_~eqh?2OdoMG zk50#(VK2yyNu19+&I@7JA<4@+^ta8hT+{v+{?pQMJB$9{w2XZT` c59Fq*2lLmeXIAA;G<2=VU0t^=_qFrQe}d)5-2eap 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 ddd1afd196..4c07c4c086 100644 --- a/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/de_DE/LC_MESSAGES/django.po @@ -7,14 +7,14 @@ # Berny , 2015 # Mathias Behrle , 2014 # Stefan Lodders , 2012 -# Tobias Paepke , 2014 +# Tobias Paepke , 2014,2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-10-28 07:35+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-10-31 19:03+0000\n" +"Last-Translator: Tobias Paepke \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -102,7 +102,7 @@ msgstr "Fehler für Standardwert: %s" #: forms.py:94 models.py:124 #, python-format msgid "\"%s\" is required for this document type." -msgstr "" +msgstr "\"%s\" wird für diesen Dokumententyp benötigt." #: forms.py:130 #| msgid " Available models: %s" @@ -279,7 +279,7 @@ msgstr "Primärschlüssel des hinzuzufügenden Metadatentyps" #: serializers.py:40 msgid "Primary key of the document metadata type." -msgstr "" +msgstr "Primärschlüssel des Metadatendokumententyps." #: serializers.py:46 msgid "Value of the corresponding metadata type instance." diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.mo index 1a25f7990165d8d5e465ef4262107560134f72bc..63994bec65e6f68a2d66bce640d71425e2483287 100644 GIT binary patch delta 24 fcmcc3f17_p4hy%Tp{|j!f`O5hsp;l&mK0_HUDXD! delta 24 fcmcc3f17_p4hy$|iLQ~kf}x3(q4DN&mK0_HUKR$j diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po index 6c837632ca..dca3b971ba 100644 --- a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.mo index c127b53f98954759baf6792a6f4ffd87dcab2430..78d02904b093955cd559f08c512edf090e8db5ab 100644 GIT binary patch literal 8785 zcmchbUyL199mfYn#8oUJqWlq03w2xQy}R9(Lbn!d*+mz+W!Y{)0t&PDp52{t@62Up z?zUUvi!l&mNYDfyd@2vb7@|T52{8hZRfC%713rLJUyL#OK!U`i8cqCs&-}S__ujT7 zCQNqjcjwGGzw`Tle!uzCCFeisaV>CP#r>1_dEUd|{U6|m%Y4xDM#0VCHgG0?j=_)c z{9W)0@O$9R;H%)L!1FHjyi36=z!7i^yd0banc^*gp9Jp*F91{U6W}A@r@?Q5{CPj( z=VRcD;6>oCz-z!az-z((gR!MDM$ zgQsBj9&qc2J?{YcRq#IW6%f^US0c3NTn$P^J3#S20gCQk5SF|-um;`>O76$NkAhEu zTK_CK0lp0G1m6ZP0k7eu_}T;B4&DyVf=_~4|7TEo`$zsf!l3kVIVidJgI@*@f}`Lm zQ2KiftbxA=#qWiiJnuSi6R7b?@JrwdsP{hw`SV`m=QH3N;2d}wlzcN6XLRR5t#5+k z;J3kfa2=clFJtou!6vu}{u~sa+Yna!)Ie14?FOaKo5Ahi6evA}-~{+JP=4`3KK?rR z_<5f9S8$B+F3wg5p9Z&qzXK)re?bFo!nuxuB=vmq5w+%l!FopyvG( z6rY!3+$+H=!Oh@}p!mKQ6rBdB{T=~#gO7tZfUknG&uLKhxQfZ5Hw7B-4p4E^0#TXw z4Cvwzl;6Aw{u+D-d;)xh;Cc|8;PjZ-^Fi6E1B$OTQ1X2f6yMK) z(%TE50sjI@z6wp@Cdk| zCEp4tx-qErkAZu^m%;nM(>X2}&wGI9XF=)lVu;B7Q3K+*ph zI0?Q9^5 z?d{hvqMmvl_(bFm@+)pdyb3*4LZz%|Z&9rx$C z@8sUieKWWG<5q6@oqS&YMVPs`I|%BMjbxVt+_!M+n&wt+kv(yH=bwOg7q@(}xD*GT zIk4&nEq}3PO={bnmY-VFh{DvKNX@Dr2YQoC8gI+iWQz$B6WfQoL2R35DT+x6AKjXadIy?KQ%vo9Fe!6O zsvBOhMWPACrssH_cs=oo%^aVJcWZ1VYu{)w7~12NfBWYo-jrSPyREc9)YR%)W8*lA zC(Ty9Z`su5Ft}JR(cFfuwel8kD%WNCPr1A|A~p9vm6M!kChDX?6v9WRjw!r_2!gbP^izFZU(9Qsn~9m1-Ub1uL`T3VR+;8{>8F+7ycjI+cxY}&YPX1htsLxS;45HhI|wcEIwZ3XQh#itWIG+eHmqlqFe&bkdm&OW)lCi~Z z&`N_a8QWg>&c^P0#f3L5*EN2#DcSneY_@FORt!8K$JT#UKwjHhZkq|3Gd0UF3_PZnQ%}jYSa+VNR5B;|F4*83= zb{Hf7uL(M5UR zld^9ZDJ!>vGpFByC1t3dDPi}oaGK~Ja`~;FGnuWOt0MOcl`SLnxd6IfVWGZA^4Na=LkAw*bPa!W($9OF2`bu$$?GqJ>U*3y+IRLZgODin@K zaWmOr@c*Ra;~sVI&aky+5)KT`$wFHs=OuSQB-&a!VxEhsYEm8;$r50{KjsQfyg5IH z2X8J8+J3xd9l1s zW{F`*`YegC?k%8#j`Ij}JZQCKktlAXd&!(}MFiv9F77A?^;!nkdwT+2mEy8B8MVxX z87wr*KQ;+RRsF%QAFh==pJ9Ot$+OIdtAMH!mF66~(o%J%fmK{O$lSS~dokgn@tiVX zckgHide*zU*h>F(-81!Fo_&=e^2o`vN3*D<>e+m~_DgAdW71tCib)2YC>(Os7V!a@ zz#cCN47hgxTj#I@tE)L`GtJuFHclx2Ce5tB=7(l_YWB#;yzNABTANLlgJ$hucR8so zM3ZJ@?#_jpD}$L|n?m$SGcmq%Pi^PU+Qcq1J~4U24Yl#z@tgT5p_ho5kQGj~1?#sb&5@2D2FXfRMo~o_KYqNP zYI(3^Pq+dq&KAaFZAnwJ&2}Geyfn%)xp}z>%l|c|qWstE{)eQFTCo@Gw-5DyCF^umQuUrN`ND%t5H?68aWP>5pUVSB-WNd4IFVX0AYLS;8 za+$g|2rUhkLmc7_A_zk>T9r1}Z)LPxV+Iy&w94>RQ>F3^OQU7IylGg zHq0x1kusi&R{C;KA;r#pzEhddlc6Emgz;mr3-!q&S(bD-z)*j**Evsa9 z3=3Bx+nFcp9slp{(5OLqH?pWxd~X=aTg8^~^Gq^eouO@6HFaRVN;h!ko{{1(D!n1k zh?NXiSa@VdprVhAgKke%FUvu1^_Z zz_nCMxm-T%-9|Y$r3ZV|HR3pHPYIY%K2heUK7XP{-Jq7C3)8hak1QOsn?TAXuZUE_7q<21n_V5x z&Qn(CLSvQxu8$3T$^ln(I2Wy(!;$GyuLLL6F7S~!=1XqY%#snEBy(AZEBBzI4I*0F zBkRw%qO7NNM@{cz54*~)d}wT|VCm$pn-v6=gGsvY*Hh)#${5#b`EhAJ=jR7F*n*P? z9D9da>N`5F-$kxr{^SNr0`=aKun{2cz?wY7Xx60s<=8Hxg}n7WLhGwT6i3J^F&#Y> zy~1i<-#cddd^@MRCOhU8OIH33trE(*CGTCU?)zTA*bYG59^-Kat3g=aQc;wW>%xts*Ts5B6PBbST!pTn-3}eJ99pDP(T%KqKwCaEz76vMsZeCMh%ZK#HS5vBIt` zQc7`JW}oKJ6jHL)Ew{dDh#ujq3|P=|aZvT7az|g(ikY|u(=dd^*n>0B#_#W;=JpOXk&jr7zfs?-V6Z9JfLR#C4(!CuIEdtE zrl#og5o7Y`jN?H$YKF6r&zLz_g-xhTx-lJ3qF!_kYw;@9;A`|?3hC>``M47OxElLV z-+ziZ_(u1<-+ZT|O#h%VD|U~T+=r@25H*pVanImJ?jNEioWr_gU;$3YY7AlhH4xumlL_oFg-fttu4)C-cBHpv+`s#24&9P?0_E~}Fy^znSvq|u2SLWld4lc@g&Is-f?z!6kwyiAwmOaPTpOZ+~Bnou|9VHgYX3~GXR zP~RU!{>&>bbvTRx%wv7Za4l+_V;<`7&^gWn?dB`U9LxvQY50L!`*hOWfj;cQQ>ab! z4N1=YM3vgb5zvb#q9&A&v#=B$Y)4J}2>{X3?JL9dZ4{FLmi#}2561ljQ&z-r!FIw z6MkYop^Vk2dhCQ~&5HR3gd=Ja<{9 diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.po index 126b729929..6768c807b8 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+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.mo b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.mo index 4537391e213666f18730aebf78fa6d3046017fe5..d26681e94eed3cd6bb65142d7cc40540f206ae0a 100644 GIT binary patch delta 1902 zcmYk-TWAzl9LMp0YOI>XXp)W9YU(ydW3-#@Zp<3jTwG0)sEMXA)JtiTRbo&~mhNsT zeJFzv6fY0rBIuKN1Fce(fPzm^6eNfb2Bdwc7YK+_Z3V%HVB7C+c3M2le?D_&GiT2E zpK~S;T2Hk&kBW1T8KsMuM_l^AYyj&gbE5q9p;;xq_M9`ttblq9KgJE%h`Vq$o<|?v z#5{b6bMPs0*aWAKaMDyWnsjU~7p2@N$1VkyPNSI#;_va>}%YKB*ku_8oGl@&KNQR z`wi9b6QmFJ76Yg>Y2?*dh;69nH)9z4FvR=qI2Xk@it5?#xDH=q2iEhH8aRkb-3hOL z6_t?@)X2y28+?wH*vdo7U;+cU7uDg*Ui}(6Tevaq{m?MOjKi8a&Bt!+#58JTcTf%9 zM>Y5agIG8-yMCImgZfeI)$h0+V?3k|o<()w0+MvQQbhih${XCM!Vy#kUZ7I+H)>6U zNRRGs#6vk|J5U|?lbcJhj1{NF*M=1s$6nlr<@gLg!8{h4+Nnaluc4IuGhNotjZZO! z>e(?=LnpBXZ=*7h&qV7*K4fqfz-8Eo5lngYpK&Sm$LK!Cye*>c!%kd@YUi-Sg>+#ND_9kDwOQ8`PXmU_H+8XKlw`>Id*! ze1U3rExp~1*D+W7znna=0jv_)`W8Vo9K)5^hGfl#un|uphdtuNJ1vKK%fZhGW#S7$ zMf0x=si@s1qLxr+H6>d3i+TV5rP;gEJgThE;?A>D*-ofq|CJ3~eC}1&;5s5e&>weO z>T_E|Y$TMq7D7eSs-nR;G56BU@7ao)jwOVqV-@j!VavOFS*cdh;tLVWi7JA1>t;o( zTxB)UMJU6{qCQNTPL_j;V{18UVQ3MmEXv}Z!<_59Iy=z5Bq9Xc-z|I|+xr9YmDS)M?AAG!U9X^A8tK8O|GiTU3yf9|{G+HU3~YT3eebEGY|xf`M?I zKe#+vQ@b=s$!m|N(t++|d@!{qo=zmA{;tIKzGOOqsd#c%BIA^7$~-RFR?r?F?EgOA T-xu}oOb*xidI~dR<^TK(qgb@7 delta 2042 zcmYk+TWl0n9LMpqWy_^(3)_O_Vr7IPB5mF6MeI_0feHvMR@y|A0-bKhwn}%)?5w0d zxF({c4~A$ZBtB?r-~ma9>0(miB{79WAB<5G;sfy(iPb0%n2->n@%x)j6HoR(pEGB7 z&z$o==gj2JZ+GQ>C=H)Bly2f);!=Sz$FQT23uXBtV>V$lun{BN+qec(*o@=23ctV= z_%jyaZCs6^#l}!IYq1EgQu_>Cs70bI=H`vxdSwWm(6`~2>F-+F6+?4E_@p` zvm2-mZ=yOh%SkuX;C?)Uoj8Sks2}%(jd8q!8t84*K<-A#KiM}0OkXLD;ASjEWuggd zu?w{~UJcqO@nXoBk5B^{V8=a#Z=p8fr&x*Cun+IzdhBJR-G@0;|L?9O|9apQ4J@O% zj`!m%YG6eytU6kOJFyX!iC0h$8b>B;-p6{(<0Cj5+^=K3ws7Br{{Qd+?#HnUKg>~4 zMGa5w&1Ur#0lKZPDGVv7BC*tZ`A98%OQ>3-};j#RYg1 zPvR|X#Fyxdx#i3yDy=kpg&J`QqfshX;Rtr3+CN5hd=)q1kC?G@QXOeutb4^F8t^Fu$R8>n+sp?jTt=4Xjf$b|FpX z6f!0=g(2KUsHjaPHi!RGdMcs}o z#NXM4$f@=BPAjTtKUhQy@fe}9gW$E{FZF5-MQf+BhtOG_FU#_OEu1cj3=L)iX5gxbB$Mog7Mgp4HTDyDtzV0PM#RdjJ3c diff --git a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po index 2cdb0292dc..028716db1e 100644 --- a/mayan/apps/metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+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.mo b/mayan/apps/metadata/locale/it/LC_MESSAGES/django.mo index 4ebe834b54d65579a720e2a1a9868124f2123700..3afdd8fbc0e024af020ec99471422e1033768bb4 100644 GIT binary patch literal 8599 zcmchcUyL198Ng2!5mymKL;=OqLfJ0#-n+XkwA@ml?Jjn)+b-KJ{sVFL-m`ZP%$>QN znY-<_@j*jke8E8A#l!?(#7KfZV1j>wQP3bSK9~^V9}@Ke-xQyCFvj0^X3pHXcehIu z6DFPg&73)ZzVm(G`Of)n-?;LUrxe!`_oujj@gAj4!w25SA1?iVrN-fQxC_n|?+N@6 z@85yf!e`)}@YnE@aNA`{T?Ma&W3U0QflWviwFEx_AApy_41OG*ho6RzL;k5B@#mxP z1$a4p72W_}hd09i6z|(VkeAQGODMNconXAzh3Y;xQq8c74Mf|Jn3%=id;>&4?X}z-Y22V^ZQW7dl~*5 z{uMq3zsuqZ;BF@IS@;-~_t&8K=YE_XS5gO{$afUVd={aGUxG6Jd3Y;)6v}u%gSduz z9b!85CY*+E!#m(D*X8qEg|fcSL$U9Z@ILrADDCzlG@`0mDEfF1$~?PJ?EY;S!Y85l z%{B%X{WaheJPgGzGT4CUq1g3VDC^{- z@W1eWxQ|9B;A1d_Z$Q!GqR!=f9*ST5wBXB7IRe@5c*@-+Yc+<}E%gm*`gXC_a3U+h0pO)VU|Pn?)fZ zOTCx-DEADvtP_z<{NWDn>Lof7zmRKR4(Au5!vox6>wAiFkDGYd;a{NGL44zKZrnkg zA&{|-_U^z58Gu>Vo zWJb5*C^Kg>y%r=^zNAg9cI-@dXq)Q9obKDiwDn4y=xmjecHHWBO_b?uy=Urbylb+c z9c00{j+Y-ctxT^5sg7bDWLaXD`}9A)GaXll+HLKt4!!7%x@E5;pBN&Q3VzUc_?)W2 z^!#8>&Qu*qjLdbY)E7qPOyzO7PO4_iO3)88Pt+9ljW$UVCr!OmzK13=1vWO8k7#aW zXlZ$unkjTyK9tP|C8Flxx3ZF(nvQ#!jU(i!8fLgox}j34yEaX2)G59MVcDYWXi%s0 z0RoYMx96x@Mg}ojPt*VwCLAhrJ;@`a`;ADc7S@E zWQpms-yvs5x<#2v?7Su2IK=WfQ7nar{WXS75{1p7;LjA6y*t zvtbQunXb4}ztu8ny3!BB^}5=$w)5fgOKLKPEnnR#A9|DM8^scpLwn)yyP-+BR4){; zhg&#J3>UfhHY}N#ty`#~@CzM;MAY`W?y#xf z((AcRh-GbvEiDP>7{_&7*E6v*6HRn)JzI?<2{|TNqlYtb(oT14{6FmlxJO-`h{AQ9 zvSF}KdTkM$SKJ1X%Fv=C>bW&l4ayrz@&GvOkA;F$wGbr8pcWF_4U%>Jh+!`IAb!;0 zgcl#Abzk2k>$tExI|Me8)f#B;M@zC?iFjEc${MIGh}zV0dMnNo zSYl`twJ2-f6ez!qzH7JcE2oCMSy|ufMxujky?)Xg`Vobtd2iKvDHZc`Px(;xy|KiP zR*7@2$SwFq)_D>+De{S9hX8*tExTe{rDTKdPgWucx)XJjA9G7=7NoZbgmtxq3VO~X z^cfq5Vv#uMqI;QhE)^>n-*)ScNbHW5a?aF3+w$2nkkb*e{yM&0j+lBd3V z=X_U0Ux^UK$|<5p+n=TCd42gDl(QX_iSAl)LNMsX(I#81UmtX1&6%=;4X!=>)j2GS z)txzNbM4ywCP_K|HT8V39z=R}X8z>ZqUps+R+~>dwp}~i@1(V*xT(h$PAt{jF_`+b z8K&OU)00!T)uyIu(|h#fbo16*Ym<8?C#hIlG;3D+9jZ53+cT-BrbVR% zFavkS;)r$T%$a&7ecKgt)}5}BI3+`glSWsjS~Kl#+VDrShRqriWAk(KvjdGx)hEY} zNNy7$B?fPDraPN8NP28^K(|(9MPvt0E!|VwKd2`o66R~OQ7aa!HTC{wo0Y;gH7^Tc zKMBIxJ**OPrKsm#(}U9obpCj7SERQe)Ke1&#_$J8s%&U=+vb^8Dhtc!UTrJxVWmPd zPr6?Eflh2|)f%bSWBWPXcaNFvkq6ODam79F^gln%gf}HLCPoFPZ$Q}gQi2T#Et9Z53T;KK zLe3mT&>>LEM;C31;DEpTC^0%qNf*5?i0zzFeA*b7X-yssMs$;^laeiZ{nSPH8@OGHWX3(hTd|29?|d6?zXWly1ljY5BAqD6te>G5 zpG|1Z%BeWw2T}&$N6}aUZK+~1N_;BURX-)*5_Lj;cn!i#8uWTj$qDD1#Bzw^6j^Nb zxr5d9aV*)-I2yR9CP#SU70ZAyvL-)fB6N{*#*$&4vvnLLG;SkcgftEZznsbr8S9SanP--zy*u9LbF9cfs$vz2zXXcw_=FWl7W zGS5Y2?X6h;OCup*;b(3?&;5>UXXC_*NW9sU$|HUr(cFPsY?s9nW{Tm8h$HhZ>{<5M zm7m>M#t90|KN3HjJ_!Q!;5I01?ESb>Hdr8%p1S;_E$P4Wi6M(iYMS;DhxjAY^PPDY MER8WzZ`1(le`{z6z5oCK delta 1068 zcmX}q&rcIU7{}pJDNra>Xem;DxK(MR*w6wEu^|Q`2P7C`Q}tjxZ0TC6rHk!WqX&uM z;EBXI8vg-L7!yeh9*jo47!RI2C^6ySg_|d0G$zE)TMLuUJk!~o+4;`ylQYY{rOo!b z$BJ^8+C%m4Q|dT+_R~;aU5v6dzzKzC~H+Gfv}oJcnUcmFrH;WjxCNhsaN@)5ykNqlEiV8~;%o z-$ED9S3l|Wa>F*t&f3|{3a1dpWBh-~Dk0p!KKzT4JV+xOK7w*`1L(#n^kS-ZJ%cj; zI?8=3NOHA`Zl156(~*TRO2(Zxkc9KiFKMHyd5dC*6c2Yf{`s6QylcTkeM z*p-a;V-uc0xt_qK2%RxHk}Qh^uNF?ZS`N|5BCr}_}ygRJlxEsB-yUtFk88c%Q^sHw> zuX;lIQp;2AYaP_@y#c-DZ40DXOkG%HVM|>!3l-YDbxUu0gZfK*ra3ke9U3*_Bgy!% z9{2UeW5dy*xG@w@#)b!Cl%^T8>_pQgvsf;ej$KL`DLZ48NRqP4W+`v$XTG#&#w_M4 zX3k0)c}MT~F6*oQlkUiFApP6luLnE2^rw!9ZV80DcB9!UonN%~PQ*5JtTUmPLw*mj zEGIuVZ#j;s?*zy7x1gaPb+73wJ)`w0>!v+t>eGFpfXr7Dxm>\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,7 +100,7 @@ msgstr "Valore di default errore: %s" #: forms.py:94 models.py:124 #, python-format msgid "\"%s\" is required for this document type." -msgstr "" +msgstr "\"%s\" è richiesto per questo tipo di documento.." #: forms.py:130 #| msgid " Available models: %s" @@ -277,7 +277,7 @@ msgstr "Chiave primaria del tipo metadato da aggiungere." #: serializers.py:40 msgid "Primary key of the document metadata type." -msgstr "" +msgstr "Chiave primaria del tipo metadato del documento" #: serializers.py:46 msgid "Value of the corresponding metadata type instance." diff --git a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.mo index db2eedb31c9a7d338823e3c805aa5925d989027c..89be2431e28f9f07f4f2b0b84cf05d4d96b7ad4a 100644 GIT binary patch literal 2040 zcma)+&u`pB6vqcB6qZmRlplrC4yh^pcbX{Hq{daS0z@cNt{+9gyw31%8Vh+yXi7lUT(2Iw0%2336OR@C7gh9|J!E z+0LiM{1+hm_f;YP0p$HZgBQNAYSo3J}@PI1o`}a1rc`kJXdfZeC|lAc&QMu9)6z9 zk=ZZ0Sxir1z;}f26UW5%PoTYs#x^-moIAdAkE3yX>;pfX8}^USn$Lq{I)!!|?PWAE zcQ%=mI+2#%O|_*!4q_|a2$CS~rx6(^-JLPj#g!nC5jhnor^Gc&%8@iQ6>S=*G<5rv z6BVW;$=cZZ@@xWmNRC9i&{lRbwdE+0kxmkAhLt0wu}+|!;7?_Lr7c#~4uzt-@6moI zS9@qAjf$vTnJvh@JS|jrlu~|SoMvu)3H%u<=+NH z@q|Qse)zP&q#5&V)j}YviUE*BFONn`Q<=zy%(G5t8ez4Yb99qmfreVN&+t%s>qp?5vDQ3BaG8z#$(OET{+ z&l~y5vTQ9Z)yh(vkR^?qG>K7a0lin6gN>B!H4f? zZ>p3HNNhS}jk_`z4C2&fwTER>y&I4%>#Xc#rpghStp0$)IV$ao9h#EeBO|V6ooeEL z7hz`0C>2!|#{ZNW25wux?LJCm?Wn#vVhgsNcOeG6~g@x5% zZEa(nUtr~L5PyQDjo`V-9ys%H?##V2^J`6v^lMptVUP)LzzJN0KVj0+9AgGp1a)u? z%z-vo0L!2X*0Q`0E+U6u2|UmC??LK+0AJxJ82u?LD~v7B0FVYBfHXMF@>!NSXrUf~ zWiSQl;x~}`-$BfrO2bMYqI!N>nJx4H67}IYn`i43XQE%y1K6Rs;iG;ci^`UI)aoSi zPhXWE%C6oJx6z%Dm+Fb>R4ZQ1cB_Hw%Za*aI)24-ZO;uHUw*4ARwHVPIEm~=G~{t7 zk|pihs`Ej6#M>gU2mPz#x_s0wDr!IYLkX 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 2477953f41..f64596bedd 100644 --- a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -4,13 +4,14 @@ # # Translators: # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-10-28 07:35+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-09 16:41+0000\n" +"Last-Translator: Evelijn Saaltink \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: apps.py:52 apps.py:142 links.py:39 permissions.py:7 settings.py:10 msgid "Metadata" -msgstr "" +msgstr "Metadata" #: apps.py:76 msgid "Documents missing required metadata" -msgstr "" +msgstr "Documenten missen vereiste metadata" #: apps.py:93 msgid "Documents missing optional metadata" @@ -38,15 +39,15 @@ msgstr "" #: apps.py:118 msgid "Metadata type name" -msgstr "" +msgstr "Metadata soortnaam" #: apps.py:121 msgid "Metadata type value" -msgstr "" +msgstr "Metadata typenaam" #: apps.py:125 msgid "Value of a metadata" -msgstr "" +msgstr "Waarde van een metadata" #: apps.py:127 msgid "Return the value of a specific document metadata" @@ -54,11 +55,11 @@ msgstr "" #: apps.py:147 forms.py:19 models.py:158 msgid "Value" -msgstr "" +msgstr "Waarde" #: apps.py:151 forms.py:39 models.py:208 msgid "Required" -msgstr "" +msgstr "Verplicht" #: apps.py:173 forms.py:112 models.py:91 models.py:206 msgid "Metadata type" @@ -75,7 +76,7 @@ msgstr "" #: forms.py:13 msgid "ID" -msgstr "" +msgstr "ID" #: forms.py:16 models.py:45 msgid "Name" @@ -83,7 +84,7 @@ msgstr "Naam" #: forms.py:21 msgid "Update" -msgstr "" +msgstr "Updaten" #: forms.py:65 #, python-format @@ -93,12 +94,12 @@ msgstr "" #: forms.py:78 #, python-format msgid "Default value error: %s" -msgstr "" +msgstr "Standaard waardefout: %s" #: forms.py:94 models.py:124 #, python-format msgid "\"%s\" is required for this document type." -msgstr "" +msgstr "\"%s\" is vereist voor deze documentsoort." #: forms.py:130 #| msgid " Available models: %s" @@ -111,27 +112,27 @@ msgstr "Verwijder" #: links.py:16 links.py:24 msgid "Add metadata" -msgstr "" +msgstr "Voeg metadata toe" #: links.py:20 links.py:27 msgid "Edit metadata" -msgstr "" +msgstr "Bewerk metadata" #: links.py:30 links.py:34 msgid "Remove metadata" -msgstr "" +msgstr "Verwijder metadata" #: links.py:42 msgid "Optional metadata" -msgstr "" +msgstr "Optionele metadata" #: links.py:46 msgid "Required metadata" -msgstr "" +msgstr "Vereiste metadata" #: links.py:51 msgid "Create new" -msgstr "" +msgstr "Maak nieuwe aan" #: links.py:56 msgid "Delete" @@ -143,7 +144,7 @@ msgstr "bewerken" #: links.py:64 models.py:92 views.py:561 msgid "Metadata types" -msgstr "" +msgstr "Metadatasoorten" #: models.py:42 #| msgid "Do not use python reserved words, or spaces." @@ -154,7 +155,7 @@ msgstr "" #: models.py:47 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:51 msgid "" @@ -207,7 +208,7 @@ msgstr "Document" #: models.py:155 msgid "Type" -msgstr "" +msgstr "Type" #: models.py:167 msgid "Metadata type is required for this document type." diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.mo index 25596d9d07a08c76086cc1c02edf0cf7f6859971..674ae9326143efc98064454e1f8d0317baf31d6e 100644 GIT binary patch delta 1077 zcmXxjUr19?9KiA4b+eqiOLI;slif0P`KPwoQb$w}Jp_s{BUbd_)McgahB^o$Mz0mV z+?Rxe3Id-Z8bMG!_!1%cWQf{BBotT=ML|zJ^!?4-Vds9%xjVbR-}#-pHyvNwpP5Es zkBGdk5ZQ&R7{D(W$KM#k7N1BBrZI@)sOt-^v)IIZ9=*7TyYVgVz%@+cCwJacDN@D! zWTg}&%wT{U#1b3zhc~bv@8A%w;V}04w*x#teefgXnX-W8_#6-6OVmU+u@V2c^IDUn z43P-7a{ou5AkxmDp6%$4PIGC%6tYHgxDRil2D*=J_!u?dGKO#kbpu;ii@#7Sxsz?` z`Ve;DDeT5cOyH9O1Kr6-)T7u$KJu4K9h%i5@39H*;ZN+tTa>8`mrw&QBSn%`cm5fV zGyjJAoL0_H6Fq_CCg-ph3nL6PlX-W+3Th%-sEK%}qwXk(TG|Ne&Qr)o(p+={6F7v^ zsNa7;4YYxKaSJt3FApOp2_Oj$N|?bcH!k4?{Ei+xL%JrOMJ@e#*C9O2{2H=U=1`C9 zsq0e6+3>U&U5?>x$R6MeZJLQ5_z`-Xt`E@iX$hL?+V*c#3YuW7=l8#9AgzYB4!XWn zyi=u;wmG-G;oeSW+AO-(FGkm1BH_%Ljs94)Gu~rG zyOUiBXVI*$O4-BNsTtc!+0&V+tF}`S7<8@#E}DIr+*m#{mQ7mMCyI-KyM~c34pap_ cb^Y0y%xET;CEj=`UcMACQ{(eE^Pz|T0G&O6ivR!s delta 1156 zcmYk*Pe>F|9Ki9nt}Cm~YW{^%+tFJ8w5#nOOmaJ@rQv=>X?osR5h?^)Aea2(>1!ck#mQ#lY%0gPO7X8Sf z206+7BN)J|*ozz3gWqyo$V%!DD0L8`9L;5gnzKV=%m=U9X;-j7V|MvA4X z3UMR$6Z=pSoJ4X~m$46Tq9l;pF5K`7B>@k0lLXpOR?>@7(qWVpUqTMG!buXpj}!O+ z<@etx6aB?Q=;2Q!!FH5a970KK2=6I1s;+Tyfq_cW3}X_VxP}HkL@E7~g3qvvcpG_C z{X}_XF3Ke~*W0_!R!7)&6gR}18IUF!wbJFm5WSNw9rkLmw=X~>P4>0aF(?78oi5*qEJ@l4dW0_9Shk?DcZ$8GvPWcJ z_-u!(rnE)IX~*+Tt_^4Yt9z@+m`-NQRNT^2+R}EU)Mu}i@0JIQaU-;6-%cE?2pE%F|6kkOF9vcnhSGwv*%*|mgly^`6i#u*H+dz^8?jxXHXZi qo7d({JY$*J<&;inqNzD;TJc2Mw3Zi^%&GM3QYt=gE!jhLkNyEyB$Z_V diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index ea406ac33d..cc9d5d1219 100644 --- a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+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.mo b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo index 694f7700c8d87a34513ec8fc407025d19e26ed11..203a0a0fb18469dbe6db76d63300bfa49a266a9c 100644 GIT binary patch delta 60 zcmcaEbX{nJ8!NY=p{|j!f`O5hsp;fER#|RC16?Bv1p{*{W7El%thJMw*`m0867$ka Q6Vp?z6bd#+v;AQL0N+{=v;Y7A delta 61 zcmcaEbX{nJ8!NYgiLQ~kf}x3(q4DHER#|QXV_hRd1tUW%1LMh+thGEoiFxUziRr0U R3I!#Tzp_Sej%EAB1OWV_5)c3Y diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index 12fa12f31e..fd1c9fc7f3 100644 --- a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+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.mo b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.mo index 3273373dfaf42778b4369c984f3a146bcc979226..5d8c3cf9abdd1be43541131681c4e33367647459 100644 GIT binary patch literal 8813 zcmchcUyL199mh`<5f>3f{s;&j3hQ>E_uk#5rEp72x7{r+cH3pUMTrocz4z>P%G{aT znYr68#s`hjsL=$G7hh!6h?-P+Awfd?cY`5nqR|&LftZlUgZhBJX#9hp-#IgL=kC2N ziV2g>{mz^@=XZYp&+oT=@sjf%Ra{Hl@8y2xO-h{v?|TbBT>7m_je*yJ+rYW(JqF*- z`&YoLz{kP8;7`E!fLkt5>QeA3a0IM@SAunrDQXG40=y4AA56i^z>k5~fDeQGQ{Us~ zUEovTMc~iC>%r&28^C{N@7KM}jn9JTG46xHR|rxP;G>|de+d-5{Uv)JVNmpOB`9+50q+O*gJa-h zpy=;8umb)L6n-zbSg9Mqi$NK$gC7QugYx~yApg{J{Jal*9$Wzb28w)h?{st*L0R7f zC%`X(i(nU=2QO#ykAh8b8GIHLKDQyP>{9_zz1jhaKKFv-;0!2w2*D}vlc4y;liB!h zz^Aq-^)gsx{4tzO_Wvb#6DZCk>$ih9fcrqvivdNRE+~3@2^9bQ2Y4-bK1LM(90kR0 zmF)daQ2gl#DCBk^4bVgE4qJ_y{Qa z{uL;E{2rA3Uj=^)UP(}W0sJdyz)$e;AowyUdac5o_~*kQuB5&Uias~M-QeS(=8Tfor_?*m2dM?kU9-$7hVZNV7V zftP@HgF8U^{%H`CsxN}Kg5Ll|o)^G-!7H@$%afqT`>(+O+yOD+a|0ATeKW%+K+)&Z z;CApwpy=t(;7;&WP=h-$w&>{|a0@ucEtj^x&Nt+-#=V%0$vzT8BClMB9oT&PL7wm8 z79W;NbT9m2cD08)zm|BAI2h-yXM?0H^=9r5aL;gyzEPXi&+TCOx|tV=Yq@qgu>K-C z6uXG6#ox-8*cCC03)R}(e-Vg#sH5Bq+;WKxME|0*QEuG9USezUSIJf4zj7VozLQ(x zK`x0S8#~|;Zt>f_+*8~KxW#`+Yc{S#_hOIz+;UyYjcIHyze5JNX1OIdh&>4hn?C{T zKVsYb68}3#Z#ghJHLZ5wrA9ZRFg2%Bz2?Qfd`aqBZ5>UvYCqAjIoa`J)6^?b ztkdI+G^0kRWx`aa>upn2V=a?i-%%)Z$#AG|5i-0qUore`cViUWyAE( zNd_h*y5%Q{AFgI!yr5W75bDh-ydYPfnr-^2{VCaQj0Kr9xKFv&&N94tdjI15%?fE1 zEqfNEGPBO&x-mQy&Wy9fCTyCxs^>dN%1eUrv>!655w%*lnhE@tpW@RA9vZGz^|8e0 znG;^P8X-c{nLDQ_Dhl}2@m7uAc05hnNxfD>vZUIyOWJWHZeN9X&4jhd>aJRBR%$sz zNo~2~2dN(>wehMt7rSp17iv~qS9{H-$kwN3y>)b3KJb7z-Z)vH6n>atTW-|xWH)c- zbi-Kx8&5L21}pUumdueaIwt|tV>ydWD_ZL#A*>ALZ6%Ic{~d8PH>2jnSwdVr^jbz8 z@|I1Y4n@&}opuHTu|1#rbN*oSU@i?YtVLXLrB0(^l4PY51nX5bbhh>3;!9#uwk=+5 zl=rVI90x>L zPcJ1eDQQE597d|FJn>8PS#r8QpW8$&>E|=i9!YIAG|k?4CXVC+LUqk=8jdC%7>|J{ zGzHUDb=bozaDy8OOG?lsZ$xDlY9ickbt2n6T0K znlfN_b*v3NqwdMKlBbS+r@qUwuVjcUajn7jtaeD8dfWckd&m#QU9m;2b?VfqYAT!fE9SHxH$U6c&SZ6BA(4C>fJFmi6KBPK$HTc4T~a9hu+2!d{&D9`FDKu(6EX%Au*|YI5T8m1LoZAEBI2@aC_v?|ZHiZT` zggn!Bqc&;Jo^AxRy(+_DM5f!`DtwS5GfoN>2!&p2heR{EaM=ObjI5Bdb@6F%L|62Y zcK7k_lcY3e4s7#3ujuiSP=d4y150yg9lZs05nH0#x_Q}iG5=oS}Z zj^xCX>WzjG)1rV5?P6k1cAx2fCv5oAI_d`D$8pFk-fSbuUq3YYR#H*daOI$X*$)26L8r zh+&0H{JGjvEo z(q#Iz?goWVv^~$GdDs_zzA0|Rps5F?cQ z+flW7-ti^|l#Tj_vID$(Mm|%ll63lvFk`5_DbuA~;6Rglg1^*4q@0lHb8$%fL!XNa z*yI&;QmQIi-N0{nslUcE`Omg)S?+=cGm6y#+oQDUjisWJE^_d6l^#u6|16C)iH+C0%vPQ3aWe0jZLV`3lzLK(Ztqhx zCY9cx`!##y*wZwxP;BK#HWzpAH@$0s&#rQkWo}#O8$bZX$;cZah^2f#LK&K`Kt$X T#HI58j1W0D`IVh87#-?Awa03! delta 1627 zcmYk+O>7ip9LMozp+dLCcIozoZfQFO1ZiEnFRg{82Ca=DeF?f2u|;F1Iw6fqx9(04 zsIei9CSZbz4<;ON)tVR^h#|{`3*kUXG{g%WRt^{wFUI0qjF+DL{&w5MCw=BK&va&= z|Ns9yGrtcPyBB_HsQT2g#_Yp`xD8#5;4C)cS**bVw&F5w z#ap-q?_d+&#cKQ&x8vXVs4)v>Gk5Lg!gkz){p;f?tYZ8=YQjb20aL(cynfm$`)8VwO;WEMt`UO_38t{xjC$8tTCycO|d|<2Zs1_#SHFk8uRQ z!g2fq_55J4;wUPyDJ&;~`xq~xDsUO2%x`Y!1XuADY^9!xG>7$g8aweUGKX14{Xh|8 zxPoc?7d6q5+RF3esLUr&0Z*Y4n#Fef5*PH3o17E^#@xdm#yQg0^#W>1ir9iBWDfHu zcHkOPEYnKbvJ16T`%(7|qbhb374S5wl0GW%uj{CPHzy@7DC13}>tGO-c{c}5ltL}h zBzl;~X}phG>%mZEa~?)zJcfrbjTF_K$3DD>+T=fA8~zre{)%i1hl98S9ZaJ(Sss=7 zIUL6&JcfUvGJBqboaC?%yo1ysVPFid%s$cXB%(p^P@GS{&SzhA$; zih6ziK?NA(otwnxP!oNI%5Vvl`4uEKQ^bB;K?m1R3AOQK0aP`gq-+0`H=ib%6e_Za89*2hU4q-!(Tx3|7%Bh|x^jOTl1*b~kv&v)N+eb@0%&v|+K zZS@ECcyPep2=?2(wXfORwf?miwp|X`a9ywcqHe|>s=sMRLv8j#XfebS=GYuhd*)>~ zGw<0`4d2zq`l5*eC*GHeC+#!g_INBAO~joHLKUHfXskM_gP4*Q_, 2016 # Emerson Soares , 2013 # Renata Oliveira , 2011 # Rogerio Falcone , 2015 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-10-28 07:35+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +32,7 @@ msgstr "Documentos em falta metadados necessários" #: apps.py:93 msgid "Documents missing optional metadata" -msgstr "" +msgstr "Documentos sem metadados opcionais" #: apps.py:112 msgid "" @@ -91,22 +92,22 @@ msgstr "Atualizar" #: forms.py:65 #, python-format msgid "Lookup value error: %s" -msgstr "" +msgstr "Erro de valor de pesquisa: %s" #: forms.py:78 #, python-format msgid "Default value error: %s" -msgstr "" +msgstr "Erro de valor padrão: %s" #: forms.py:94 models.py:124 #, python-format msgid "\"%s\" is required for this document type." -msgstr "" +msgstr "\"%s\" é necessário para este tipo de documento." #: forms.py:130 #| msgid " Available models: %s" msgid " Available template context variables: " -msgstr "" +msgstr "Variáveis de contexto do modelo disponíveis:" #: forms.py:141 msgid "Remove" @@ -153,7 +154,7 @@ msgstr "Tipos de metadados" msgid "" "Name used by other apps to reference this value. Do not use python reserved " "words, or spaces." -msgstr "" +msgstr "Nome usado por outros aplicativos em referência a este valor. Não usar palavras reservadas de python, ou espaços." #: models.py:47 msgid "Label" @@ -163,7 +164,7 @@ msgstr "Label" msgid "" "Enter a template to render. Use Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" -msgstr "" +msgstr "Insira um modelo para renderizar. Use a linguagem de modelo padrão do Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:55 msgid "Default" @@ -174,7 +175,7 @@ msgid "" "Enter a template to render. Must result in a comma delimited string. Use " "Django's default templating language " "(https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)." -msgstr "" +msgstr "Insira um modelo para renderizar. Precisa resultar em uma seqüência de caracteres delimitada por vírgulas. Use a linguagem de modelo padrão do Django (https://docs.djangoproject.com/en/1.7/ref/templates/builtins/)" #: models.py:65 msgid "Lookup" @@ -184,25 +185,25 @@ msgstr "Tipo de metadados não é válido, para o tipo de documento" msgid "" "The validator will reject data entry if the value entered does not conform " "to the expected format." -msgstr "" +msgstr "O validador rejeitará a entrada de dados se o valor inserido não estiver de acordo com o formato esperado." #: models.py:72 msgid "Validator" -msgstr "" +msgstr "Validador" #: models.py:76 msgid "" "The parser will reformat the value entered to conform to the expected " "format." -msgstr "" +msgstr "O analisador irá reformatar o valor inserido para estar em conformidade com o formato esperado." #: models.py:78 msgid "Parser" -msgstr "" +msgstr "Analisador" #: models.py:131 msgid "Value is not one of the provided options." -msgstr "" +msgstr "O valor não é uma das opções fornecidas." #: models.py:153 msgid "Document" @@ -278,7 +279,7 @@ msgstr "Chave primária do tipo de metadados a ser adicionado." #: serializers.py:40 msgid "Primary key of the document metadata type." -msgstr "" +msgstr "Chave primária do tipo de metadados a ser adicionado." #: serializers.py:46 msgid "Value of the corresponding metadata type instance." @@ -295,13 +296,13 @@ msgstr "Apenas selecionar documentos do mesmo tipo." #: views.py:75 views.py:370 msgid "The selected document doesn't have any metadata." msgid_plural "The selected documents don't have any metadata." -msgstr[0] "" -msgstr[1] "" +msgstr[0] "O documento selecionado não possui metadados." +msgstr[1] "Os documentos selecionados não possuem metadados." #: views.py:139 #, python-format msgid "Error editing metadata for document: %(document)s; %(exception)s." -msgstr "" +msgstr "Erro editando metadados para o documento: %(document)s; %(exception)s." #: views.py:150 #, python-format @@ -311,8 +312,8 @@ msgstr "Metadados para o documento %s alterados com sucesso." #: views.py:168 msgid "Edit document metadata" msgid_plural "Edit documents metadata" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Editar metadado do documento" +msgstr[1] "Editar metadados dos documentos" #: views.py:256 #, python-format @@ -337,8 +338,8 @@ msgstr "Tipo Metadado: %(metadata_type)s já está presente no documento%(docume #: views.py:313 msgid "Add metadata types to document" msgid_plural "Add metadata types to documents" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Adicionar tipos de metadados para o documento" +msgstr[1] "Adicionar tipos de metadados para os documentos" #: views.py:429 #, python-format @@ -357,8 +358,8 @@ msgstr "Erro para remover o tipo de metadado \"%(metadata_type)s\" do documento: #: views.py:461 msgid "Remove metadata types from the document" msgid_plural "Remove metadata types from the documents" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Remover tipos de metadados do documento" +msgstr[1] "Remover tipos de metadados dos documentos" #: views.py:504 #, python-format @@ -373,7 +374,7 @@ msgstr "Criar Tipo de documento" #, python-format #| msgid "Delete metadata types" msgid "Delete the metadata type: %s?" -msgstr "" +msgstr "Apagar o tipo de metadados: %s?" #: views.py:542 #, python-format @@ -387,11 +388,11 @@ msgstr "nome interno" #: views.py:568 #| msgid "View metadata types" msgid "Available metadata types" -msgstr "" +msgstr "Tipos de metadados disponíveis" #: views.py:569 msgid "Metadata types assigned" -msgstr "" +msgstr "Tipos de metadados atribuídos" #: views.py:600 #, python-format @@ -401,7 +402,7 @@ msgstr "Tipo de metadado opicional para os tipos de documentos : %s" #: views.py:618 #, python-format msgid "Required metadata types for document type: %s" -msgstr "" +msgstr "Tipos de metadados requeridos para documento do tipo: %s" #~ msgid "Missing metadata" #~ msgstr "edit metadata" 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 c81b3ab298f07a3a7bf18ad06422be674a6cfcb5..78f128bfdfb279f9f6374f782db0df577819b03c 100644 GIT binary patch delta 810 zcmXxi&1(}u7{~F++qP*NtEut5HBwM}7~D-v)u5g%h*Z*+9;_B5%F;$8Ep0SZ4>>64 z#a;%Ff(jmb6Y4+EqDVnJh#rdKN&7z(r1<@<@gcLH&CKpR^UTg>cCD}VGn;&FhymIW zT2IWFA^d}imvLiG;43_Y8+Z_ZVF&J@hhD;%9A+?sgP6ns_1-Y{;W+Y&2{C0%%gl1q zNk<(mHgOleK~3}yui!df#SF7*{6^b5ILQAc?gnZ z&W%>KjUTBx!>F$Zm_-wKlz9w~qZWD@RrxrVew@M{Y+@Q8qn=;J!}u1J@KbyI3u>Mp zc#8byH#hq+M{h4$tl$N_hR-mITet_eQ9IR5Hr8y;p(?(JCvgPXEK^4=HRZJ z#Z8F|DLGL{%GJe1u6%zpzxutO_s{b@zu)sdSKen&@y%mDP(%mWNq&(%SG3~?%J@(8qRXZfx2g*(F^HN{MHS-4&5H!e0vQ~`Wt_mv z@^?3@$~Yf(;{ZybNiGhYMnBG$pVzR0=PmT%4oV}(c*Ew-QK!DzVzx{?!yrDOboh-j z@dsPeVU<;mL9o}LbpD}^`4E9i8ZF19q2gol`$4GPP z5vi?Sun*r+8gbDDYp52KM*Jv+Mv#q_cG-;lxKhJVT1T3YM&-C9WQ{o~+$v8*H7Q3R z=PNstChAFv#y?7DD8>Fm8j^64a^4ail3tbDJhU#FUfc9(&X%;8_x9b09@WCb0V5hS zBAOo6b=PEEn@X=_7qj`CHkw*W#{yy97}E5J7B&K5Bc?~py^8I+@l-CeoXYUIke{E5 Yn@x_Sx$bx}7o3IDSLeRPEL6pR0l{-i_W%F@ 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 1bf407077c..89d368ad7c 100644 --- a/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.mo index 5bc738f7b63873a53e191d5e09e19b50aee0f061..348cd83c882cd6c024af7c92c8e8afee133f8e8c 100644 GIT binary patch literal 7817 zcmds)TZ|QV9moGwP`cXIR@+)i?H_PiRyb$RSr&wa1EnlYAYH-bVvR|4cF*i`^jx+x za~3wighB}lR8peRhuSJNA^Nn7tZZ3W5}$Z7GY|UMghZ3Z_)v|h4<^RX?>{qV&t=ZK zBtBSYch2`e|I6=wnR)NAWj|6}Iqp^5%RZ*mA@DCB=Z9C!7=b5a1vYwo&$y7 zMKBFsjn@AFKEd-J!Ow#K1iuD80<+!V82AnFmmn&s)HU+rYcvQx9N6gv;=}>NEHb90bK)C&2CC zW$-cZcc9qg9+&|?0DHjI2+vS`6%@M+gL3{nDE|EgH~`)OABW#Eh{?H?2-y$r2e*P} z!Pmffa01*z(8=>nQ2e}$;CdQ-9uzrV1|=>_;9l@FxBJfVaQ``#q9X_`ipcV%I-`a{j~U`N1!Q^jCu7hnGN( z8C`|`7H+WvY8rn^jL3yq)oL>e^_HQ;6K<(p!fze7&=p^bpCm@*+Q_|``yuXbZqa!w zH{oM0v7yK**EVj?>tV>@7J(3YbgkTzq{w8eo3ozb}HA++2i)S`&>0dZRHWM)8vES$WH|x^!ju+xCd3 zk6ErRSG47MPGPv}*}ALK?NYn*c^z+Uc+ehub-prEE!kzSX=!rYc4fm7mtD1c!YUN4 z;i6q*rad8|_BghMEU^e?Hl8fo$LofTdt5bOk6P8D2NrG5j-YjuENbsq6N`S`>F!bk zv3BvGcD%L}3bZ$0@Ra=2nWW2I*lm_#W3-uW-X5zQ(v6=CKannBnmNa*INHkR3+1sI z8*@aj>0BSv_@jULyHnfN0K>q zsWQ<(LPSZFZPclhmPTCd8&Lbop6!&aqApt{TfJxv+eI}PMR;wX>*d9SS`@PL+O3X^ z*seQTEfy!!$-9lkV}jbXz3TYFM$w`1NsQ5CZEY0^<@}@`cWjr8(S>qNy$0LYNg#xi zNYx80-bRPIWLu1y+bE~2E!QoKmF@h({Df7kqE6NI5EXCbZEAup+7=U)vRxB8t-fMm z>jUNDBnBx;35jFD)s<0`Q!YD9_@&hW6H9m~woB`b+37ZVDKdep4qA?DJL;fQC|S;= z{*FBvGl>a?agHH|kywn9RznhRb_5HY!|B?yHnCP$%$nCl2;`E8lu8k+*-STd_ z##gEZ2P?;e8t>Mbm`Yu4nJE*3hw4IAn`~+-T=$zxX>}Nl#*K0H@j|f(Rnnw{%SBZa z44QDYkzRsqq*9h;8OpkSVjRb_6rKsGh0(xdY$yh{Tket`Gl6f)lQs3*9B?_&Zoeek zk#Sm=t&Up70)vVpBZBs5!9HFi-Qv~8RpV2_sUpoUwJ)DKYCA5~u3ryYlU7;p9T+^+ zF=UTd94|HKjurB$=c{9G>TsoBcN{!$IAt0W`%?o*(yx0n*)6GTHr2aHXL|cLZ%$?U zG8s0ehU|%g&~4h6>D8IO{_N%r8Lo~ONv_mk$11x;QKw%IRfcT`8xK`n%PCaYP#&vV zV|MDWZIxKAlC}uB{+Q>D_xJQ1KYl#z$??LdeIh+lDfKwvL8qrA+NA7!$?YjdM0%WR zPj|=QzQMf)WowVQzi7Gn>ifvU=S*EyK*} zTsEtB>5OJO&pUIy@zRc5pA5~3%#LiYK6x@cvNPM)&5>+$B$vy`lG(R2w|U|Cw(iwLAF5L@(P2Jl<1rJ2j~46|7LJn`?vg=;Iu#GU+2E<-wrMWXElQv?a#`Z ztZIKMIL+TFrlx~4vORo(@_#6_IC#yUW&L6THGf7eX_xk|X=Ip3s56G|?cj9lNm$SN zcM{l$&^KEMAla>UM1l(+buz)L*!+xtN1TSgLff=aOZh*?wl~Df#!-tHvUw}PFz;Uz z7IiC3&Pt3#YnVTzC|eWls{D6w>%2b~oHK#OX_=C!n+tOB!phG`5fOr1LXA_Re`sRmCoaW?Ye~B{oD+$(&9wyK z(`^K~4;tw7k*2bk1;Q9>8#MpkZ>CVivkk(5qHz*6LKI7f^A@zgcTtg%T zmk?jx5$bhJtVk%{=G9@b*UFsB6#pD4W1`=-M0ulWdp}+KyY`6Qr7mn{VlpiED9VvLjza52hvL_RJQKDO8g5E6=oY&5c zIylEjiqi$DdF$7q zd<*cFBi%|eC?Ty92q%}hg%3~419tg8CT%*XNfi?yQTLF@F`q;dqT*O7piNDRii(G5 ZJ5nvhv57WsU&@+K!-lVFiHt-->fe!NUaTcraTiR|+M06if&5rChO)Efy;IlDrGf1&>*m>rJa(t7NYTALwFNE0&PO#F3T1iBXr-Qn%z=G$Ye}`y!9+ U=k{xR&3<98uHRU{C%%Ej|2@KRt^fc4 diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po index ea7bd4e0a5..4b031aa240 100644 --- a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-10-28 07:35+0000\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-02 04:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.mo index b13708db5755e95f42704dc97d04ae711ab1990c..5f7cd966a97397e64c58f446bb6f868cc3dab29a 100644 GIT binary patch delta 303 zcmZ3_c80C~o)F7a1|VPuVi_O~0b*_-?g3&D*a5`6K)e%(S%LUClz$dT^8xW~AXWzA zS3t}H#C(hl3|D|y7>GgoUNA8*umS0BKw1Du{{_;bAa%@OeZCATKn4&ocmN5Y9ykD5 z1_D6!V8?+B0a*Y7AoUC``N^fZsd*&|C6xuK3_giTsW}t3O*J+&)HO0zFfg(*HPtmR zF)-i?@YfAWEz2y<%+J$xNi0dVQZOFOo0HX5HXAZ delta 251 zcmX@Zww|s2o)F7a1|VPqVi_Rz0b*_-t^r~YSOLVmK)e!4ZwJzRKztO4m4WyQ5VHXB z4-lJ?f#ENZ2C2Wq#K0f`q#pojQ6T*hNQ2a~Gczy%5ra0604g^JG9dtD2nYbxfgQsN zq(KVdz$HJqG&eP`M4_azAa&xIsoVx8x<=*-h9*{q#*=dxWw{NEb&U)aj0~*|j3-ZF i?Be%H%u6p#Oi#5^D9(uw_M9xs6g|0vDR1&$CVv3GW+u!4 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 aeb0eb999a..5cffd068be 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-10-28 07:35+0000\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-17 08:59+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -154,7 +154,7 @@ msgstr "" #: models.py:47 msgid "Label" -msgstr "" +msgstr "Oznaka" #: models.py:51 msgid "" diff --git a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.mo index c153c3f2fd7e5cf196566c7d896f79f804b7bd72..e993492b2c80ed6bafd10a65d6540bc3d1c6c1bf 100644 GIT binary patch delta 64 zcmdnax1Ddp7G`ckLtP_d1p^~1Q`5=&nPs^R4Rnnx6b#I*j7=v$XYQWd#1h5tlbDxY UnwXwyrBId`ALh6DHcJc>09eu!j{pDw delta 64 zcmdnax1Ddp7G`b(6I~;71w#`nLzBt-nPs^RjCG9+6^sn642&l~XYS_rNz6+xO-xU< UQYg!e5A&N`$P&Hz4ofr>09E@FbpQYW 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 0965b2a857..cb8bfc085e 100644 --- a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-10-28 07:35+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_CN/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/zh_CN/LC_MESSAGES/django.mo index c00fc18ae2d1f68d1fc06f03e912d954eba67b8e..ba9e5196dd819087e7ac54f226936deff633a710 100644 GIT binary patch delta 64 zcmX>ka7bXo9TsjwLtP_d1p^~1Q`5=MS!B5l4Rnnx6b#I*j7=x=v$jrN!WzZzlbDxY UnwXwyrBIa-@9ekvFRLpP09xr2J^%m! delta 64 zcmX>ka7bXo9Tsi_6I~;71w#`nLzBtRS!B5ljCG9+6^sn642&o9v$pd4B<7`;CZ?xa UDO6>|JNr$Z%o@GBLE^CwnnQ@%SX>rI#kAr&=i_7ENBv*Z=?&BMqeh delta 42 ycmZ3?vY2H;JGX&}u93Ndp^25D$;3&kd3+M{(n}N5Q>_#dizeGJMo(VCSPuXd_YIr? diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po index 2931cbfb66..c92fce1501 100644 --- a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-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" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.mo index 92bf76bc18c67263829f327de3e23e042a98fc87..0bab54a440bc75ecc75dbcd91b0b5aa46fe86851 100644 GIT binary patch delta 42 ycmcc2e3^MdJGY^su92~VfsvJ|>BLFvCi^l*@%SX>rI#kAr&=i_rB7bQs0#oiHVv-; delta 42 ycmcc2e3^MdJGX&}u93Ndp^25D$;3(PczhD`(n}N5Q>_$|(kI(9Mo(VOr~?2byA7rQ diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po index f06b22c9e4..07bec77092 100644 --- a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.mo index 47901479e5dfea90252bdbe62e9517f947cf00ad..62051bec48072de7e0758d5af9800ddb9bdb24f3 100644 GIT binary patch delta 45 zcmdnRvWsOxJGY^su92~VfsvJ|>BLDVCTB55@%tp^rI#kAr&=i_6~{X{PCm?74ggD- B4-NnT delta 45 zcmdnRvWsOxJGX&}u93Ndp^25D$;3$~__$|isPLeCr2_yPd>s}1^`P} B4*~!H 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 ed09edfcea..ac177fba8f 100644 --- a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.mo index ecfd7f0ea85ae80f87b71aa044f086d4f328c55f..51a000c16af970f501b6608f412a8e845b699eb2 100644 GIT binary patch delta 42 ycmcb>e1UmFJGY^su92~VfsvJ|>BLE^CwnnQ@%SX>rI#kAr&=kbBu-w;s0#ogrwyC{ delta 42 ycmcb>e1UmFJGX&}u93Ndp^25D$;3&kd3+M{(n}N5Q>_$I5+~a*Mo(VCr~?2aLk*Jv diff --git a/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po index 7d9d6b8d98..234d769840 100644 --- a/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.mo index c5c6b0dfc1d3e22f89dd8ed33edf6707d7e81706..6cff24c79301713e8472b53f8873bf75e66e5d49 100644 GIT binary patch delta 47 zcmcc1c9(5~4I{Uqp{|j!f`O5hsp({Q#sibZnWFf867$ka6Vp?z6jD;-U0f#@Fuer; DN)8UH delta 47 zcmcc1c9(5~4I{UKiLQ~kf}x3(p~+--#smC5iFxUziRr0U3Mr}aF0PZ=n4%{aGQ9x+ DPT3Bg 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 0fab74e146..b087316afb 100644 --- a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 @@ -25,12 +24,8 @@ msgstr "Spiegelung" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden " -"soll." +msgstr "Zeit in Sekunden, die ein Pfad zu einem Dokument zwischengespeichert werden soll." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt " -"zwischengespeichert werden soll." +msgstr "Zeit in Sekunden, die ein Pfad zu einem zu einem Indexknotenpunkt zwischengespeichert werden soll." diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.mo index 4c0a17b256eb2b6cc6599d1f882557f3f16801b2..6bcd9f629a7e30c990fdd2d33100f323088b2afd 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|>BQ-e0Z_~bMF0Q* delta 21 ccmeyx^owai54VAdu93Ndp^25D$;9c80Z|JFNdN!< diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po index ca225e962e..4de25c13e7 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-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.mo b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.mo index 78067cd9cbdeba3a71d58d059e7d9e2e02aed9c9..aeaabc0089a2ea92365cf9c5ed400e423e5cd62f 100644 GIT binary patch delta 45 zcmaFC_JVDL4I{Uqp{|j!f`O5hsp({Q#zm9AF-GzDB<7`;CZ?xaDWn!}_Ggl01OPz2 B4bT7p delta 45 zcmaFC_JVDL4I{UKiLQ~kf}x3(p~+--#zj0niFxUziRr0U3aQ1DUob{*4q%dC1OPeY B4aWcg diff --git a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po index 7c6bd58de8..bb26ad0ebc 100644 --- a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 @@ -25,12 +24,8 @@ msgstr "Reflejado" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Tiempo en segundos durante los cuales se almacenará en caché la ruta de " -"búsqueda de acceso a un documento." +msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Tiempo en segundos durante los cuales se almacenará en caché la ruta de " -"búsqueda de acceso a un nodo de índice." +msgstr "Tiempo en segundos durante los cuales se almacenará en caché la ruta de búsqueda de acceso a un nodo de índice." diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.mo index 864ddf0483dfe04b23c196124b387ac3e37aeeff..3b64a3b97721e35f77422cc2c4b54dff808a36b0 100644 GIT binary patch delta 42 ycmX@be2RHOJGY^su92~VfsvJ|>BLEECVMkR@%SX>rI#kAr&=kbB~D(#s0IKZ?G26q delta 42 ycmX@be2RHOJGX&}u93Ndp^25D$;3%(czhD`(n}N5Q>_%z5+~a-Mo(VKs0sifgbjrN diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po index c1484d7996..cca30de7cb 100644 --- a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.mo index e4f0774f51e81b31e62b380c2c427f33f4f16d93..973c969c2de93a2bb11f7ae36e7eaa69115c917b 100644 GIT binary patch delta 44 zcmX@gc9d;{4I{Uqp{|j!f`O5hsp({Q#v_v@n4)-m67$ka6Vp?z6w-<&7cyM|02y=* AivR!s delta 44 zcmX@gc9d;{4I{UKiLQ~kf}x3(p~+--#v?pFiFxUziRr0U3TZ`?xtO9S7cpH103F>8 Af&c&j diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po index d61c1d7285..0d80bc74a1 100644 --- a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Thierry Schott , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:08+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:7 @@ -25,10 +24,8 @@ msgstr "Duplication" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" -"Temps en secondes de rétention en cache du chemin d'accès à un document." +msgstr "Temps en secondes de rétention en cache du chemin d'accès à un document." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" -"Temps en seconde de rétention en cache du chemin d'accès à un noeud d'index." +msgstr "Temps en seconde de rétention en cache du chemin d'accès à un noeud d'index." diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.mo index 2ae13c4f0743468bf578fcf00d46294c42d6386c..4e73198520791032f59d8fbcb7cf7b39c256e7eb 100644 GIT binary patch delta 42 ycmcc2e3^MdJGY^su92~VfsvJ|>BLFvCi^l*@%SX>rI#kAr&=jwlulm8s0#oipbf(S delta 42 ycmcc2e3^MdJGX&}u93Ndp^25D$;3(PczhD`(n}N5Q>_#-N+;VhMo(VOr~?2cbq%@z diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po index 9024298060..12c85511a0 100644 --- a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.mo index ac4749ac840e1221bd628bebf0b46c710dc92bed..479a91534cc429381ef72213ce983cff638f2314 100644 GIT binary patch delta 42 ycmX@he3p4aJGY^su92~VfsvJ|>BLFvC;Kr*@%SX>rI#kAr&=jwrc7SWs0IKbiw&ay delta 42 ycmX@he3p4aJGX&}u93Ndp^25D$;3(Pd3+M{(n}N5Q>_#-QzknwMo(VBs0sih6AhXG diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po index ba2507506e..d2676a954c 100644 --- a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-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" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.mo index 8c52273939ca63ceb458bd755f82d91ceacdf3dc..5b9e2fce3389931270fa99b7475eb4722578322d 100644 GIT binary patch literal 831 zcmbu7!H&}~5QYsb2Xf@hVYuxIIZ4A7O1edeZda-xP%VKI7vs#PhS(0aOLxU{aNy2~ zEAPW2ARd8nchz!5jPz+d@yvMa{6BB+ePLvK#2w;@xJkSvqV>cr;v?~p_)L_<590eZ z#(t4ch_BZfdq(~n`4{AWlc#M)j@=+)|BY43IqQ^ZS*2K(|8CLq>xL5K=dLk zp|keGs*f828Y@>CO-TQ(&d>=Bo`bOsrflKtdz69C8~z5JSJsqJi3?$1c3izmPO-Nx z@XEKU;ZIks=d~>%S-hbU|pQSNefe<`wl(Ak&baHui{k8C#@E$OQqG1soJzF z(IT%==o02Zbc$}UzYL)-vuwRyry=%MXLuefGH1PT%DPO)t8#3#&$_E7nF`rKQq8N` z?nMS^o=mL?^xC|>=;^uv&qLOCLYXnhrEng@0<1>e+nrJr^yoli2Swo i;&*ACx6mkXN>W6+!EUP^OXB(8UL>SAOGE9`l>Gtt$o!cA delta 187 zcmdnbHi0GTo)F7a1|VPpVi_RT0b*7lwgF-g2moSEAPxlLm5dAw(LkCDh*^OefLyRX zAcX+FnMFnUMVWc&6W{uC8<^-CnJXBYSQ(m3c4w61GS)RRR4_8MGO(DO&nT|oo|#{k yn3tES5K@$xoCw7E3O4B_Ft(-97|M3sa6V^C6ig1q9^AvnF9daRV8-- diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po index 21354226e7..0d44e378d7 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po @@ -1,22 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 +# Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:08+0000\n" -"Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-09-24 08:52+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 @@ -25,8 +25,8 @@ msgstr "Mirroring " #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" +msgstr "Tempo in secondi per mettere in cache il percorso di ricerca del documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" +msgstr "Tempo in secondi per mettere in cache il percorso di ricerca del nodo indice.." diff --git a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.mo index e45c5112173d365d34bd5d4e3797d4fd75f604e2..9cb6cef19b31910c3ebe3fb9a85fb1ced4e11615 100644 GIT binary patch delta 264 zcmaFNyoe?0o)F7a1|VPpVi_RT0b*7lwgF-g2moSEAPxlLJ&X(t(NMkwPy>())(4~z zz&Ep~D8DE(FMXngf4!lhu92~VfsvJ|sjh*EfdN;5ziv=!S!Qu&ex9yNVo9o%f{}rt znJ!SBfu(|>nU#rwwgC`u`6L#X=!O&}<`w58mgE;%DY%xU=458&DFi1b=9FaSWh>aE zLPUz80uJf9iJ3Wi$@#ffi!<}{bX^ilQmqt>3=BtyOcV@Etqcvd4S;~lC$YFh zH>4;ruQ(^MB)`Z?!7bFsN5Rk0*HyvB)z{I}$HCFXCCD{6c(NR03cpWcUV3R_I?%Md RoOnN<$&HNBlix7v002>XDhmJr 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 3d84a45bda..efb5a083f6 100644 --- a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2015-09-24 05:11+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-09 16:40+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" -msgstr "" +msgstr "Spiegelen" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." diff --git a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.mo index f160ee771b34a4348eafe2164d47d46e520bbcfe..1d962cf8cfd08b3069996b922124b4bc89c809c4 100644 GIT binary patch delta 42 ycmeBT>0+7C&TVL@Yh7|M3sa6UFIg=MNrUL*BL=9sA delta 42 ycmeBT>0+7C&TU|#Yh\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.mo index 549cad4abf86f866a07904d8da59cd31e5d1fb98..d6cb0d7f17accdd9823102706864c6e75a5fcde1 100644 GIT binary patch delta 41 xcmcb@e1&;JJGY^su92~VfsvJ|>BLFvC;Kr*ar-3ZrI#kAr&=i#OkT#Q2LKiU4O##I delta 42 ycmcb@e1&;JJGX&}u93Ndp^25D$;3(Pd3+M{(n}N5Q>_#VN+vrnMo(VBr~?2dE)B*2 diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po index 156dcde1e1..5102d6b7c7 100644 --- a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-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" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.mo index 604d9bfce821b941f3f81ec74b37a28c130f5d6c..4aac618884b4564e8facea4ab44d73f6648de748 100644 GIT binary patch literal 895 zcmb7?y>1jS5XTLKf)y1F4aJmqLf(%ffv}fEkmMpoV#O&eR7hxUcW%$HYj12X`QSNt z04ge~P|)W+cm$q-*-Mm2G$@vS9)FBy#`gdBgO#s>+Y0lD*x%0k*kJ4X>e2+T{`dv z3M>``o@vo9pf=`H*Y+C-r760Gv=47~PIHEmjzOD}LNT@GBNblmm+~E1r;JV^!xPjn z+0EVr2h9k7Q8~|Wo}Ws8ojY8ysVWb*t4WOI@rK|`eND7FV@1sG~vu{ z@ljoMSdq*Ln-r#8Z&!8X2nO30PgOmH!NU7CjiRHYqtN$B)SQm{0FgBgtui)h`a4T1 z8yD4=0i)J`*glAcLAIYwu3sk!<6y^V&o3|Yla{aU>DWhYjY^N9SfF*}H{a%aa{bz` zPdXr=~SP4J)VWbZH!v9EfWK1BV^fybfp^JSC0x{2TxMrLYjJ@hl~RS?7x701I-i h*H_nENzAauZkU3LxzO%^Qt0!uKK=O*U8;fw`4^7H6(s-w delta 172 zcmey*_K4Zyo)F7a1|VPrVi_P-0b*t#)&XJ=umIu}KuJp=4N?OG6W{t98JOrAnJXBY zSQ(n=8kiUua0U452Bnr|7H8(?>AEDAq*^H$85o-C8d&NYnJ5^TS{Y8xW0a6^3-$3) z@N@KaRj_gOb@cRcaCC7Aat#iiypA!2-zPCIy)-c$sI{OZ-YICZAXD_@8YXQ3)J!Bt 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 b1507855b1..8996463034 100644 --- a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po @@ -1,31 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2015-09-24 05:11+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-04 19:01+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:7 msgid "Mirroring" -msgstr "" +msgstr "Espelhamento" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" +msgstr "Tempo em segundos durante o qual se armazenará no cache a rota de busca de acesso a um documento." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" +msgstr "Tempo em segundos durante o qual se armazenará em cache a rota de busca de acesso a um nó de índice." diff --git a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.mo index 93e81936d76b1b4b1a233f220f1c72d9fe5108db..88d7137d3d447d1125abbcfcf3d7b9934a35b28b 100644 GIT binary patch delta 45 zcmeBX>1LVG&TVL@Yh7|M3sa6U_`SC&ileaR40RTCh B4vzo; delta 45 zcmeBX>1LVG&TU|#Yh\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.mo index cbbc14ce5d518a31cdac954c93db9e89fe8251dc..50188f62fa9e246678749cb49d39ff11347479f7 100644 GIT binary patch delta 598 zcma)%y-EW?5XUzf5yi?{WP90giAM1dD;qK52f;#Ymb)dc#@+MoB7#MXBG`zih%ev+ zhM+}nNg=o(Q+>Y5^RWDiYN_&E`I n+u~?*?N1P1*@M5jtHkWfo`V=jpm6mZVxK7#SFv>Ka(;8kr~aS3t_4z`;-fiZ-~CowO*G%+2hxu|sVW5(#o-b~v7O==_= diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po index 65bb0c7992..eac7a5d1cd 100644 --- a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po @@ -1,33 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2015-09-24 05:11+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-07-19 20:05+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:7 msgid "Mirroring" -msgstr "" +msgstr "Зеркалирование" #: settings.py:11 msgid "Time in seconds to cache the path lookup to a document." -msgstr "" +msgstr "Время хранения пути поиска документа в кэше." #: settings.py:15 msgid "Time in seconds to cache the path lookup to an index node." -msgstr "" +msgstr "Время в секундах хранения пути до индексируемого узла в кэше." diff --git a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.mo index 92bfb0dcbb5ce75c8e11b248552822c500f7b8be..eb496c2c01b457ceda99baf0df8d87c1188675ff 100644 GIT binary patch delta 45 zcmbQiGJ|D8JGY^su92~VfsvJ|>BLEUCdV;G@%tp^rI#kAr&=i#=fnqlPTtO#2mn4^ B4zmCN delta 45 zcmbQiGJ|D8JGX&}u93Ndp^25D$;3%}__$=bK-+NC;Ku+Pu{_p002K| B4yOPB 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 460b14a8ab..393a1b22b8 100644 --- a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-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" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:7 msgid "Mirroring" diff --git a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.mo index 02e0ad029a7e021fd382146f0cea0310e8f43100..7acdd78d6999c9700394c248ba9a37b1440c9b0a 100644 GIT binary patch delta 45 zcmcb|e2;lTJGY^su92~VfsvJ|>BLEUC&x2J@%tp^rI#kAr&=kLWyXj3P2Rz%1^`w) B4-EhS delta 45 zcmcb|e2;lTJGX&}u93Ndp^25D$;3%}`F#@e(n}N5Q>_%rGULPiCi^i)Pu|I>3IJDF B4*>uG 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 948eb7780e..8378a062d1 100644 --- a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-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" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.mo index 461fd199960bc94f57a60bdf8703be8123cdcad3..0b054893379b4d2bb95772ea5f5ded11121fec98 100644 GIT binary patch delta 45 zcmcb?e1myHJGY^su92~VfsvJ|>BLFfCr2_y@%tp^rI#kAr&=jgWyCxCP2R+)1^`l} B4&ML( delta 45 zcmcb?e1myHJGX&}u93Ndp^25D$;3(9`F#@e(n}N5Q>_%LGUA>6CVMbOPu|R^3IJ2! B4$}Yt diff --git a/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po index 285b33fe2f..90012aad6d 100644 --- a/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:7 diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.mo index 39802cd24446ab1e17245a70054f5ee013e9e05e..56d5a2babfafdeb973ede5a11f802ee50b57a3ea 100644 GIT binary patch delta 42 ycmaFE@`h!?PHsa(T_a-!10yR_(}_n`Pp)B%;_*q$OD|1KPqk7=ESh|kaXJ7y(hn8@ delta 42 ycmaFE@`h!?PHqDeT_bY^LlY}QlZi)G^Y|p@rI#kAr&=i_7ER7$jGlaraT)+S91jfu diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po index eb172173f1..324015cb62 100644 --- a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:21 links.py:25 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.mo index 6ab92d714da839b42621c9d09ce2a463938cda7b..94f1a9c70635892ea04ba1dddb9ceb1f3f50e89e 100644 GIT binary patch delta 42 ycmZ3=vXo`QPHsa(T_a-!10yR_(}_pcO|EB*;_*q$OD|1KPqk7=N}qg#(H8(EAPzkM delta 42 ycmZ3=vXo`QPHqDeT_bY^LlY}QlZi*x@%SX>rI#kAr&=i_rB5zojGlax(FXt|8xAx8 diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po index d2aa2a2c7c..b1ff9522f6 100644 --- a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.mo index 7820370430815ee95dfe4ba30a6609eaeaef0e99..da5ac9527fe656da3dbc57f9676bf014c6140c94 100644 GIT binary patch delta 45 zcmeyv@`q)@PHsa(T_a-!10yR_(}_n;OrFCS#qX1tmtLBfo@%9#R2=W*IQc7MI{\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:21 links.py:25 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/da/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/da/LC_MESSAGES/django.mo index 85288ed1c5945161d8c8ba32b80ca5d0ccd9cad2..84dbc72b69e767d531594dd7e47061ce68a2513d 100644 GIT binary patch delta 42 ycmey&{F!;e5^h67T_a-!10yR_(~0X>Pflly;_*q$OD|1KPqk7=Nt}Fu(HH\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.mo index efef14bcd630aa5cc95cadac27d1858abd49b9fa..140ebef96620bb24806a41e097c7df5fba574d00 100644 GIT binary patch literal 1867 zcma)*OK%)S5XT3SfV1J5@DdNvkObL6v#-Qf7-J0fZXk*`vEof~jCy9uJB??1R^2^W zulWk(h{OR23C^4l`2fI;3kMFIBJl}wH+Ty2sS{)U8SpIRbKnB_9(WF{f$VP+d>8x-QxPT&F0p9{E;AN2OSfA+cf~O&CknQ(DwtFzqe+_cH@4z$Q zLy+VC3?hX0CwKvT1ah1cXu=!d>md7E0lDRD%M0lj@pR$y^`yq+23*qh^VuemR1 zYmqPK$oX(?+;_f9q)^n({p4PAKHjDw=}7d+TG^u`qV-z5DRnHI>f>YAkrBg0MTu~U zveRQ?sM1t~Bw}R;sT@&UJ#sSFPNg_W`tU*caM{t5l#(N_RbUzdsf=Zp%(4x{MZ4~` zW95q1)RfhS6p*wGQ;NY@#9R`W<88^1Qm->9eL|7#B1M!UN7F4k`} zlZ}iTIF;$KMcJCFx8o$6%%XPTTt+UJ=``WvEx4m-INi10w#h!H$obb|{|*_8D1qq6 zk<_By>g-f*(Ev&K9oti}zmfN>-^~J1*}mEJi`#|0&-WOJX1%fEHyVEPlBhR>Hq zxn75%e~a!b_B(G^U-p}I(QE{l8t>P!DqGSzziXtnsdSkML^lhSv|?M*V2{Lyt`Mt( zLi~7)swVdlPU>Ec-^=fk><8jgGJPb!IOb?cEGEtkf?91j99A6%P`k8Wjk12tWL6rL znOdLg^(pS#S~~Goi|JmgU0bSju65dFXByRdWi!)`G_oBHP`0CeSHpj)^s0ywX)L+5 z+uf`FmC}xb?vnA_I?7_Ddx5wTDmP0!z!f7_WjoD{O#Q2w>Dxf)K_S|;=BgNft}SZu z&YEZ}tya7nGD-|4#R=S*qckO5>M#eT7MGLvMUH>-c47`lIUz#?G#Domr5lt@*zGxt zn;B2okz*nLyMz3H9Nqfmp^Y$%hZ0JUDKSW5s$KUsNSYAY%^zcn@IUmZZ%+Nmo>TV~ z8O*7UF$ss$hGUc!C7Mi`Px-~uCA#=~Y^j@10ijBZ>!dK1*K@Q{Y+x!ALn_R5k6UTc f(OEYqb9p?O7J4rALC&2f9nW1rbv{1Z6c*mUng8-E delta 375 zcmXYqF-yZx5XVoORBb`QMF)|504r@xDFz24i6EvGtWFO4k{nGiL`b58i=&H!5S*NK za&QuLDu|OhISS%O@&D2u{P^9yyLb07Jy0)xXO$a5On?Qj2ddx-$an^2@B$Pt0CM&n zsNic1MbI&{@_V)IZjl8ui+{9c2wUD>mzzZA{V{F_*X1}ilfpp(4tb24Ufxt zvN+<5$@asH>{z%F`{W3hBkFLPiat~KB, 2016 +# Tobias Paepke , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 20:55+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-05-20 21:31+0000\n" +"Last-Translator: Tobias Paepke \n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" -msgstr "" +msgstr "Nachricht des Tages" #: apps.py:29 models.py:20 msgid "Enabled" @@ -28,7 +29,7 @@ msgstr "Aktiviert" #: apps.py:32 models.py:24 msgid "Start date time" -msgstr "" +msgstr "Startdatum und Uhrzeit" #: apps.py:33 apps.py:37 msgid "None" @@ -36,11 +37,11 @@ msgstr "Keine" #: apps.py:36 models.py:29 msgid "End date time" -msgstr "" +msgstr "Enddatum und Uhrzeit" #: links.py:13 views.py:29 msgid "Create message" -msgstr "" +msgstr "Nachricht erstellen" #: links.py:18 msgid "Delete" @@ -52,7 +53,7 @@ msgstr "Bearbeiten" #: models.py:13 msgid "Short description of this message." -msgstr "" +msgstr "Kurze Beschreibung dieser Nachricht." #: models.py:14 msgid "Label" @@ -60,7 +61,7 @@ msgstr "Bezeichner" #: models.py:17 msgid "The actual message to be displayed." -msgstr "" +msgstr "Die anzuzeigende Nachricht." #: models.py:18 models.py:35 msgid "Message" @@ -68,42 +69,42 @@ msgstr "Nachricht" #: models.py:23 msgid "Date and time after which this message will be displayed." -msgstr "" +msgstr "Datum und Uhrzeit ab der die Nachricht angezeigt wird." #: models.py:28 msgid "Date and time until when this message is to be displayed." -msgstr "" +msgstr "Datum und Uhrzeit bis zu der die Nachricht angezeigt wird." #: models.py:36 views.py:66 msgid "Messages" -msgstr "" +msgstr "Nachrichten" #: permissions.py:10 msgid "Create messages" -msgstr "" +msgstr "Nachrichten erstellen" #: permissions.py:13 msgid "Delete messages" -msgstr "" +msgstr "Nachrichten löschen" #: permissions.py:16 msgid "Edit messages" -msgstr "" +msgstr "Nachrichten bearbeiten" #: permissions.py:19 msgid "View messages" -msgstr "" +msgstr "Nachrichten anzeigen" #: templates/motd/messages.html:8 msgid "Messages of the day" -msgstr "" +msgstr "Nachrichten des Tages" #: views.py:42 #, python-format msgid "Delete the message: %s?" -msgstr "" +msgstr "Nachricht %s löschen?" #: views.py:55 #, python-format msgid "Edit message: %s" -msgstr "" +msgstr "Nachricht %s bearbeiten" diff --git a/mayan/apps/motd/locale/en/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/en/LC_MESSAGES/django.mo index 4c0a17b256eb2b6cc6599d1f882557f3f16801b2..6bcd9f629a7e30c990fdd2d33100f323088b2afd 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|>BQ-e0Z_~bMF0Q* delta 21 ccmeyx^owai54VAdu93Ndp^25D$;9c80Z|JFNdN!< diff --git a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po index 032dbb106f..0db8de404c 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-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.mo b/mayan/apps/motd/locale/es/LC_MESSAGES/django.mo index 874ec161d3811cd0cee51430a06a51e9baff32b0..7efba470687b1528aea5cb8bf4c8cc2bd9073c3b 100644 GIT binary patch delta 44 zcmeC<>*L$-o0;3tP}j&*L$-o0;3dMAyh%!O+CY&}1?j%OW11#Ju#<#Pn1vh1BB7%UPl~^RxbE1OPOd B4iNwV diff --git a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po index a23c5ae2f6..34c363de35 100644 --- a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 21:13+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 @@ -69,8 +68,7 @@ msgstr "Mensaje" #: models.py:23 msgid "Date and time after which this message will be displayed." -msgstr "" -"Fecha y hora después de la cual este mensaje comenzara a ser desplegado." +msgstr "Fecha y hora después de la cual este mensaje comenzara a ser desplegado." #: models.py:28 msgid "Date and time until when this message is to be displayed." diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.mo index 5ac3e5b6e4f24905e83fe97dd139ac2204eb17a5..21beb0f96bf3078ef689f48c92c16e051343d152 100644 GIT binary patch delta 44 zcmbQiI)inC7$di#p{|j!f`O5hsp(`z#x;{~F-GzDB<7`;CZ?xaDWoM%HfBl%01Ph- A&Hw-a delta 44 zcmbQiI)inC7$diViLQ~kf}x3(p~+-L#x*=XiFxUziRr0U3TcUx&oD+$HepHu00xH) A#Q*>R diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po index 9be9cdc444..c0c7967e4b 100644 --- a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.mo index ce72b67579553c365f74e9c2cf706d2e84377c41..19af43041f4582fca5471c1b3c7a0777e1a7d9ba 100644 GIT binary patch literal 1777 zcmai!J&YSg6vr1xAaVFi2p)F-J zY@8FKrJ_YNL_wm6uAri%ybc-)Dhd!1eM$(t|(_bhlCd=7jCd>>q@7=ce>|6O(d14zDp0#AUyg3p7$fzN<{ zgHM4Es{Oy*Hpi^VWe=9jij|=AdhXWw@HUWC(Nl4UQ#Cw8xK`H zWNxTzZN|nb%UC2?qHK|geVH_mS(e(V43<(KHG~hBAGeg5bkf_Lpbmjlrh7M>WgD`$ z?T20`QEu{6tCIML06Q(BOeSE$5-N$x@wy_Cnb)gIugLNgDWVjyUmw}o%i`fDxt8AU zFgK1R(#A#=PUU*4F>g)N+jW9eW>NcaE@D@TtWNmR7VIfGu1~GEWAa-vc6>YGd(v1$ z30Y6<3(Y#4z1_wQSs)4CvjdgzYvsW5ejc*M&Zm7o`MS{O^c_Ri4qBIatHs;zvY;KV ztngqt2%yMs$lHqiF6sr#ynUGk?}aPNmjbLtS6IjUMrfM}mz$7X6DZlDn;)-lce|ZF z`yi?$&4Iv;knW?{x~Q3&t1#As5;u(Zr5J^5%Seq&v@~?C2z`G%9yc9%R;j$xjPsFi zax09=jX$D7xlBgZ&nh2&YW$0h-gd7u??P#7!S z+RgqJzcSaOh^aKZqvJeLdJwWJk#e(KLzbGxPF5O`@vYp9Y{+ym+1j=CDx1EpEopX@ zwJxqUFg%9`n2%D|pRShRe$=9Bq@-g*SsGk3$uhx;GRjmeCKo6vYu##y7Ijml|Hovv zEDD3$ZM@kV%NFA=it9+zN$Q~qse&bq6bi|XOxj$!P|SMl)a}EA>9nI37SXV75) delta 365 zcmey!yMnd;o)F7a1|VPuVi_O~0b*_-?g3&D*a5_BK)e%(S%CNe5QEen1!7hpJ`3ev z2GSt;+dw>(k%8d>kmdy9GA0HF4j|nCq(S;Rq5O#uegeZRAOmF3A|MUa2Q~yqfh`5m zAOMtNUjSl7r\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-04-26 07:54+0000\n" +"Last-Translator: Baptiste GAILLET \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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" -msgstr "" +msgstr "Message du jour" #: apps.py:29 models.py:20 msgid "Enabled" @@ -28,7 +27,7 @@ msgstr "Activé" #: apps.py:32 models.py:24 msgid "Start date time" -msgstr "" +msgstr "Date de début" #: apps.py:33 apps.py:37 msgid "None" @@ -36,11 +35,11 @@ msgstr "Aucun" #: apps.py:36 models.py:29 msgid "End date time" -msgstr "" +msgstr "Date de fin" #: links.py:13 views.py:29 msgid "Create message" -msgstr "" +msgstr "Créer un message" #: links.py:18 msgid "Delete" @@ -52,7 +51,7 @@ msgstr "Modifier" #: models.py:13 msgid "Short description of this message." -msgstr "" +msgstr "Description courte du message" #: models.py:14 msgid "Label" @@ -60,7 +59,7 @@ msgstr "Libellé" #: models.py:17 msgid "The actual message to be displayed." -msgstr "" +msgstr "Message à afficher." #: models.py:18 models.py:35 msgid "Message" @@ -68,42 +67,42 @@ msgstr "Message" #: models.py:23 msgid "Date and time after which this message will be displayed." -msgstr "" +msgstr "Date et heure de la publication du message." #: models.py:28 msgid "Date and time until when this message is to be displayed." -msgstr "" +msgstr "Date et heure de fin de la publication du message." #: models.py:36 views.py:66 msgid "Messages" -msgstr "" +msgstr "Messages" #: permissions.py:10 msgid "Create messages" -msgstr "" +msgstr "Créer des messages" #: permissions.py:13 msgid "Delete messages" -msgstr "" +msgstr "Supprimer les messages" #: permissions.py:16 msgid "Edit messages" -msgstr "" +msgstr "Editer les messages" #: permissions.py:19 msgid "View messages" -msgstr "" +msgstr "Voir les messages" #: templates/motd/messages.html:8 msgid "Messages of the day" -msgstr "" +msgstr "Messages du jour" #: views.py:42 #, python-format msgid "Delete the message: %s?" -msgstr "" +msgstr "Supprimer le message: %s?" #: views.py:55 #, python-format msgid "Edit message: %s" -msgstr "" +msgstr "Editer le message: %s" diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.mo index 7ee3bfeecdab0c575bca0378b58ea1193b8f2dbc..1806831aae8cbc22e30ef48e6646d9151bc80736 100644 GIT binary patch delta 42 ycmeyy{Ed0S5^h67T_a-!10yR_(~0ZXP0nJB;_*q$OD|1KPqk9WD4l$m(HHrI#kAr&=jwlunLejGlai(Fg!IpALEe diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po index 6b563210c7..e39f06cc30 100644 --- a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/id/LC_MESSAGES/django.mo index 1f3edf1031ebee3a485fcbcf23d633eb7f244772..e55867630e72c99e0d0becadccac63ff26b141bc 100644 GIT binary patch delta 42 ycmX@he3p4aJGY^su92~VfsvJ|>BLFvC;Kr*@%SX>rI#kAr&=jwrc7SWs0IKbiw&ay delta 42 ycmX@he3p4aJGX&}u93Ndp^25D$;3(Pd3+M{(n}N5Q>_#-QzknwMo(VBs0sih6AhXG diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po index ec4b2be048..d86531e352 100644 --- a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/it/LC_MESSAGES/django.mo index c2ab8a70638695dc2af1aa64a1c405acb1818606..a8a530aaa430ac961f4478d06afc0d417a379788 100644 GIT binary patch literal 1827 zcma)+OOG2x5XT#mK;rOB2;qQ4^9b4qjXidDQ8J5pc^$D*oLyzjiX7WBWxJD^9@E`k zXBY7eI3aNYi32wf;=qOPz=Z?nAa2~?hQulV8joka8-!@7=hxL;Rb5pxHTTb*{6b({ z#C#F+SIn0%KYIiZjMI+_@f3Ild>VWKyauk69Dt8O{;E9x24r79f+xYB!Dql$Hr{ERvJCObV20jb^0doHTl=~Nv6w4Ci^EP+}+yeRD+oh~aI`BE{e+shS z&q0p+%ToRUyaf3tkp0~UUjzRFIlc=h3YQ$$7X#rJb!4Bc&x7@NJTb>Z&kNY$T626T zYY}e^Jd4S(aNW5kxUz_m>&dl#9#eEIDNiyZ=hTRfiB4?rp)!f|I>Tb<$;#PS$7AWo z+AYlFOsApm@8`5BNPsvK2Pp44TcLbw!4)Xl*SB zSHlpB!7bX;>~~o&ycV=pWiyPz)i*+n+70D=(6`FCRQcR;3^vYXM`e?g9Lcvbmg{jT z*R%NDQKocSkMrzpSewxlpIFc*l|^#Xt5hR{m9h7esL`0sW_8cL^^oqdMZ@M!S)JQP z#;FFBWUi5xP8!-bF4uaSz3yQ}n)R^O$&Dw2DEB8w*V8@U!1t)lx{SxlI`Zug``3f3 zhkAVDkZjO3ah_;1isaRS_EoTvgs`1XtxALIxy@W8&7=@ryR|Oo%l3+qFSlj$@_Mc4 zpYp|xbbeG6Tb2_-lSpm!0ahqFJ_CJlpdcA;ANlc=96Dm&k8n|6vKngW{4bl1GBKs8 z5{pIUu-dUC(UH|X^Iqzq2tyq!u~_`4R%I>T8|YMfd==dGN|Ma2k{qt+di*TNd$=t6 zjH^u#P1sJ2lK2U5r_HN1u(bEDHCqm1Ug^qdE@?PKIC>B7K`j;2 NQeEs4UcjOv;sKBS;?4j7 delta 337 zcmZ3?*UwsiPl#nI0}!wQu?!IV05LZZ*8njHtN>z=+)5y30pbln%nrm`ftVGD_X06U z{4fwtXJlYF0i-#AIDrX5X98(XAioGo*FeSFfHY9K2Us&u9t8m97?`0VAj?4(F}S4W zq?V*IxTa*5Fu3L=Cgr52F!&@UrRFgB<>#eNUc>CqZD68nWUgRnVr6JDnTgpxtC8y@(Br^Esr(~vOCMPmDCS~SimL!(sGo+SeCTFCUlq53vr4|>L J<|QgH006$xJ!Aj? diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po index b4190806e3..c94b91b5a2 100644 --- a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 20:55+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-09-24 10:04+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" -msgstr "" +msgstr "Messaggio del giorno" #: apps.py:29 models.py:20 msgid "Enabled" @@ -28,7 +28,7 @@ msgstr "Abilitato" #: apps.py:32 models.py:24 msgid "Start date time" -msgstr "" +msgstr "Data e ora inizio" #: apps.py:33 apps.py:37 msgid "None" @@ -36,11 +36,11 @@ msgstr "Nessuna " #: apps.py:36 models.py:29 msgid "End date time" -msgstr "" +msgstr "Data e ora fine" #: links.py:13 views.py:29 msgid "Create message" -msgstr "" +msgstr "Crea messaggio" #: links.py:18 msgid "Delete" @@ -52,58 +52,58 @@ msgstr "Modifica" #: models.py:13 msgid "Short description of this message." -msgstr "" +msgstr "Descrizione breve di questo messaggio" #: models.py:14 msgid "Label" -msgstr "etichetta" +msgstr "Etichetta" #: models.py:17 msgid "The actual message to be displayed." -msgstr "" +msgstr "Messaggio effettivo da visualizzare." #: models.py:18 models.py:35 msgid "Message" -msgstr "" +msgstr "Messaggio" #: models.py:23 msgid "Date and time after which this message will be displayed." -msgstr "" +msgstr "Orario di inizio visualizzazione di questo messaggio." #: models.py:28 msgid "Date and time until when this message is to be displayed." -msgstr "" +msgstr "Orario di fine visualizzazione di questo messaggio." #: models.py:36 views.py:66 msgid "Messages" -msgstr "" +msgstr "Messaggi" #: permissions.py:10 msgid "Create messages" -msgstr "" +msgstr "Crea messaggi" #: permissions.py:13 msgid "Delete messages" -msgstr "" +msgstr "Cancella messaggi" #: permissions.py:16 msgid "Edit messages" -msgstr "" +msgstr "Modifica messaggi" #: permissions.py:19 msgid "View messages" -msgstr "" +msgstr "Vedi messaggi" #: templates/motd/messages.html:8 msgid "Messages of the day" -msgstr "" +msgstr "Messaggi del giorno" #: views.py:42 #, python-format msgid "Delete the message: %s?" -msgstr "" +msgstr "Cancellare il messaggio: %s?" #: views.py:55 #, python-format msgid "Edit message: %s" -msgstr "" +msgstr "Modificare il messaggio: %s?" diff --git a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.mo index 54696dca91cb321cb84ba3e9acdd75245355339d..12c7950e30378f3a9f3c852e7461a806a7d26a3b 100644 GIT binary patch literal 1278 zcmZ9KO-~a+7{^z^7wRi$Vq!duMiYn*yRBew5m9I{Boql$u4dYO*lxR>ZDytvzJYo- zG4bkwlioa;c=qhUi}CD*PvFJ>Y`dlKWM_Xf&-*;PePUI9OVXTgL1`3q?Mzk{RTFYqe(8@vP_g6F`0;2Ch_bniR{PT)Kao(J!O*FX;1 zJkLQJzXET_cfc`l7PN7T;7xD~wD}}x{kouydk0o?diHL1fZb=4#c)6gWvyjVW-}M3rKv z+%McGOLo$%f!NPXdaxNbt|yY5?TETrCGBjeq(L>qR|CFHN=J$GSy}80$x6lYR&JBp zi88#b!zkcOolx^i;m&)B+6%{U5cZIWLrYSCX!9|gnAm?S3C<_B8sPLN$V-1 zW!S-&;1v=rpA|c%R%eszgi)(l$UslA$+|IZ-*vm)?zFLWq8-|^(XL9gP*I}Xmc2Ho zpru^|r3qabzg}N+r*h@ha_MM5`Drh=oJd0wP4BmHdqaE1ZO0;#^Q=}EN|RZ5RaxP4 zM}D^G4k=!ewIqmS=(D+MWCp$aEUlH>h&xKed?isW4P84u>V?8Q>unb%CA+=A@>BCU zrz}L1RY^s)x?w`dV+xX~3SYGwH3Cx3V3&oE9MaXvWcuE3xkO!3P5AUS!^RUT_^is1 rG%ntxIQvPLdVRsS*WWJwseo7@!c3LsPL1ew$ozs*OEYQ=ZU@DGBqBm1 delta 312 zcmW-ay-LJD6os!z{8<$Q8ykfnSZN@MS%k2KkwjUTjbL;ei)A#Ixb83uNo2vsRy!eB z+Spn6N_IYgFCd=mfsc=K=U(Qo^J_hQZ(47JEP`zigJqyVn`f{DUVsH&LHphwwf!A@ zE)add9Uu&%6?h1*!y~xeQ!v)%X*(*JM7#5k=hK)K*Gx%1t|`&-MsZH*RCALV=WA}@ z_(!%EgkI2m89SkS==h%PyJ5Gx?;@*0R<(0kN?j>gPs`9gy%NGsqd{W#l0noL$59+# zBw5yMnfZp0x_FQUhqhLuR5Xv~b@O8$>4axoPFPc47hK)m$qB2R&KQ$_ Dz@k2c 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 c70d1dfd6a..afed4b1605 100644 --- a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 20:55+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-01 09:04+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" -msgstr "" +msgstr "Bericht van de dag" #: apps.py:29 models.py:20 msgid "Enabled" @@ -40,7 +40,7 @@ msgstr "" #: links.py:13 views.py:29 msgid "Create message" -msgstr "" +msgstr "Maak bericht aan" #: links.py:18 msgid "Delete" @@ -56,7 +56,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:17 msgid "The actual message to be displayed." @@ -64,7 +64,7 @@ msgstr "" #: models.py:18 models.py:35 msgid "Message" -msgstr "" +msgstr "Bericht" #: models.py:23 msgid "Date and time after which this message will be displayed." @@ -76,34 +76,34 @@ msgstr "" #: models.py:36 views.py:66 msgid "Messages" -msgstr "" +msgstr "Berichten" #: permissions.py:10 msgid "Create messages" -msgstr "" +msgstr "Maak berichten aan" #: permissions.py:13 msgid "Delete messages" -msgstr "" +msgstr "Verwijder berichten" #: permissions.py:16 msgid "Edit messages" -msgstr "" +msgstr "Bewerk berichten" #: permissions.py:19 msgid "View messages" -msgstr "" +msgstr "Bekijk berichten" #: templates/motd/messages.html:8 msgid "Messages of the day" -msgstr "" +msgstr "Berichten van de dag" #: views.py:42 #, python-format msgid "Delete the message: %s?" -msgstr "" +msgstr "Verwijder het bericht: %s?" #: views.py:55 #, python-format msgid "Edit message: %s" -msgstr "" +msgstr "Bewerk bericht: %s" diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.mo index 89716f45021b75499abf0883f22c8f606e699e42..37cd5b08d12aee1ce9099b576071a8ef9130dd3a 100644 GIT binary patch delta 44 zcmdnbx}SA}7$di#p{|j!f`O5hsp(`z#?_N=GDh+EB<7`;CZ?xaDHP;PHe%`p02#Lp ARsaA1 delta 44 zcmdnbx}SA}7$diViLQ~kf}x3(p~+-L#??GNiFxUziRr0U3I#cnPcueOHfHJp02FWy AO#lD@ diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po index f0b9b3e29f..b549ae513d 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.mo index 6b0e9a4d1269127bca9e4d98f0d3f7d09230b5a8..dc6cd83cf8b04c3ff07e3e9c188e54a74a7167f9 100644 GIT binary patch delta 41 xcmcc4a-C(uJ8nZmT_a-!10yR_(}_RVPu|KH#qE=rmtLBfo@%8~FqxOh3jj2Y4jTXf delta 42 ycmcc4a-C(uJ8lCLT_bY^LlY}QlZijq^Y|p@rI#kAr&=i#luTaE7(JPv$pZjDybgx| diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po index d1281ba228..5b789a953d 100644 --- a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.mo index 753a0c993540a4117cbd51b90df34bfc11dcdf2d..dcce68a2110e588900dc05bb2abb506ff0ce0233 100644 GIT binary patch literal 1799 zcmZvc&u<$=6vr26OY8Ep15;025?f@i^3z>8o76n~rGi{Lw;==lhI3H$^U|KET= zLi=~1=>Gg%@H21?{0S5t|A3*@^T(jg;axFT7P0PwN4cR%>=MzI0Y{{ZBF?l`2OV6{V z@j!P67@ybjOrvDgE7T&BsorSLv=U_TE)=|Qrd$=97P?^mfZa1zl%3h z!@>R_wVq;jU8^&%Q#0MMNKHA|_e!?RqqgB(b^S;sGr|8)!GY%SY}Ez3HvN#hKHQ1J z1GWxPB5J8)WvIE;+Ar;K1`%P)^>rLJMtv8y(}+sD@3zDI>tcT>-!YJr}7t|sHcre=A~9-qE)1X;uQZG3iXvQ!2IOOO*VtkFlbml kL`~*(Hn}so4YP&FX&`NMS0mKi!&0h(1MQGleQQbVzfr8%TmS$7 delta 358 zcmZqYo55OtPl#nI0}!wQu?!IV05LZZ*8njHtN>z=+)5y30pbln%nrm`ftVGD_X06U z{4fx&U}Ru80i;3lg-j5Al|Y&c$Zr7BAobl)@rghhsN4gr87PhdfN~7XP!W*jAdL(z zsX3`7sSK_unI#Oad5K9msVNLTiAkwB41W1}sgu_*`x_gW=o*lzsXnO3Hzll54{CEP-Nd=&f~eO(o7Tzwrq zeHq9085=iwg3PC 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 d402ef5356..3312d49b26 100644 --- a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po @@ -1,26 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Aline Freitas , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 20:55+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:21 links.py:25 permissions.py:7 msgid "Message of the day" -msgstr "" +msgstr "Mensagem do dia" #: apps.py:29 models.py:20 msgid "Enabled" @@ -28,7 +28,7 @@ msgstr "habilitado" #: apps.py:32 models.py:24 msgid "Start date time" -msgstr "" +msgstr "Data inicial" #: apps.py:33 apps.py:37 msgid "None" @@ -36,11 +36,11 @@ msgstr "Nenhum" #: apps.py:36 models.py:29 msgid "End date time" -msgstr "" +msgstr "Data final" #: links.py:13 views.py:29 msgid "Create message" -msgstr "" +msgstr "Criar mensagem" #: links.py:18 msgid "Delete" @@ -52,7 +52,7 @@ msgstr "Editar" #: models.py:13 msgid "Short description of this message." -msgstr "" +msgstr "Breve descrição da mensagem" #: models.py:14 msgid "Label" @@ -60,50 +60,50 @@ msgstr "Label" #: models.py:17 msgid "The actual message to be displayed." -msgstr "" +msgstr "Mensagem a ser exibida" #: models.py:18 models.py:35 msgid "Message" -msgstr "" +msgstr "Mensagem" #: models.py:23 msgid "Date and time after which this message will be displayed." -msgstr "" +msgstr "Data e hora depois da qual esta mensagem começará a ser exibida." #: models.py:28 msgid "Date and time until when this message is to be displayed." -msgstr "" +msgstr "Data e hora até no qual esta mensagem será exibida." #: models.py:36 views.py:66 msgid "Messages" -msgstr "" +msgstr "Mensagens" #: permissions.py:10 msgid "Create messages" -msgstr "" +msgstr "Criar mensagens" #: permissions.py:13 msgid "Delete messages" -msgstr "" +msgstr "Apagar mensagens" #: permissions.py:16 msgid "Edit messages" -msgstr "" +msgstr "Editar mensagens" #: permissions.py:19 msgid "View messages" -msgstr "" +msgstr "Visualizar mensagens" #: templates/motd/messages.html:8 msgid "Messages of the day" -msgstr "" +msgstr "Mensagem do dia" #: views.py:42 #, python-format msgid "Delete the message: %s?" -msgstr "" +msgstr "Apagar a mensagem: %s?" #: views.py:55 #, python-format msgid "Edit message: %s" -msgstr "" +msgstr "Editar mensagem: %s" diff --git a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.mo index b7aca0d833e060655729d527bd2efcd01d750ac0..8014d5f271b11199c698b3cc42934e295a05e35a 100644 GIT binary patch delta 241 zcmcb}GK01Lo)F7a1|VPsVi_QI0b+I_&H-W&=m26iAnpWW79gGg#2~dGO(6bkAil`R zz_0*FgY*?KF)(lf=_)AQ0;T(aG*B5F0J#jz3=Gm>!$1ZxxTNN!mZUPcreu~d_#`H! z=1fct;WjkXH8NH(FtRc=op@x|6%oPkxtPD*i{@lgylbDxYnwXwyrBIX~ALKuI e6JzvbS*B1Ckn+^Tsw2$|ewoRc3Z;3aISc^i@E#!m 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 4eb9cf42b6..829432e60a 100644 --- a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -45,7 +43,7 @@ msgstr "" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:21 msgid "Edit" @@ -57,7 +55,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "Etichetă" #: models.py:17 msgid "The actual message to be displayed." diff --git a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.mo index cc50c41040984608d4934adcb2b30dae6dd55521..0a5c5af43cb9e6ba0783b4f339d3d37b201b5a4a 100644 GIT binary patch literal 2325 zcmb7^OKclO7{>=_A$1Ccl$QXB0hBZmti9_dsNG}}sY$9SZVy5$M^Vu-;Dfw z-+?a~zGpCA!1xv8MU0CN;0IsNgN!`}9s-Ym&w?kx!4?<5hq1oYI=>21tn1(b@E7oL zP=Swve}IpGcU$X!z=K#He5kqK3-)1s6zl;9z@uOWqEYJ8 z8&6?_G*VyC0(J-^h0%*aJ%pr0GfGT)OZ_D6Ph+sjP}oxNl87RENpvkEHbsZF?{Mjs zFjj_%$s>Fxn0<6 zbdM&_>c;DuVQAUoT+f;#Bbq*}>oC-2#d|Kr?XuIeTpu=#kymwmsdIKDwR~v%k!Q;w zG`Z(`LAq@FZUJZhQUwo4%L}_?^4UrhxzIOQl(KAQGSzA|Ey>ee6wB#CP|AcsWQT4L zW=d3uCY(}~@mfJLVI?z^%AL(kZ`W(2_0(kGOW{MqN*TpSu`DxqZLUAc3q?DOgtXqu zpVm%n+fl|v5o*(ZA#hxO$>b*%T-gz8^01Pc@hYM1X{Up*6q(#FC(Fnh9_7ucHR$&n zx@8%BV1Uz9f5|coKEZVkbF9a$Z2M@;8m4LDp^q6^e*S#ZW!xAZf{W2|u`HdA61#D0 zWZV7ZP-h=;k*1w<%tC|-o<)G;L!&9CzEutNquNkw@rC#z$KqQ2XXzD6TdJ-$ z?{5>=nEHYus5P$YT&>5eaK0VaI3ldYAFDM)!%+hklwcJbKQzOW&90nrExm8RhPnxd ztt2SqCI0^>>{Y52a_UqsQ#+P>O1Zy{+HC%TsBcgcMZXC_byV3v8%tHz#{@BcjRd2dX8 zhhlE+6XG>axhYF>QP6M=ZQM|s@dczzvbP^ylWKYNcRgU}&amV61Co2xMBBPS$0SkaP?6 z@lo(|^mSFRarJfd^l@->aS3t_4z`=@&l1AplbDxYnwSpMTU0uE5li%BF4pan{n#ZH o7%oh?u\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" +"PO-Revision-Date: 2016-11-02 04:15+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:21 links.py:25 permissions.py:7 msgid "Message of the day" -msgstr "" +msgstr "Объявление дня" #: apps.py:29 models.py:20 msgid "Enabled" @@ -30,7 +28,7 @@ msgstr "Доступно" #: apps.py:32 models.py:24 msgid "Start date time" -msgstr "" +msgstr "Дата и время начала" #: apps.py:33 apps.py:37 msgid "None" @@ -38,15 +36,15 @@ msgstr "Ни один" #: apps.py:36 models.py:29 msgid "End date time" -msgstr "" +msgstr "Дата и время окончания" #: links.py:13 views.py:29 msgid "Create message" -msgstr "" +msgstr "Создать объявление" #: links.py:18 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:21 msgid "Edit" @@ -54,58 +52,58 @@ msgstr "Редактировать" #: models.py:13 msgid "Short description of this message." -msgstr "" +msgstr "Короткое описание этого объявления." #: models.py:14 msgid "Label" -msgstr "" +msgstr "Надпись" #: models.py:17 msgid "The actual message to be displayed." -msgstr "" +msgstr "Тело объявления, которое будет отображаться." #: models.py:18 models.py:35 msgid "Message" -msgstr "" +msgstr "Сообщение" #: models.py:23 msgid "Date and time after which this message will be displayed." -msgstr "" +msgstr "Дата и время начала отображения объявления." #: models.py:28 msgid "Date and time until when this message is to be displayed." -msgstr "" +msgstr "Дата и время окончания отображения объявления." #: models.py:36 views.py:66 msgid "Messages" -msgstr "" +msgstr "Объявления" #: permissions.py:10 msgid "Create messages" -msgstr "" +msgstr "Создать объявления" #: permissions.py:13 msgid "Delete messages" -msgstr "" +msgstr "Удалить объявления" #: permissions.py:16 msgid "Edit messages" -msgstr "" +msgstr "Редактировать объявления" #: permissions.py:19 msgid "View messages" -msgstr "" +msgstr "Просмотр объявлений" #: templates/motd/messages.html:8 msgid "Messages of the day" -msgstr "" +msgstr "Объявления дня" #: views.py:42 #, python-format msgid "Delete the message: %s?" -msgstr "" +msgstr "Удалить объявление: %s?" #: views.py:55 #, python-format msgid "Edit message: %s" -msgstr "" +msgstr "Правка объявления: %s" diff --git a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.mo index 72daf43ada6f3ac4d2c7f6c2f9c8b4228bef153f..b135516d4ea7d2aa63383f52e37f676402bf7bc9 100644 GIT binary patch delta 162 zcmdnRa-AjZo)F7a1|VPtVi_Pd0b*7l_5orLNC09GKM{yofH)n9?=dnkn8@Q_m6w>E$lz3zTEzeWDLES~ delta 133 zcmcc4vWq3)o)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLdyEVWVNkv)Py>()1|YpK zFflEJ+rUKE$XvnD#LCcQ;?X_)K8bnhrHSdORtm*A@xh*x8yKS}zh+Eebt+1&VgLXi CPZj9^ 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 ddd4608aac..6d986669c1 100644 --- a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:21 links.py:25 permissions.py:7 msgid "Message of the day" @@ -57,7 +55,7 @@ msgstr "" #: models.py:14 msgid "Label" -msgstr "" +msgstr "Oznaka" #: models.py:17 msgid "The actual message to be displayed." diff --git a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.mo index 63c2677790cb4db55c630fefda30c72217b705ae..1130a9a565a063c0a16aa5e7f0dbd7e8b47beac1 100644 GIT binary patch delta 45 zcmbQuGMi<>PHsa(T_a-!10yR_(}_p+PM*jZ#qX1tmtLBfo@%8~mKh)BH~AH#AplX1 B4_p8M delta 45 zcmbQuGMi<>PHqDeT_bY^LlY}QlZi+6^7|y_rI#kAr&=kLWyXj3O>SU}p8T58002*k B4^RLA 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 afc2593079..e1fd1f8136 100644 --- a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:55-0400\n" "PO-Revision-Date: 2016-03-21 20:55+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/motd/locale/zh_CN/LC_MESSAGES/django.mo index ba251235bdc6cba3f36951cb4c64b2384d3747fb..04f6b653de9e7f6ad041ebe4d592dce9a44f9a21 100644 GIT binary patch delta 45 zcmey#{F8aY5^h67T_a-!10yR_(~0Z1PcCDO;`d3+OD|1KPqk90%7}ONn|z*83jk\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:21 links.py:25 permissions.py:7 diff --git a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.mo index eb14671fae61c22e655cc44eaecf872c37c441d6..d83c33c4ca5489cf25a8ae5f3ec4d23bb982cd27 100644 GIT binary patch delta 22 dcmbQqGLvOOJGY^su92~VfsvJ|*~Urji~vXB215V< delta 22 dcmbQqGLvOOJGX&}u93Ndp^25D$;L_Ti~vX<21Wn? diff --git a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po index ab9b27cb12..90e3c66bb5 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.mo index da476f0e4633a77b26c5c1a9b0c1cfd43613c15e..e6716564af05f3a309e844b19dd01c055e9ace79 100644 GIT binary patch delta 22 dcmX@fe3E%WJGY^su92~VfsvJ|*~Urci~vsg22lV2 delta 22 dcmX@fe3E%WJGX&}u93Ndp^25D$;L_Mi~vtJ22=n5 diff --git a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po index a064c69bc1..4ed1f660e6 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.mo index 9a2cc56010cee423d5cfe93b7fafcca58028b2d3..c9ab428f67892693dbb99d00b1fdfba16f487f39 100644 GIT binary patch delta 22 dcmdnMvVmnnJGY^su92~VfsvJ|*~Urp7y(Pw28aLv delta 22 dcmdnMvVmnnJGX&}u93Ndp^25D$;L_Z7y(QZ28#dy 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 4c01aa0779..eca126c1e4 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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/da/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/da/LC_MESSAGES/django.mo index c3d6d9a6225b75ed078d8a470e190dd5b706f4c1..43d06ec1e4c898d9dbb2ec03d1f076e894546c50 100644 GIT binary patch delta 22 dcmX@ce2jTQJGY^su92~VfsvJ|*~UpGi~vq`21oz^ delta 22 dcmX@ce2jTQJGX&}u93Ndp^25D$;L@0i~vrv21@_{ diff --git a/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po index e7aa54caea..492ce519af 100644 --- a/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/da/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.mo index 7e1c1cdddbf191920eb2a4feaf62e2ab41389246..18cd4f8d8572d427e22f0e69499f776b5f16000a 100644 GIT binary patch delta 22 dcmZ3=vXo`QA#OuMT_a-!10yR_vyEpX7y(Wf2BH7} delta 22 dcmZ3=vXo`QA#MW`T_bY^LlY}QlZ|I17y(XI2BiQ1 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 93df8b7712..c8499968d3 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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/en/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.mo index a38083900f987e086e8ead6388d123bdd061c244..8dde99e13645246273c37929e7afdcac402d118e 100644 GIT binary patch delta 22 dcmX@fe3E%WJGY^su92~VfsvJ|*~Urci~vsg22lV2 delta 22 dcmX@fe3E%WJGX&}u93Ndp^25D$;L_Mi~vtJ22=n5 diff --git a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po index 043adfe354..54e1532594 100644 --- a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.mo index 46db480d558d4ef64081d4e860fbc887d8a3a0d4..cd474a3cf51937364d6e8cef29a134c386a89f69 100644 GIT binary patch delta 22 dcmbQvGM#0@A#OuMT_a-!10yR_vyErH7y(PK26zAf delta 22 dcmbQvGM#0@A#MW`T_bY^LlY}QlZ|J+7y(P|273Si diff --git a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po index a339c06518..816e9c1c62 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.mo index 11c87e20e1e63a8f6d1c2c14801eea2c56f5a225..db7c629693625e4b94e8ac4ae1b632e02671e8c3 100644 GIT binary patch delta 22 dcmaFM{FZsba&ALIT_a-!10yR_vyGdq839*m2HgMv delta 22 dcmaFM{FZsba&7|?T_bY^LlY}QlZ~6K839+P2H*ey diff --git a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po index 97c72edc0d..023065c1d0 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.mo index 0fdbd553c7d5b3304b4ca856217ac6abbdec5b95..8a1026afcef85a1e2ed5b5c969479d5cb4b86d4e 100644 GIT binary patch delta 22 dcmaFM{FZsba&ALIT_a-!10yR_vyGdq839*m2HgMv delta 22 dcmaFM{FZsba&7|?T_bY^LlY}QlZ~6K839+P2H*ey diff --git a/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po index b0fb5e83f0..66797f1fd8 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.mo index d1bf858a98b575287dae2e476f3348d3c70888bd..7c684f452ff8c39ecf1e39fcefdde8ed533b1f59 100644 GIT binary patch delta 22 dcmX@fe3E%WJGY^su92~VfsvJ|*~Urci~vsg22lV2 delta 22 dcmX@fe3E%WJGX&}u93Ndp^25D$;L_Mi~vtJ22=n5 diff --git a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po index 0f8cb6a279..4c26fa24b9 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.mo index 52a42afd1af7c7ba6465f5d32ffc2305ddd32856..1cda33dd8823328161c70346b937cad8b3ef59ad 100644 GIT binary patch delta 22 dcmX@ie3*GcJGY^su92~VfsvJ|*~UqRi~vpX20s7* delta 22 dcmX@ie3*GcJGX&}u93Ndp^25D$;L^Bi~vqA20{P; diff --git a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po index dfb336110b..701886ab8a 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.mo index ae0711975bd122a7622d6b81fdf4ef2501a3e513..af4ed27cf27846c5c8e0621e62db8c5f1abca47f 100644 GIT binary patch delta 22 dcmX@ke4KegJGY^su92~VfsvJ|*~Uqxi~vrd21@_{ delta 22 dcmX@ke4KegJGX&}u93Ndp^25D$;L^hi~vsG22KC~ diff --git a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po index 8f0391e952..cbc196ffd4 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.mo index 834541a00cad0e83144f21c360be9e3efd99a840..cfe3cc3136cb739bada347541896f3d8cd000cd9 100644 GIT binary patch delta 22 dcmcb~e3N-XJGY^su92~VfsvJ|*~Urki~v!&27v$o delta 22 dcmcb~e3N-XJGX&}u93Ndp^25D$;L_Ui~v#h27~|r 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 508ee15e4b..9de0e5af88 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.mo index 62c98d66be45ff37caa5688ce3ec80dd735a2f21..eb6c2bd3fe8d15bf01294fc91cfffdba9c413d00 100644 GIT binary patch delta 22 dcmZ3+vW#WIa&ALIT_a-!10yR_vyGcd7y(RO28sXx delta 22 dcmZ3+vW#WIa&7|?T_bY^LlY}QlZ~577y(S128{p! diff --git a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po index 5bab4ef560..2c703eb33b 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.mo index ce43fa0a9e069aeeb8b246201352a229d1fd55ea..c4533b7293ae31ecfc46156e91326bedc2446101 100644 GIT binary patch delta 22 dcmX@be2RHOJGY^su92~VfsvJ|*~Up0i~vt122=n5 delta 22 dcmX@be2RHOJGX&}u93Ndp^25D$;L?*i~vt#23G(8 diff --git a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po index 41b6ae356a..2f743c7cba 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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.mo index 8a429c02a44e00c3664482e7ca40c7270823bcd9..a53203c2e2f25f6c1abf1c7be63d21cccd3f638d 100644 GIT binary patch delta 22 dcmZo*X<(VKoZHY)*T`7Gz{twfY~v0_DD&TVL@Yh0_DD&TU|#YhW0riDB{iFxUziRr0U3W-INWtpQlw=&OW1OO|y B4VM4_ diff --git a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po index 88b07b7979..b0206f7384 100644 --- a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -64,6 +62,7 @@ msgid "Contents" msgstr "المحتويات" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -128,6 +127,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,14 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "File path to poppler's pdftotext program used to extract text from PDF files." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -172,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -191,17 +193,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -211,6 +214,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -390,11 +394,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -451,11 +455,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.mo index a8ee36a61563bf2db593a16cfc393123056bc7c0..4264c346343417305dd4ece6c9a469c32387bcfd 100644 GIT binary patch delta 45 zcmaFB{(ybM9!73MLtP_d1p^~1Q?tp(8JA41V2a}LNz6+xO-xU, 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -63,6 +62,7 @@ msgid "Contents" msgstr "Съдържание" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -127,6 +127,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,12 +154,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -170,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -189,17 +193,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -209,6 +214,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -380,11 +386,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -441,11 +447,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.mo index fc751ac4556a844456289ec1d82ae882d7198212..21a88cf9c23942c2f1af7d74e6f5aac44c870c5e 100644 GIT binary patch delta 48 zcmZ3(wT5d$5fitep{|j!f`O5hsoCUOrhSvWnWOl967$ka6Vp?z6q1VLog6nWVeViA E09`l^=>Px# delta 48 zcmZ3(wT5d$5fit8iLQ~kf}x3(p~>W0rhWWAiFxUziRr0U3Q5KBPL7kUn4>o@Wo~B# E0A8UE+yDRo 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 b32e7ac381..4e6ec93fad 100644 --- a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -64,6 +62,7 @@ msgid "Contents" msgstr "Sadržaj" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -128,6 +127,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,14 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Staza do popplerovog programa pdftotext za vađenje teksta iz PDF datoteka." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -172,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -191,17 +193,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -211,6 +214,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -384,11 +388,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -445,11 +449,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/da/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/da/LC_MESSAGES/django.mo index a4cd1085c8e7b578f40b91d89bd66eca800d9a72..a92146039693354ab886405fdd65b9403b8b2f59 100644 GIT binary patch delta 45 zcmX@ad5CjE5fitep{|j!f`O5hsoCUOriGKWnWK1o67$ka6Vp?z6jBm5w=ml=0su1C B4R-(l delta 45 zcmX@ad5CjE5fit8iLQ~kf}x3(p~>W0riDB{iFxUziRr0U3Mq+`WtpQlw=&x@0suA4 B4Q&7b diff --git a/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po index cd1edf5b8c..b133f3f72f 100644 --- a/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -64,6 +63,7 @@ msgid "Contents" msgstr "Indhold" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -128,6 +128,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +155,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Fil sti til poppler's pdftotext program, brugt til at identificere tekst fra " -"PDF filer." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Fil sti til poppler's pdftotext program, brugt til at identificere tekst fra PDF filer." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,6 +174,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,17 +194,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -212,6 +215,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -383,11 +387,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -444,11 +448,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.mo index 49480deb6b4ec195d218fcbc9e122821e5342bea..e02f73938bffcbdc879995b4fa4b635a084a6424 100644 GIT binary patch delta 1516 zcmZwGPiPcZ9Ki8sV&bmJY7%RrrZLadZ8m9kySp((7i%qze-7FNi9)5CuGyE(l67V~ zGaC#@1M1O>4wiZ-tx_nV1%QQVn<cUrW2XaZhkMH1N4C5v2 z!Y``c!q*u;zztZ(ve#fIzKQ+Vi$_rwcm^fTXV}X7)m1sc@9=xdzlbA@Pm|RE{*2A| zCrToXO_hLqQC4Q5B>Fj$gZc`kLf;~x)Gd^)U97r{YZ*(>ISJgtLG0onThWhFiR~yW z9Yaab!67_{Qu-e;j*qd7ojfe}U%(IW8cHR@ltU`K83(YhIzF<7`b&wjOh{=ipk(|t zPU3ZxOglKluovZpqqq}4sg7@8593Fe!Dg1bl&=}FtE#m?xc?=^nYoh=q?bHV$vl{d=0L|N!qwQj{=Diu!;>SQ`I z^j18%Etyw&KHC&t!Bunc~_|Je}0(RAw;k9}9KF#_SV?tgA<}rZjEz zPA?cHO2Kegt03ccjPv PGP2&kAKu_UkNoli$JO;_ delta 1089 zcmY+@OK1~O7>41~^qQn?w6@w>+f22#T8(C6q!K~J+d?YVs*BiyMjGQKG%{(ttcoCR z+!O~vq=Fko5#2DQdxK z&sm%z-4br(`W61Ep7qTGPPA|ld+`UV^LE-~O>+SGjya40j9O{+jJtr~5{0Y|M zOV3#(YV#Qt{XFWyDuU#%4#S*mMH>}u1|xU}3-|{0g&o{Ai6hvI&yjnXx1OI+34B8} z_#027R##&gT!)uX_rKRb{yLfC!fO1B2@I3(dOVI6UPC_SJ_j}Y%yR}ww48$8u}Y1x zbxfNklvO@19J+vT7pqC{e+^UJypy4rwVCu9)R5vgA zFdC1<`Yk)2u;Xsn-x=K!iP=`nPT2N_C>0n;<;NpOozz%9n;OqK32P{KD(#HtFrRYH z=G^Q4lc9msSf-H5q!ZR?`o!LS?!1549SlT@?*b#0fkS(Sto`XT*|g(MHhy;pLoM$6 G(64{8J#ozd 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 f3669741dc..2ebf6dad14 100644 --- a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po @@ -1,10 +1,10 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Berny , 2015 +# Berny , 2015-2016 # Mathias Behrle , 2014 # Stefan Lodders , 2012 # tilmannsittig , 2012 @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-05-20 21:32+0000\n" +"Last-Translator: Tobias Paepke \n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -67,6 +66,7 @@ msgid "Contents" msgstr "Inhalte" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "In die OCR-Verarbeitung einstellen" @@ -80,7 +80,7 @@ msgstr "OCR Einrichtung" #: links.py:33 msgid "OCR documents per type" -msgstr "" +msgstr "Texterkennung pro Dokumententyp durchführen" #: links.py:37 views.py:161 msgid "OCR errors" @@ -131,6 +131,7 @@ msgid "Document page content" msgstr "Seiteninhalt" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Seiteninhalt" @@ -157,29 +158,26 @@ msgid "Change document type OCR settings" msgstr "OCR-Einstellungen für Dokumententyp beabeiten" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "Pfad zum 'tesseract'-Programm" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt " -"wird, um Text aus PDF-Dateien zu extrahieren." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Pfad zum \"pdftotext\"-Programm (bereitgestellt von poppler), das benutzt wird, um Text aus PDF-Dateien zu extrahieren." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." -msgstr "" -"Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet " -"werden soll." +msgstr "Vollständiger Pfad zum Backend, das für die OCR-Schrifterkennung verwendet werden soll." #: settings.py:27 msgid "Set new document types to perform OCR automatically by default." -msgstr "" -"Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch " -"durchgeführt werden soll." +msgstr "Neue Dokumententypen definieren, für die die OCR-Texterkennung automatisch durchgeführt werden soll." #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "Dokumente in die OCR-Verarbeitung einstellen?" @@ -199,18 +197,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument %(document)s in OCR-Warteschlange eingereiht" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "Ausgewählte Dokumente in die OCR-Warteschlange einreihen?" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "" +msgstr "Alle Dokumente eines Typs in die OCR-Verarbeitung einstellen" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "" +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "%(count)d Dokumente vom Typ \"%(document_type)s\" in OCR-Warteschlange eingereiht" #: views.py:132 #, python-format @@ -219,8 +218,9 @@ msgstr "OCR-Einstellungen für Dokumententyp %s bearbeiten" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" -msgstr "" +msgstr "Ergebnis der OCR-Texterkennung für Dokument %s" #~ msgid "Delete" #~ msgstr "delete" @@ -390,11 +390,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -451,11 +451,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.mo index 1cc81aff518abb08dedd29966ccd46f0609adeb6..98fbe96d5d7a9b18aa609aa0403cc06dacda569b 100644 GIT binary patch delta 24 fcmcb~c9U&GIU~2Bp{|j!f`O5hsoCZx#_Nm#U6ltL delta 24 fcmcb~c9U&GIU~1$iLQ~kf}x3(p~>bZ#_Nm#UDgL4 diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po index f6de2b8ff1..3fcac13e17 100644 --- a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/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: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2012-06-17 22:12+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.mo index 9de25753b41d84c7bea247355129718db25ab79e..f5894d90b9a29f7c7c0793dc99093593f7339dcc 100644 GIT binary patch delta 1759 zcmZvbU1%It6vyv&v&p6#(Ty=|8jZIr%`{(4NQN8sPvc+q}|D>V;)h5O-bn^Fn*Je-0hcmTcwAAmPu z2mB5u;a#{3{?@dUEWQuB2kupBMGZ5!2gfnE2R;q^VWsJR8TMhn-SmG1cVgd!lkh7j z0VLX^jYr@U*vDW7UV)O_8YBmG2ll`pU?1nJzZh)C(M#Awq|$IVoP~T+C*WcD6zqhT zVH&>Ib+2z#pN88R}=@5hwwD0B7KrP$W+x$Ahp74#IKBqfU3DzZ_7&lA2$F zBF+178h#9U)NNk!{bwjrcI=3x9fNY2&Osh^q3M4ON~Y^jF7@}2SX7LQBZ=&2GP@J~ zV>o28G%o2zlLO_V$pQ&NB9}T#DWqIdYf(vl6eP#IBK?$`)j zT1M(GzlXE|xPP0`nN*I9H; zH7F#G_qIaubltk)fx(A~`GLaeY;7oAlAMsINQFSnwS`wJfz1b z=cZ?ZOh>w9&&(Z~TAlCcj*UfPZ_?WFh(-J5y7Rwco8<1`O!CcsQ!SK@tDSnW?9{9m zCRKOb;HS>M)jP>|W8(<@pYO&s+E${?Iiw|@6H5Nl_DlK4jdmNpkqC@iTq>V;7*<-E zqe80;K|E#loU*1;zQ8F`P!10_4rV*|1#arG=`CN4t~D&XNnT-s8)s8HxdC0~f79*2o6o)X@$NnM+&k;h`<~fvov{~29OF66 zGai^Vu(^vL;>vEbGG4_vKEygUaR8SwiC-{r;ejLOG>P}6e&b*0AY~K62 zgZc*yXfY+C&{-+8GleG9`D+4&64db=QHM~13f&o9yplSEDy8V*QFRnbQXA>y>Ekh* z_;-6Fn!4~L*8V3z`|`w5cSBk02o&7A_PMHJ|APXwL%Zep&7F$Pw|>S-fg4WTb*qUB zu8=(M7LpfTm@2x-)LN!eAF7>b9TyI&)sz2a}(}PzU, 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-05-09 01:31+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-23 06:34+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -65,6 +64,7 @@ msgid "Contents" msgstr "Contenido" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Enviar para OCR" @@ -78,7 +78,7 @@ msgstr "Configurar OCR" #: links.py:33 msgid "OCR documents per type" -msgstr "" +msgstr "Realizar OCR por tipo de documento" #: links.py:37 views.py:161 msgid "OCR errors" @@ -129,6 +129,7 @@ msgid "Document page content" msgstr "Contenido de página de documento" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Contenido de página de documento" @@ -152,18 +153,18 @@ msgstr "Ver el texto transcrito de los documentos" #: permissions.py:18 msgid "Change document type OCR settings" -msgstr "" +msgstr "Cambiar opciones OCR por tipo de documento" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." -msgstr "" +msgstr "La ruta de archivo del programa tesseract." #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Ruta de acceso al programa de poppler llamado pdftotext utilizado para " -"extraer texto de archivos PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Ruta de acceso al programa de poppler llamado pdftotext utilizado para extraer texto de archivos PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -171,9 +172,10 @@ msgstr "Ruta completa a la aplicación que se usará para OCR." #: settings.py:27 msgid "Set new document types to perform OCR automatically by default." -msgstr "" +msgstr "Realizar OCR a nuevo tipos de documentos por defecto." #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "¿Enviar todos los documentos para OCR?" @@ -193,26 +195,28 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s fue añadido a la lista de espera de OCR" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" -msgstr "" +msgstr "¿Enviar los documentos seleccionados para OCR?" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "" +msgstr "Enviar todos los documentos de un tipo para OCR" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "" +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "%(count)d documentos de tipo \"%(document_type)s\" enviados para OCR." #: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" -msgstr "" +msgstr "Editar opciones OCR para el tipo de documento: %s" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "Resultados del OCR para documento: %s" @@ -384,11 +388,11 @@ msgstr "Resultados del OCR para documento: %s" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -445,11 +449,9 @@ msgstr "Resultados del OCR para documento: %s" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.mo index a422dff51785e3a75ec9046e20763236e4dedb47..30872c763cf3eb3525daf579d6dc2940f438b076 100644 GIT binary patch delta 45 zcmbO&Fk4_l3k$cQp{|j!f`O5hsoCUymPM28SfhA+67$ka6Vp?z6w(qmPiJjm0st?R B4buPs delta 45 zcmbO&Fk4_l3k$b_iLQ~kf}x3(p~>WamPI^1iFxUziRr0U3TcUx4OpW$&tPq40st|9 B4aooi diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po index 74d3bc8565..e5e8354592 100644 --- a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -62,6 +61,7 @@ msgid "Contents" msgstr "محتوا" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -126,6 +126,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -152,12 +153,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "محل فایل POPPLER جهت استخراج TEXT از PDF" #: settings.py:22 @@ -169,6 +172,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -188,17 +192,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "سند : %(document)s جهت ocr وارد صف شد." #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -208,6 +213,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -377,11 +383,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -438,11 +444,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.mo index e6538b2e3e0cf5b065269c082af6647dad6a5ee9..8da1e81a312d1652176402f0db8a03a71c3518eb 100644 GIT binary patch delta 1480 zcmZ|OOKeP09LMp~R+-XXePB>+Z%cKGsp;sDPAF9k@#?6@LcFe-+iElBPVUSVR*lEP zqBgDyi6COr6-mWLBwp#tLc~sD;}Iee5(z=V_kU;FuyB&o&pqePJ&)fxy##^pQ9|GcxrCoAa0|*3G478 z%I5AOdr)t&0zcp!=2t&?m`+C}%VtHY24`VA@=9&TwYVEga0F}cTHgD(nD$GYi-l}k z!)jcPORx#|qHORK$~c#>g89`AdB8h3O8n!vgLax#NyLwkvDG(>;cr}pu^G7p&Z4}( zhkU9Yqip19zWp8>X@5aksJ}EfUk47=(h=i9c4VPMdk*C+ui`>{fO3X!a07nFD6Zk$ zmf~?df;Vvyma%=gLt&Kf(>yAjRg(x3_ewk?MDheg^Hc-PI+*wp={_q?0iJn~rV_ zT29tIsVx}mFZoooMFRONCnKLzw{4q_osmtd-p8Yol0obYoNSU$(w1ZENptekd}=S; cQmv{a(d4AO1-PBsEcb|}xpkV)-K@R)1Kcy`&;S4c delta 1083 zcmY+@KTH#09LDjtrTl4&pa=+}<*Eo;1i4a!sWJWm7R6{l218MDtY z7o&q17ZZ(%G3mmfizb>lI2d9Ws*8?}hM_UW?{h7Kzi{v8-nMt|`#$eWIsQ6U_}&tF zV5kJw9GDg@5JqBV-nAxCXh$Hcoom%8g^q{oiT&hi_Fzb z;|{!x5xjw|jBl2?;m@qloW%PW#xJ-ROI6F*LBE4#HldA2@DyqyH&F|DgnIrJYQVLs zpKyhAOQ-~|^P_skH>=!S#Ai5yo2V5IGEIJK98{$9sOa2k{~jKo{}6leEo#7@7{g7} z0@|XLknwvw?~}jXYweu@xO; z4Q3fn<84$j@9+?AU>^pX$lu~7L7pvm4)wqlJc>_I1ARpeP(}?<*Icm+1N3!pwZ|%b z&(SfR>QI*7R+>0yVq4Xs{nr4z*N;qbYekyfJ}wipK_qX}aKfY&g A8vp, 2016 +# Christophe CHAUVET , 2015 # Christophe CHAUVET , 2015 # Pierre Lhoste , 2012 # Thierry Schott , 2016 @@ -11,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-05-23 19:55+0000\n" +"Last-Translator: Bruno CAPELETO \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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -65,6 +66,7 @@ msgid "Contents" msgstr "Contenus" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Soumettre à l'OCR" @@ -78,7 +80,7 @@ msgstr "Paramétrage de l'OCR" #: links.py:33 msgid "OCR documents per type" -msgstr "" +msgstr "OCR documents par type" #: links.py:37 views.py:161 msgid "OCR errors" @@ -90,8 +92,7 @@ msgstr "Type de document" #: models.py:20 msgid "Automatically queue newly created documents for OCR." -msgstr "" -"Ajouter automatiquement les nouveaux documents créés à la file d'attente OCR." +msgstr "Ajouter automatiquement les nouveaux documents créés à la file d'attente OCR." #: models.py:24 msgid "Document type settings" @@ -130,6 +131,7 @@ msgid "Document page content" msgstr "Contenu de la page du document" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "Contenu des pages du document" @@ -156,15 +158,15 @@ msgid "Change document type OCR settings" msgstr "Modifier les paramétrages OCR du type de document" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "Chemin vers l'exécutable tesseract." #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à " -"partir des fichiers PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Chemin vers l'exécutable poppler pdftotext, utilisé pour extraire du texte à partir des fichiers PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -175,6 +177,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "Traiter automatiquement les nouveaux types de document par l'OCR." #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "Soumettre tous les documents à l'OCR ?" @@ -194,18 +197,19 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Le document : %(document)s a été ajouté à la file d'attente OCR." #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "Soumettre les documents sélectionnés à la file d'attente OCR ?" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "" +msgstr "Soumettre tous les documents d'un type à l'OCR" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "" +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "%(count)d documents de type \"%(document_type)s\" ajoutés à la file d'attente OCR" #: views.py:132 #, python-format @@ -214,8 +218,9 @@ msgstr "Modifier les paramètres OCR pour le type de document : %s" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" -msgstr "" +msgstr "Résultats de l'OCR pour le document: %s" #~ msgid "Delete" #~ msgstr "delete" @@ -385,11 +390,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -446,11 +451,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.mo index a9ad72e459232657c106dd9b478270eaea6f229f..44b43ad1b3fab2e559da4dd84d8a57f83066c4e6 100644 GIT binary patch delta 44 zcmX@cdW?00HY2y8p{|j!f`O5hso7*R#wC-VGe+_FB<7`;CZ?xaDP)vRc3^4)03q}Z Ao&W#< delta 44 zcmX@cdW?00HY2xziLQ~kf}x3(p~+-3#w9#HiFxUziRr0U3K^x7Z!$(tc4TS=02|>A AlmGw# diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po index ee4a3d53f6..26322a1865 100644 --- a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -62,6 +61,7 @@ msgid "Contents" msgstr "Tartalom" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -126,6 +126,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -152,12 +153,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -169,6 +172,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -188,17 +192,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -208,6 +213,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -379,11 +385,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -440,11 +446,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.mo index f9d32cd10e0529856b2629f0f794532750fba40b..c86dfd93835bd43d5d469b013440fc8a88d5571f 100644 GIT binary patch delta 44 zcmdnQx`}mzHY2y8p{|j!f`O5hso7*R#-)>AFh=qCB<7`;CZ?xaDP*Qhc4R6902>7j AQ~&?~ delta 44 zcmdnQx`}mzHY2xziLQ~kf}x3(p~+-3#-%(yiFxUziRr0U3YjUBZ!tzsc48_302HMS AN&o-= diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po index 74c2baf97a..63c65aae45 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -62,6 +61,7 @@ msgid "Contents" msgstr "Isi" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -126,6 +126,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -152,12 +153,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -169,6 +172,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -188,17 +192,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -208,6 +213,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -377,11 +383,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -438,11 +444,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.mo index f2a7ce75032a60d527ecb4d67f09363c563fdefd..9ca1c5e76da4ab9da5f8d4a845fa09b2cbd41ffe 100644 GIT binary patch literal 4090 zcmb7`PiP%Q9LLA{ug1Tv|E;xSHBDl>@4ck8wlBt7le7((Hl(qr2W8&wyqD44opon6 zX?pM=f*w2x6-7btAnL_~B6#pn1o13_2dNj4B3@KH2#Waq&Hj5YZ3GuKpEt8Jzxn;0 zUw+tn#aV`@f%k5_uU*F26!`Zh{K50<<%}H#e*^Ca4_?98mEberJ}>}Bz_-AA!E@l% z;E&*D@E7oA@Q-4=8Jq9Icni1<+yh<@9s_R$Pl30CVKM(QcpJvA7xN#2H(`7ZoB+Q8 z>HI6N%H?|CJjTbs9pD=v+4dO-6WCAS7Vu|~9ZZY1w07i6FUwb0-pe{ z0ndWl!FLOO0q(;1d+-i$6O6tA+y*wm2fz{VX^`xD2_!jhf~3cL1wREpg73cqk7E7> zD0M&hIfyCt1Nabl0VH`lu4QaDcof7GGa$)*5hQ=VT8!TT$=~mTWZyZE>^l$M1O8ro z-*O#eH)6a8q;(G$d=lJ>u>}u;uYmi(bD#(Q2`+-W5JZaq8aN5Q4U)gV19yVogXHgj zK+^YCIEm&tNb}Pm>Hjo%91K7#WuJgfZ;;b&w8?wX0OAqBH#fhFf@lx$koaiBaIbMoS`H*jr>MkdT%gKT;#rcr(f_zR7 z*?J$|J$QHHC11K{c+}TfY{vo~Xg`Z&Yz^04Zr2jYcMgx1lh4w`nAyoi5XgXA&F!+} zC#Dzq3z^JhgAMl!*l5vV+RP4TR!71rUxeXWzMsc(6~Fyd3JdY&sfKrTN~bi~w1{JE zc~`{&PlB%1R-U$8o|b-QMJJS8*ft+FY^v{uDEtkAKAnI#RI!I|8u zNOF^PB4wcgn<<=8{oto$YLt$h&9iB$)BpGcnZ%A@{ zl@--ynl`m{)%;4XZ?zxZsiHY%_^L1)#&R}L*4bH}=E4w^Ceew`*R!X6nOJg4BH*03 z=d7KiFdR_`Nh0hrrAnfcB$Vlh>5E*F>Ru`$o|!zI5Y1Hhmb#x3-Xh?^zgDr%_^dg#Wxmrr_|7tj-8@o=ZpvMk#^(s}jYynbJmRDpQv`Zdy{j z^A)KyS%^GDUY3iUFBTAIc$mWdY@9_MnT`c)(Jf{trKJR~HaNk?c}Av?6p>n743tG@ zjR&$Ta8`r%X9=xgCtZS~Fj0x?Yw%F{b-=8$f;RYyQWtrR6qQyADUGX2u>7!Y9eLZx zQ2K*)d$Dq-6g)ty5$D+Wsp?SRsfb;)%k!A?HSgus%F8TvwU3J`V0H1A-|B=YXBJZZ z95nLg0`F8_25mks)xCuHXm9zvE)tD4TOyL=u&9& ziPrdjZ+zUF*vnfJ?FaXJt$nQ)7J7?vMbUN8zpi!Ao7l(4TkXAjcen5iJuZy(mdM;t zSe=p%sjvC8h)@nj@`ocDH~eDUi2O%;kx*g7*U=-`9rrS%leZ*A)aG+mgbEgnE?b+l zo6XhL)rNDW>dMo!qnT?Pip$Vjay3oi zXeOah@g(<`QPa{+J+XAeJ5aA9Yq~P^W@BFmDET%&&{4Khw#_kE2(wg#-VtQBY4bR7 zLo+oo$@8C6qcOjCijR*?4zY{-kK%#Cb)4u+_n%%*pctPyw0aolw_)hn8ZBZy!xQyq8FRSikSc^48< z2M4Gq(Z-51NEGF2+}$c}+y#Dn+n-cCQ6+@t` zuRYy&JnpWIKP$T1Ra|#g&6d^~GS_dd3t(j>TmP+gvSvkz_KTh=B7m|S=vrTXz~N80 zs)#Ut45UGW%_A$j_}7A?|6J1jD$J9s(k*XgzAq_EPy)H@l7Tu(-qqkR!T;1gwnIUB<>e8TC(-cbKdrDFRJp!MNk{G+ zka`F;L1ka23Q~tUrgd4<=kL5(N}l4sU>v2(b}3n0TvSL1R&+)DKUQ8-^;DH#>|e@f BfRO+I literal 1069 zcmbu7yKWOf6ov-~Hv=LBgg~M=DG-U!c)iAgXd@RP7s(P}cwHZUR-f_99h&DDOL zts3p{~zw=eMgJxmQn29@wLeHpu-nT&8&uWR*yu zT(CHij7Yg!x6@spzJajbs8yeY$9U5bIl1S8VJ4Jbres&xLb~?jc!MuZ`~2}c((-kk zm{jROL`&OH?q#JF8Q(BAFCx;z!?I{Mm+5HPUeGk(rf_k&##ROcRcdGc$3(CnRX!@6 vnmERIV<;^smD$7xhQ(@VrX{h;1akW9*i?S+-?r-LkrH;=tO%y}j%L3Ah;$s7 diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index 62af1e9c96..d2dec0e5e8 100644 --- a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Marco Camplese , 2016 # Pierpaolo Baldan , 2011-2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-09-24 10:33+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -35,23 +35,23 @@ msgstr "Aggiunto" #: apps.py:99 models.py:36 msgid "Result" -msgstr "" +msgstr "Risultato" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" -msgstr "" +msgstr "versione pdftotext" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "non trovato" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "errore recupero versione" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" -msgstr "" +msgstr "versione tesseract" #: forms.py:40 #, python-format @@ -63,24 +63,25 @@ msgid "Contents" msgstr "Contenuti" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" -msgstr "" +msgstr "Invia per l'OCR" #: links.py:22 msgid "OCR all documents" -msgstr "" +msgstr "Esegui l'OCR per tutti i documenti" #: links.py:28 msgid "Setup OCR" -msgstr "" +msgstr "Configura OCR" #: links.py:33 msgid "OCR documents per type" -msgstr "" +msgstr "OCR per tipo documento" #: links.py:37 views.py:161 msgid "OCR errors" -msgstr "" +msgstr "Errori OCR" #: models.py:16 msgid "Document type" @@ -88,15 +89,15 @@ msgstr "Tipo documento " #: models.py:20 msgid "Automatically queue newly created documents for OCR." -msgstr "Automatically queue newly created documents for OCR." +msgstr "Invia automaticamente i nuovi documenti creati all'OCR." #: models.py:24 msgid "Document type settings" -msgstr "" +msgstr "Impostazioni tipo documento" #: models.py:25 msgid "Document types settings" -msgstr "" +msgstr "Impostazioni tipi documento" #: models.py:31 msgid "Document version" @@ -104,15 +105,15 @@ msgstr "Versione documento" #: models.py:34 msgid "Date time submitted" -msgstr "" +msgstr "Data e ora di invio" #: models.py:43 msgid "Document Version OCR Error" -msgstr "" +msgstr "Document Version OCR Error" #: models.py:44 msgid "Document Version OCR Errors" -msgstr "" +msgstr "Document Version OCR Errors" #: models.py:54 msgid "Document page" @@ -124,93 +125,99 @@ msgstr "Contenuto " #: models.py:62 msgid "Document page content" -msgstr "" +msgstr "Contenuto pagina del documento" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" -msgstr "" +msgstr "Contenuti pagine documento" #: parsers.py:102 #, python-format msgid "Exception parsing page; %s" -msgstr "" +msgstr "Eccezione durante il parsing della pagina: %s" #: parsers.py:129 #, python-format msgid "Cannot find pdftotext executable at: %s" -msgstr "" +msgstr "Non trovo l'eseguibile pdftotext in: %s" #: permissions.py:10 msgid "Submit documents for OCR" -msgstr "Inviare documenti all OCR" +msgstr "Invia documenti all'OCR" #: permissions.py:14 msgid "View the transcribed text from document" -msgstr "" +msgstr "Vedi il testo trascritto dal documento" #: permissions.py:18 msgid "Change document type OCR settings" -msgstr "" +msgstr "Cambia impostazioni OCR per tipo documento " #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." -msgstr "" +msgstr "Percorso del programma tesseract." #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Percorso del programma poppler pdftotext.usato per estrarre il testo dai file PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." -msgstr "" +msgstr "Percorso completo al backend utilizzato per eseguire l'OCR." #: settings.py:27 msgid "Set new document types to perform OCR automatically by default." -msgstr "" +msgstr "Imposta i nuovi tipi documento per eseguire automaticamente l'OCR per default." #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" -msgstr "" +msgstr "Inviare tutti i documenti per l'OCR?" #: views.py:40 #, python-format msgid "%d documents added to the OCR queue." -msgstr "" +msgstr "%d documenti aggiunti alla coda OCR." #: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" -msgstr "" +msgstr "Inviare \"%s\" alla coda OCR?" #: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." -msgstr "" +msgstr "Documento: %(document)s è stato aggiunto alla coda OCR.." #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" -msgstr "" +msgstr "Inviare i documenti selezionati alla coda OCR?" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "" +msgstr "Invia tutti i documenti del tipo alla coda OCR" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "" +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "%(count)d documenti di tipo \"%(document_type)s\" aggiunti alla coda OCR." #: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" -msgstr "" +msgstr "Modifica le impostazioni OCR per il tipo documento: %s" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" -msgstr "" +msgstr "Risultati OCR per il documento: %s" #~ msgid "Delete" #~ msgstr "delete" @@ -380,11 +387,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -441,11 +448,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.mo index aef4a9689ab5052e6b7a58141da54141d2314ba0..a439c27e41a8fa0f653315246f90e541374caeaf 100644 GIT binary patch delta 840 zcmZ{g&ubGw6vrn?)w)ru;xDAwK~XAoWjD3~gNkCkRa29CNI~kfJ8rgaX2R|yqM$)g z&{L5`@S+Ft;N6?(q3FSbARfGy{sGcIpdk2tn{DyZ2X8;~-p>0m-`9gbi@lZo1Fslt zAAA`89)1{pCWjB~Ik*jc0gi)9;12K`I0*j8_#51fcqQW>a4+I@@H$w`Ggbf_patFr z4=~naO&qo(@d!KuJ_QegZ@``4NANS6d;zKO;Xr?pXCT#m%D4>DLf^qX;4hFCTFv4$ zu#WgINQ>OWt1QfCw{SRw#2t_Z-UmsEC*X1LEl7=)LF|#9>E4Esa?}vN)4`Od#fo%* zVP0ya#t@tyfw!b8rn1x4yWs4K=SlD7YU4y(_>xWPg-%NF#E2EGFiK=s+h<`jJX=TN)ELNy%0s?it@;CmQD`^2Ok z_64KIZ>)(;SkGe0|tWTh0;f}%5sbJ7#tVh|;HMvg>Eylr1T zm%KW2sJ%tF<8p^Ghq21ONB!tD&SH_!oiLAFVl%!;S)JOP*xcn@HjKrpFFH}03*w6` vOk*L3Mz`7wlYSBQQIZ@Vwwm(8IFK!KU0&-O^2uDaG9l7jew%GMw3dGWui!-1 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 1d1ac3f5a3..942a2120c8 100644 --- a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 # Lucas Weel , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-01 09:05+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -31,11 +31,11 @@ msgstr "Document" #: apps.py:95 msgid "Added" -msgstr "" +msgstr "Toegevoegd" #: apps.py:99 models.py:36 msgid "Result" -msgstr "" +msgstr "Resultaat" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" @@ -43,11 +43,11 @@ msgstr "" #: apps.py:160 apps.py:178 msgid "not found" -msgstr "" +msgstr "niet gevonden" #: apps.py:166 apps.py:184 msgid "error getting version" -msgstr "" +msgstr "fout bij het ophalen van de versie" #: apps.py:178 apps.py:183 apps.py:188 msgid "tesseract version" @@ -56,13 +56,14 @@ msgstr "" #: forms.py:40 #, python-format msgid "Page %(page_number)d" -msgstr "" +msgstr "Pagina %(page_number)d" #: forms.py:48 msgid "Contents" msgstr "Inhoud" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -80,7 +81,7 @@ msgstr "" #: links.py:37 views.py:161 msgid "OCR errors" -msgstr "" +msgstr "OCR-fouten" #: models.py:16 msgid "Document type" @@ -100,7 +101,7 @@ msgstr "" #: models.py:31 msgid "Document version" -msgstr "" +msgstr "Documentversie" #: models.py:34 msgid "Date time submitted" @@ -116,7 +117,7 @@ msgstr "" #: models.py:54 msgid "Document page" -msgstr "" +msgstr "Documentpagina" #: models.py:56 msgid "Content" @@ -127,6 +128,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,15 +155,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF " +"File path to poppler's pdftotext program used to extract text from PDF " "files." +msgstr "Bestandspad naar 'poppler's' pdftotext programma voor het extraheren van PDF files." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -172,6 +174,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -191,17 +194,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -211,6 +215,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -382,11 +387,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -443,11 +448,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.mo index 8d7b5e53205d59bedee9f0906ff2a938cdc19f8e..e08822a63bff3220463f0ac10addfb3f639714a6 100644 GIT binary patch delta 57 zcmcb>dx3YuL1u14LtP_d1p^~1Q?toum=)QL6b#I*3{56~VXmB9#S+EilbDxYnwXwy NrBINw`7+C2MgaK45|aP` delta 57 zcmcb>dx3YuL1u0P6I~;71w#`nLzBs8m=)O#6^sn63=JoLVXoxyNz6+xO-xU, 2015 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-03-22 07:14+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -65,6 +63,7 @@ msgid "Contents" msgstr "Zawartość" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "Zgłoś do OCR" @@ -129,6 +128,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -155,12 +155,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -172,6 +174,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -191,17 +194,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Dokument : %(document)s dodany do kolejki OCR" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -211,6 +215,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -384,11 +389,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -445,11 +450,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.mo index 98644adae4be1f6280a1ebfa58c9afec48969cfc..a6ee6111142610fafdc1c5a0d60c3a2975553cb8 100644 GIT binary patch delta 44 zcmbQoIgfLL4->bcp{|j!f`O5hsoCUkrlpfPnWMOU67$ka6Vp?z6bd#cGTSl&01Vp< AO8@`> delta 45 zcmbQoIgfLL4->b6iLQ~kf}x3(p~>WMrlmYSiFxUziRr0U3I!#Te=|jIPG+`d1OO+& B4YdFO diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po index 23930ca46f..f627db3c80 100644 --- a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -65,6 +64,7 @@ msgid "Contents" msgstr "Conteúdos" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -129,6 +129,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -155,15 +156,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Caminho para o programa pdftotext de poppler, usado para extrair texto de " -"ficheiros PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Caminho para o programa pdftotext de poppler, usado para extrair texto de ficheiros PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -174,6 +175,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -193,17 +195,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -213,6 +216,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -384,11 +388,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -445,11 +449,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.mo index 49b47579338b9f74dcbd45128062169de191e795..dc5993cdb8642038780f7448baca3da9015aa92c 100644 GIT binary patch literal 4193 zcmbW3Piz%M9LI-$ip77RqKN2#6k1^4Yiq&sN~xuPgoHxV77l2{dAsvoSNH8MGqWvl z(8PGdizXO733@QxI4D6A6G;=}#S2%BiBS&5gPM5LgWuompZ8uVlDO&i^LF+(Grzy{ z+aEWqzQ}Nua6g6nofV7?f&Z+;KU{yTV(dlmPjEZ9e>G!kz*oS2&;xgZAA(!K8{oa* z&){0{H}Dbguk3j(CO?Vi_26c35BLCh7<>#o2|f-6+4$SwMm)cljb8yD#`6uZ54;J| z{%h_@*LA>2JRb(10pAD7wre0vV7I{a;IAO9`#0DDZh+FH&ld1ea6gDw>=-x@G5#i$ z;@~1k`u&1`ehuV!{u(5I`~;GHEACI@wGrHg z=K+xPc?oHB(n=V?n3pY~1 z<_KVI-34yNP5I^Eri)@hbwSrA+++*sOBX_9V@CeXFY*mi-R30O*LsnCl*^Q7tFjjx zK=St<+~hBWBfUDi+$af6x5vH6O&T&ZnnyKm&c%{%>+H%0Pt!oR-o}OJNspU|n>opk zk52P5iA-dPb+#^WC!rCV%tjIuHH7h95d`Pb`8<>h`0Xkw43^J#)w~ud+NH!sMHohg z*Zk1qu~##Zk!KB;XQi7MQ4J&)rouZl8=VtjT^1{(hLE0G8smp`NJOE5nK?BZ!=Bvu z4as#RZf*cZz6sYrY`#9b-A}`NrCr?`Ff`PEsQ)3edcOZ4C zeKjMsmR2@f1Mia{D0ZX7tP1yaiA=%fRaxxeMQJV}9T=qq@~=n~ZAWq&p{Z0hckHmF zc&8Fd>LfrOA}@1c>x(JG86Ku^pAM5oRjO`}OI(uW5~8gUM_tNbbjo{HE;JKv94U-Noetvt_STl+YuJk~7!{9Q94@{uVO zy#|e(Bc5|IErSZ56z4?9$HyjTI;LeDDdSA)y6-uMlDc+gqYCesIzH=+(g}o&cIZ&3 z@V=hjeNJz$)At8tGB=k)aV^gz&=mh(Ox2TSC7pXYs$>)+jjtK+E9#+fB^17RXn z;Uj?`N*1UleS4^gfDGGYReIK{uWEJv20dlU$)&7Ms_^c?{U98mB^2=@h|R z9fmH4BkVk0LNFCD5tSqbDUY>omx8*@S8xFAgA*BjSLJ1qHBac0kEClC^YXTfY^C_N zciyy3V=^0)_-2Fy!-$-=Ozx!1;@oc<(QL)^K`bf%(BOf+%<>h#!!P2QMBxmi}K%ADQ{hB;n1QH^1DE#qRf#^~4a9 zjQxynjH8TaJD7;-PGeH&p^pt5#bwN3g1hkUaQ_IW*gwU6_y+U%dFT%;vj2lMW4dOO z#d*H)MvOU*UF2h4G1<6=yYU^S@e69P8#sY~F^d_?m~ku(J%Z1)EHS8kyf_=)=e z36j~IZ^|q*(J|B?X3)iRSjL;E1@ur4cro0sVV(U4yoj5465F&#JMa)4e2IH;9X0-3pK|6Gk5|`rlHTEp*b{Y=-|n8U1Dg_+o4ZI zon{Y1i}G_!+o5fxn}he!0yOB}peS8y8#UyzbxQiy9V@xL8p`|Btej2H$$Gk;3gbA6 zr7>ETk<6sr%RJ6i{YtIjdVbUMrJOzBRZmoEo?G*po;O`3>{if8D)Vu$(pe6YC~ms# z=xP`z5q5(3MkM#M*9xs*W$9M16gJ(}o-8;edF!-fF~2DN b`~_#0Iy&z4(49Neme*s4, 2016 # Renata Oliveira , 2011 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-17 22:54+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -64,20 +64,21 @@ msgid "Contents" msgstr "Conteúdos" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" -msgstr "" +msgstr "Enviar para OCR" #: links.py:22 msgid "OCR all documents" -msgstr "" +msgstr "Realizar OCR para todos os documentos" #: links.py:28 msgid "Setup OCR" -msgstr "" +msgstr "Configurar OCR" #: links.py:33 msgid "OCR documents per type" -msgstr "" +msgstr "Realizar OCR de documentos por tipo" #: links.py:37 views.py:161 msgid "OCR errors" @@ -93,11 +94,11 @@ msgstr "Automatically queue newly created documents for OCR." #: models.py:24 msgid "Document type settings" -msgstr "" +msgstr "Configuração do tipo de documento" #: models.py:25 msgid "Document types settings" -msgstr "" +msgstr "Configurações de tipos de documentos" #: models.py:31 msgid "Document version" @@ -125,21 +126,22 @@ msgstr "Conteúdo" #: models.py:62 msgid "Document page content" -msgstr "" +msgstr "Conteúdo de página de documento" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" -msgstr "" +msgstr "Conteúdo de páginas de documento" #: parsers.py:102 #, python-format msgid "Exception parsing page; %s" -msgstr "" +msgstr "Erro interpretando página; %s" #: parsers.py:129 #, python-format msgid "Cannot find pdftotext executable at: %s" -msgstr "" +msgstr "Executável pdftotext não foi encontrado em: %s" #: permissions.py:10 msgid "Submit documents for OCR" @@ -147,22 +149,22 @@ msgstr "Submeter documentos para OCR" #: permissions.py:14 msgid "View the transcribed text from document" -msgstr "" +msgstr "Ver o texto transcrito dos documentos" #: permissions.py:18 msgid "Change document type OCR settings" -msgstr "" +msgstr "Alterar configurações de OCR para tipo de documento" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." -msgstr "" +msgstr "Caminho de acesso para o programa tesseract" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Caminho para o programa poppler pdftotext usado para extrair texto de " -"arquivos PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Caminho para o programa poppler pdftotext usado para extrair texto de arquivos PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -170,21 +172,22 @@ msgstr "Caminho completo para o servidor a ser usado para fazer OCR." #: settings.py:27 msgid "Set new document types to perform OCR automatically by default." -msgstr "" +msgstr "Definir novos tipos de documentos para realizar OCR automaticamente" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" -msgstr "" +msgstr "Enviar todos os documentos para OCR?" #: views.py:40 #, python-format msgid "%d documents added to the OCR queue." -msgstr "" +msgstr "%d documentos enviados para OCR." #: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" -msgstr "" +msgstr "Enviar \"%s\" para OCR?" #: views.py:73 #, python-format @@ -192,28 +195,30 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "Documento: %(document)s foi adicionado à fila de OCR." #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" -msgstr "" +msgstr "Enviar os documentos selecionados para OCR?" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "" +msgstr "Enviar todos os documentos do tipo para OCR" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "" +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "%(count)d documentos do tipo \"%(document_type)s\" enviados para OCR." #: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" -msgstr "" +msgstr "Editar configurações de OCR para documento de tipo: %s" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" -msgstr "" +msgstr "Resultados de OCR para documento: %s" #~ msgid "Delete" #~ msgstr "delete" @@ -383,11 +388,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -444,11 +449,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.mo index 5e26cbcb845e948801a93c917cc9b1fdebfbe270..b9eb15eec2295753146a40c384b7f6a78258b0e3 100644 GIT binary patch delta 389 zcmXZXJ4*vW6o%p1iyAiulYo~(WyQiOkjX|P3pS!%M6gI9h=jNX3wI%AwURUn_Jb+x z?ff5BRu*;^VqxJAuoB;s&4G_+7|zU@dGubr!AIGBP*i~|ky}zCKSZi(DOE>}Q+S3s zj8V>9V-fFgABX7R7cSyA&Y@*1HH`}>_pfFSRKVherahEF1vhKl8Qa7e_FE_iJ9vyK z%Ahy&@g0}(7v(|o6H1kFeQbz~QF%hks64fnE#zhL8!7pn45WYb<4IGpPK&!qC%uT` zzJC?w?kVV>-Jv+W$sHrsJGZFi&4?Y6bEIEp_0A>UnHzaO^;XtQ+s0t6h;rTyMTQTB@S+zk4shX<|`9J|Nh!Ik0LFKRI<9smFU 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 ad8d068c5f..542997cb74 100644 --- a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-04-17 13:17+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -64,6 +62,7 @@ msgid "Contents" msgstr "Conţinut" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -101,7 +100,7 @@ msgstr "" #: models.py:31 msgid "Document version" -msgstr "" +msgstr "Versiune document" #: models.py:34 msgid "Date time submitted" @@ -128,6 +127,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -154,15 +154,15 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Calea de fișier pentru programul pdftotext folosit pentru a extrage textul " -"din fișiere PDF." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Calea de fișier pentru programul pdftotext folosit pentru a extrage textul din fișiere PDF." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." @@ -173,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -192,17 +193,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -212,6 +214,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -385,11 +388,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -446,11 +449,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.mo index e4e7e8c0af8cc8bd2c16a6534d479de586b5d713..49e7ec9354fb865a542c2c0b3cbd9f24db5ec0a0 100644 GIT binary patch literal 5561 zcmbW4U2Ggz700KgU$}fVd{YXyp-${Jv);9xkZiKCO5!vXabgnJ5=c)z2}_&`JZ#ge_D6j%LZ45-)H%qy2UUG;5)bShwGp3GmJ;Te}NBx+io+A z+re*ugJ22V2>uAXAG`|Q3H}AV3;a9yQSjgK^Ia_d4A1v~_kx?i4}yEakAvgjC&5ZQ z{tWmDo?nc|e+GVp=c`~p_*+oy-+o85uL+LuychgD_zEboy#*42@mKI3@Nb~(`(LmN zT!+)*&wb#>z-=I}jQ!vc_!#(p@MZ8m@NA4%zzsbA5&RT*D?xtfMZkv!L+(OK>0fAMh*S@CPD)UybqSpvm}E zP)>y|C&5i0HjK^S z8=wg2ci=5w5YGpX8X-=(UpP2lz>eh;}4CxiD$;@Iwk(BY*+@#)JH%Hbh?%lU%~7_$8O{ zF106hAs4CDoP16{MSnyyNL_2Pd)2tyLcNYncomJy1#LRdn?T76>5Z=Lo}$yJ`Mo7o za*BJ&WuVtvudGtZE-Bwp{^i8PY}gGuV|1_H;98R& zmc_=y4d1C+ez|B>Do3OBs%9VNzUbPP&-RH`Pfa?mSjiZ>tXj?S)nvI=QuWfL@A&o+ zU)e|OV#Bv4Dz>uxyz2IhUDH-=%1(EP0uetw+xN@0DP}k|pD+{jjNRB&ez|HZuQ5?A z`*>jNj>$-G)VS?>Wv8ZN9(G;Fz0NE4jMuBWHD$LxsbcIv%N#EmUbR*@Z?4rTNux*? z%dppsE**a=@;6-%J83q1J$2afu9?f>QrXvWCf0NsN=Zm!QFA?fq-fWDA*F6XPHjp@ zyIs<-r%X!fmOm|0sXO(0#dbG(t1?%2ohjFw5^^v^66h}#il;}C81dA0wRZHd zE%}aSxVG1*phI+-Ox9eCl4lr}bU$8eR3~h=w`3gDlZ`{RF9J^&=#4$ijP0^hRoqfm zOIb`DRV91U!d6DsH|jFSIHUziVN!`}Yj7xe+Y(k%LDzUosasKv#Fdt8k_4BQVDe(k zJYn0jD|WH9Zrhz3FT;S$CeJmm=$0oW@lwP(+lf6xbFHSLYE_Afb?wurN=CEzlXp!) zBqO7)^8_B5kCx2ws0{LI#5!u#)bQ?+LtO{$y5suhh&NR(nO|y5dFGgtS6!nA#>`#P zfl#z5O(C!Pv$-v1E@$=+sBC|J^ANw^iucig>~-qofWh{YVUt!iE!Y->#M|@^tp|`-mZ~HM~0j6<}%r?xYe0sx?+XwzIw$f z*S4$TG!<+6g~!JBm|L6k#MepNHHT|Or$j;L)z*o!pE{dYZli0o(r~Scxd+{Pc~z_H zN3SrrT}8Kro?3SEc7R@b`%EXRY3o^!#)U?o@#PXx=s zd~hY4;b~5V#}#*%gSUBF?s)J;uY&pT`+C_)#j0Q>e3p@?8MzpqQrygj$MwWZ!IfY( znB#XPxE!9==VM31t=k4GH@IzZ28SL~PX-Grds}bV7F>$hW!((K$WClI13@dyUu4H?bEVpN znl*x-u<)X$`Yp1w%+q}9pe9-d&tPgMn8jtN#ESSzEGrDYEk;R7#1v_f*)3Wyf;YnF zFmM4MXWzxgCE0dPe1e<-Z`mz z6tyTdg0}Ed#CJ1-m+Z?fw1W=RuyIsaO*t`3S;lHK`efU*s`A5A!6iBb^+cdro?5b(sdZga(h9|mD3WB|VD7f1S9ta)~6iw!y6ZrfoN71g{dVoE)+A z36W4Vr3kuHuMrXwKNfXwUZIVi48Pmz_^LBhh`*o@sCmLebF*3p$E8t=UBpHUAn|gF zi9(mqW7O@Q&nScQ?Y*BsLVWYIh>kG*$$cY7{!ph~Af~f~^bvWT;BR!d7IlR$AOJoM z0;vNci@OZ$UdLib_t$79O0Di)tM#@jZEKoA$4zg-57Ad^;j~wpIG22)$z%j}y-ze4 zK1(m@ak4t@X+ z>fq)la8WD{4h}kYaTDpMa1!xYW~&ycXEt-(Z^0Lzj_4IbW=(T3Of1oRMb>rF>CS zi<+)!xdIZd8?KjcIELjO8lLUw>ZZMGI-U((!#S{dUv4OM!)mpSmZ_^wo1f)vUI;(( jp0vz2O3r`Rd+NRLeKf@%W7ph|EwPbIa3)#hTFUwZ=l)L- diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po index 014f870820..858dd949f5 100644 --- a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-07-13 21:33+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 #: settings.py:7 @@ -28,15 +26,15 @@ msgstr "Распознавание текста" #: apps.py:91 msgid "Document" -msgstr "" +msgstr "Документ" #: apps.py:95 msgid "Added" -msgstr "" +msgstr "Добавлено" #: apps.py:99 models.py:36 msgid "Result" -msgstr "" +msgstr "Результат" #: apps.py:160 apps.py:165 apps.py:170 msgid "pdftotext version" @@ -57,31 +55,32 @@ msgstr "tesseract version" #: forms.py:40 #, python-format msgid "Page %(page_number)d" -msgstr "" +msgstr "Страница %(page_number)d" #: forms.py:48 msgid "Contents" msgstr "Содержание" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" -msgstr "" +msgstr "Отправить на распознавание" #: links.py:22 msgid "OCR all documents" -msgstr "" +msgstr "Распознать все документы" #: links.py:28 msgid "Setup OCR" -msgstr "" +msgstr "Настройки распознавания" #: links.py:33 msgid "OCR documents per type" -msgstr "" +msgstr "Распознавание документов с определенным типом" #: links.py:37 views.py:161 msgid "OCR errors" -msgstr "" +msgstr "Ошибки распознавания" #: models.py:16 msgid "Document type" @@ -93,31 +92,31 @@ msgstr "Automatically queue newly created documents for OCR." #: models.py:24 msgid "Document type settings" -msgstr "" +msgstr "Настройки типа документа" #: models.py:25 msgid "Document types settings" -msgstr "" +msgstr "Настройки типов документа" #: models.py:31 msgid "Document version" -msgstr "" +msgstr "Версия документа" #: models.py:34 msgid "Date time submitted" -msgstr "" +msgstr "Дата и время отправления" #: models.py:43 msgid "Document Version OCR Error" -msgstr "" +msgstr "Ошибка распознавания для версии документа" #: models.py:44 msgid "Document Version OCR Errors" -msgstr "" +msgstr "Ошибки распознавания для версий документов" #: models.py:54 msgid "Document page" -msgstr "" +msgstr "Страница документа" #: models.py:56 msgid "Content" @@ -125,21 +124,22 @@ msgstr "Содержимое" #: models.py:62 msgid "Document page content" -msgstr "" +msgstr "Содержимое страницы документа" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" -msgstr "" +msgstr "Содержимое страниц документа" #: parsers.py:102 #, python-format msgid "Exception parsing page; %s" -msgstr "" +msgstr "Ошибка при чтении страницы; %s" #: parsers.py:129 #, python-format msgid "Cannot find pdftotext executable at: %s" -msgstr "" +msgstr "Не удаётся найти исполняемый файл pdftotext: %s" #: permissions.py:10 msgid "Submit documents for OCR" @@ -147,73 +147,76 @@ msgstr "Отправить документы для распознавания #: permissions.py:14 msgid "View the transcribed text from document" -msgstr "" +msgstr "Просмотр распознанного текста документа" #: permissions.py:18 msgid "Change document type OCR settings" -msgstr "" +msgstr "Изменить настройки распознавания документа" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." -msgstr "" +msgstr "Путь до программы tesseract." #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." -msgstr "" -"Путь к файлу программы pdftotext Poppler, используемой для извлечения текста " -"из PDF файлов." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." +msgstr "Путь к файлу программы pdftotext Poppler, используемой для извлечения текста из PDF файлов." #: settings.py:22 msgid "Full path to the backend to be used to do OCR." -msgstr "" +msgstr "Полный путь до бекенда, выполняющего OCR." #: settings.py:27 msgid "Set new document types to perform OCR automatically by default." -msgstr "" +msgstr "Задать новые типы документов для которых распознавание будет запускаться по умолчанию. " #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" -msgstr "" +msgstr "Отправить все документы на распознавание?" #: views.py:40 #, python-format msgid "%d documents added to the OCR queue." -msgstr "" +msgstr "%d документов помещено в очередь распознавания." #: views.py:48 #, python-format msgid "Submit \"%s\" to the OCR queue?" -msgstr "" +msgstr "Отправить \"%s\" в очередь распознавания?" #: views.py:73 #, python-format msgid "Document: %(document)s was added to the OCR queue." -msgstr "" +msgstr "Документ: %(document)s добавлен в очередь распознавания." #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" -msgstr "" +msgstr "Отправить выделенные документы в очедерь распознавания?" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" -msgstr "" +msgstr "Отправить все документы определённого типа на распознавание" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." -msgstr "" +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgstr "%(count)d документов с типом \"%(document_type)s\" помещены в очередь распознавания." #: views.py:132 #, python-format msgid "Edit OCR settings for document type: %s" -msgstr "" +msgstr "Редактировать настройки распознавания для типа документов: %s" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" -msgstr "" +msgstr "Результат распозанвания для документа: %s" #~ msgid "Delete" #~ msgstr "delete" @@ -387,11 +390,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -448,11 +451,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.mo index 9dbf5f35555b13d02cf3376b8b7be9d3baf69886..e35991b20c225299d531d54793e0ba80eb1c2671 100644 GIT binary patch delta 47 zcmZo=Yh~M@&B$$NsB2`bU|?irYBt%7ans}VZ#?AabiFxUziRr0U3T2t`VSbZ&n4%|_GqnQ% DU@H#K 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 d0cb37ea0d..e112f9d5e1 100644 --- a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -63,6 +62,7 @@ msgid "Contents" msgstr "Nội dung" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -127,6 +127,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,12 +154,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "" #: settings.py:22 @@ -170,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -189,17 +193,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -209,6 +214,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -378,11 +384,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -439,11 +445,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.mo index 55ee0395d3b3b3371e5c8be05f805b16340eba00..922e7f38d74bfd82ace5a9d09cc08f377ff52682 100644 GIT binary patch delta 48 zcmbQkHHT}%Mka1ULtP_d1p^~1Q?to?nAT3NWRBwZNz6+xO-xU|JNr$}V2<8=nc0&O E0Bd>=VgLXD diff --git a/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po index 0d71a6fbc0..0f89ee503c 100644 --- a/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:58 apps.py:116 apps.py:154 links.py:14 permissions.py:7 @@ -63,6 +62,7 @@ msgid "Contents" msgstr "内容" #: links.py:18 links.py:25 +#| msgid "Submit documents for OCR" msgid "Submit for OCR" msgstr "" @@ -127,6 +127,7 @@ msgid "Document page content" msgstr "" #: models.py:63 +#| msgid "Document pages content clean up error: %s" msgid "Document pages contents" msgstr "" @@ -153,12 +154,14 @@ msgid "Change document type OCR settings" msgstr "" #: settings.py:10 +#| msgid "File path to unpaper program." msgid "File path to tesseract program." msgstr "" #: settings.py:15 msgid "" -"File path to poppler's pdftotext program used to extract text from PDF files." +"File path to poppler's pdftotext program used to extract text from PDF " +"files." msgstr "程序pdftotext文件路径,用以从PDF文件中提取文本。" #: settings.py:22 @@ -170,6 +173,7 @@ msgid "Set new document types to perform OCR automatically by default." msgstr "" #: views.py:28 +#| msgid "Submit documents for OCR" msgid "Submit all documents for OCR?" msgstr "" @@ -189,17 +193,18 @@ msgid "Document: %(document)s was added to the OCR queue." msgstr "" #: views.py:87 +#| msgid "Submit documents for OCR" msgid "Submit the selected documents to the OCR queue?" msgstr "" #: views.py:94 +#| msgid "Submit documents for OCR" msgid "Submit all documents of a type for OCR" msgstr "" #: views.py:109 #, python-format -msgid "" -"%(count)d documents of type \"%(document_type)s\" added to the OCR queue." +msgid "%(count)d documents of type \"%(document_type)s\" added to the OCR queue." msgstr "" #: views.py:132 @@ -209,6 +214,7 @@ msgstr "" #: views.py:154 #, python-format +#| msgid "Queued documents: %d" msgid "OCR result for document: %s" msgstr "" @@ -378,11 +384,11 @@ msgstr "" #~ msgstr "Are you sure you wish to activate document queue: %s" #~ msgid "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgstr "" -#~ "Amount of seconds to delay OCR of documents to allow for the node's " -#~ "storage replication overhead." +#~ "Amount of seconds to delay OCR of documents to allow for the node's storage " +#~ "replication overhead." #~ msgid "Maximum amount of concurrent document OCRs a node can perform." #~ msgstr "Maximum amount of concurrent document OCRs a node can perform." @@ -439,11 +445,9 @@ msgstr "" #~ msgstr "Error deleting queue transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete queue transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete queue transformation \"%(transformation)s\"" #~ msgid "Queue transformation created successfully" #~ msgstr "Queue transformation created successfully" diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.mo index 7ba9de908cb2ec0c9342d1cb031ff72397c0d446..5643d71d86f2c6f35aa4399d5ea355ea440ff77b 100644 GIT binary patch delta 45 zcmaFH`HXWz7!$Xlp{|j!f`O5hsoCU2riGLFnWK1o67$ka6Vp?z6cURzXE4_>0suBJ B4V?f0 delta 45 zcmaFH`HXWz7!$XFiLQ~kf}x3(p~>V#riDB{iFxUziRr0U3W-IN8JVLuXEN6^0suP6 B4U+%> diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index 39350929a0..0d4107d58e 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:21-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -127,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.mo index 1b24a9fc57f17809164ba11716245b04a88a7d4f..a26fbb3a049aa20342705eb12f03560c483ee52c 100644 GIT binary patch delta 423 zcmXxgJxIeq6u|LZ62H=@HHub{5>OO`ir3ff5`-ZdB zU$}%mr%SDI6}M3?I>9x}P#$!TGx#v@1xwbhW%ZaWv+<3iSmqV-CsvUA^O$60I}hHI zA1H-<$$!XSk|>%jH9a=YY=oRJ`zkZ9s#(ywQjNm(YFw+E#4daFijG1Z#Tzx#vM)^F Y?D;#%aeA7hhjDn2c8{D*Wp3Q;57rwlssI20 delta 411 zcmX}oF-XHe6vpwpq8Y?Nh%{+H$l~DY;wCs%DbYc3(Zym12i*$23hnMD zIOyaqxVX3q>f$W8*h%nzG4#Q^-+d%`$>q`MI<5Dzx)M~8o};_;H0??jY7br9&pbgz zK1T;HaRfD%u#Y*s!CAaRbN@3I@FlzchGijI;**UTFhDc#7u$5+62c?*?0+AyLVm?X z{LXTP>C0pv>Ehg1cxwq=Qq~#~HlEC49oXSQp}pjXC)Md2d=1ti-hVj&x8KhnUlt zD(X!+IcEORC_SzZAFA;O@qaK} diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po index 9d23711ead..7bfa05a31b 100644 --- a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-06-13 13:45+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -70,7 +69,7 @@ msgstr "Име" #: models.py:46 msgid "Permission" -msgstr "" +msgstr "Разрешение" #: models.py:67 msgid "Label" @@ -126,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.mo index 44decd640c8ad90f2f0470663d74ea4e368cfca0..1bda6dbd5bae37cc24f08604473362c264bcf505 100644 GIT binary patch delta 48 zcmbQtIhk`q7!$Xlp{|j!f`O5hsoCU2rhSw3nWOl967$ka6Vp?z6q1VLog6oJFmp2k E07u{r$N&HU delta 48 zcmbQtIhk`q7!$XFiLQ~kf}x3(p~>V#rhWWAiFxUziRr0U3Q5KBPL7l1n4>p$GIKEk E080rCy8r+H 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 60ce8f28b1..54108716e4 100644 --- a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21: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" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -127,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.mo index 1c3e124f88d3322d1ed859964e2a404d6b247b30..f36971500f69590f50ab042bb746b4a60ee0d6de 100644 GIT binary patch delta 42 ycmaFC{DOJH5^h67T_a-!10yR_vx(~$PL5@a;_*q$OD|1KPqk7=Nu0cm(Fg!B8V)D` delta 42 ycmaFC{DOJH5^e(%T_bY^LlY}QlZopW^7tg?rI#kAr&=kbBu@5cjGnxm(GUPJrVbte diff --git a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po index 4820089678..1b2106a20e 100644 --- a/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/da/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -125,6 +124,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,10 +161,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -180,17 +178,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo index 7448e80ddfcd5fa75692316f2b17d232f78fcb73..973c850551a5c2f2cf16a9e5d9e08071d670a1ee 100644 GIT binary patch delta 48 zcmcb{ca3j@BMY~op{|j!f`O5hso7*7mIISzSfluT67$ka6Vp?z6jD;-U0gSpvOZ)4 E09?5a;s5{u delta 48 zcmcb{ca3j@BMY~IiLQ~kf}x3(p~++)mIM4giFxUziRr0U3Mr}aF0PZgS)(_Xu|8k~ E0ASh<)c^nh 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 8c73a7aeb0..1ff5bc00e7 100644 --- a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Berny , 2015 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -128,6 +127,7 @@ msgid "Available permissions" msgstr "Verfügbare Berechtigungen" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Erteilte Berechtigungen" @@ -164,10 +164,8 @@ msgstr "Berechtigungen der Rolle %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -183,17 +181,13 @@ msgstr "Berechtigungen der Rolle %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.mo index f8dc07e568dfd658da7bb412558626f549700fcc..09cc32a000aa6c6e411a40986bd510e1f5b66bc5 100644 GIT binary patch delta 24 fcmX@lex7~9KSpjtLtP_d1p^~1Q?t#SOve}jWA_IK delta 24 fcmX@lex7~9KSpi?6I~;71w#`nLzB&%Ove}jWH<*3 diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po index 3df8cbb2a8..f62e6c72fb 100644 --- a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/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: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2012-02-02 18:18+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.mo index d6ed63743f05166c67fa012013e1c0636a841d20..165c15ebb312560bb874821fc655848c4be215cb 100644 GIT binary patch delta 788 zcmZ9~ze^io9LMp;=7j5F8YQ7W(7;ITDaQylQi!Ef9j9o5YFOF z);III!RN@&c>F2TMO455^?Vgo>3U~;2ld`AlDqkgO6&j!@fgX$v@wkrsIRJ`^uBf{ zP)2%qk4xLCZ`^G<6Z#|yqJ^(FEuf^-bZ&GOv`hat?Swv?3h6fO7P%;SC)#SxM6@MN zSd49DpH}_)QqA>Wx>dhYF1Y#dSFD-vqS3GsUrtU=j!jLw6H|r9GvV)euG^m}Jemme s*6Z-S^(-}4TJ-8AkLl%FXxm?jT3_;O?u&9oVHNenUQ1mc4NHmfe}w{B=>Px# delta 683 zcmX}p%_~Gv7{~F$+!-(Pg7F?|7G@#Q%$+GUg_V@1tZYclgw!YtZws0RD?%10#TwZt zYa3;$l#Q`b${%2b-7I{6x;%C6=iYnXp68tH$Z@#z7IjVx(M9W~ebM5y$0{B~uG*MJ z%wsFAU<2-92v0G9m)`d^I(*+^J>H=oAFv6Zuo>Txc_s7BOD8`nsDW)hV`{J)wNNkC zVIOM26b5kwJ8%M(z#K-gfSOlCCBBPV*P`a1;St4MV3hrhOK%GuW2nleQ5zIc3vXZq zi{AGkssf8j^a@qk4Jv_q)VybG$5*VyPtS_i?`KdW`#L z+T^ee=aIF{7KU*Lb!(cdaSHY8YBgV>6Hu}`Q58F@qgUuI6}n?pp-`3F%75sTwDDi) zR8*moXYb!**U2eVNZ9UIpW9L2fqn5U1rzB3cPN%jXOd}~b$Wt{)PS3exyei-W!Id| eP&U83xSn5J$ix;_?T0gCr~G9*9N4$zK>rU{X+25+ diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index 4322080393..860f19069c 100644 --- a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po @@ -1,25 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 # Lory977 , 2015 -# Roberto Rosario, 2015 +# Roberto Rosario, 2015-2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-23 06:40+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -116,18 +115,19 @@ msgstr "Grupos disponibles" #: views.py:46 msgid "Role groups" -msgstr "" +msgstr "Grupos del rol" #: views.py:56 #, python-format msgid "Groups of role: %s" -msgstr "" +msgstr "Grupos del rol: %s" #: views.py:79 msgid "Available permissions" msgstr "Permisos disponibles" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Permisos otorgados" @@ -164,10 +164,8 @@ msgstr "Permisos para el rol: %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -183,17 +181,13 @@ msgstr "Permisos para el rol: %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.mo index 8b2bc8609b46ac92e814be78a5cd7d7166e44b5c..0d1852019473be39b90db6c49b1842cd1b8d180b 100644 GIT binary patch delta 44 zcmX@leV%)R8#A||p{|j!f`O5hsoCT}=0%fOqIi4~^U_Nb(^IV!(h@gEvXn6b03w17 AB>(^b delta 45 zcmX@leV%)R8#A|oiLQ~kf}x3(p~>Vx=0!X{iFxUziRr0U3TcUxKQTvdj$$cg1OPUl B4jTXf diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po index c01842a506..390ff7b3c3 100644 --- a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -127,6 +126,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,10 +163,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +180,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.mo index 8eb505e9654094698e9f1752b5e63cd2cddaca6f..55a3d2737b03f73d6959665ca38b18974d551d1e 100644 GIT binary patch delta 45 zcmcc0ca?90BMY~op{|j!f`O5hso7*7mLrp8S)+J-67$ka6Vp?z6w-<|m$BYw1OPI{ B4hR4M delta 45 zcmcc0ca?90BMY~IiLQ~kf}x3(p~++)mLohqiFxUziRr0U3TZ`?`B|ekm$Tku1OPUo B4gLTC diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index 8640cd8a46..d5bc7867c6 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -128,6 +127,7 @@ msgid "Available permissions" msgstr "Permissions disponibles" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Permissions accordées" @@ -164,10 +164,8 @@ msgstr "Permissions pour le rôle : %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -183,17 +181,13 @@ msgstr "Permissions pour le rôle : %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.mo index 59a849d56be01f7bf5072c684df51c971ec1ee73..c51f4d7e48d667cbdd3d623afa9242ba3a87b55f 100644 GIT binary patch delta 42 ycmX@fe3E%WJGY^su92~VfsvJ|*~CdpCOb1m@%SX>rI#kAr&=jwlun+*s0#od!wr%E delta 42 ycmX@fe3E%WJGX&}u93Ndp^25D>BLD(czhD`(n}N5Q>_#-N++8#Mo*s0r~?2Y8V!j6 diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po index 84bfd5ff06..08650b0d58 100644 --- a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -125,6 +124,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,10 +161,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -180,17 +178,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.mo index 6a8bdf5734bef48b1907ec2c00f4b6023ec8ad89..db3d647001840d6dfc662494999931e01257410e 100644 GIT binary patch delta 42 ycmX@ie3*GcJGY^su92~VfsvJ|*~CdpC%Z64@%SX>rI#kAr&=jwrc9p8s0IKWt_^Yk delta 42 ycmX@ie3*GcJGX&}u93Ndp^25D>BLD(d3+M{(n}N5Q>_#-Qzn}+Mo*r{s0sicxD9Cl diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po index 2a83198db9..3306082a3a 100644 --- a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-24 05:21+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -125,6 +124,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -161,10 +161,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -180,17 +178,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.mo index 05b1bd04ae3e7b42fc6c6638e3483ab3854c524f..f2b5e96d66f2a1f4cecfd3809ab4a6af583d14bd 100644 GIT binary patch delta 350 zcmXZWy-LGS6u|KlO`^8aRGx&rBe8VaH z#0vh5YSa9$D_G=w4OPF5OSp%Ggrqq<#d#c{ntN`_iA=D$!|KEa2lJ#5AATQ=(@JIX*r(1y_2`})!n-7ZCS44JM|5R zRcHlS&pt?lBpXE1_;hc&{Hn3eCQhMc!z^{kJI>! zO!;7&z;7(;9Ga9LYv35pVtH>FYq-{XGdBCGZoBC(Dz6=Q3q@$othSoIr+hDPTXQbM z4s|zgb~2rG4|JYpfm)B#Bb_9%>SXb*W~FK+%Kzgfzqm5DYoSh}Lmlk}D$Wbr+UjN2 Gi}3@PcR26> diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index fe488dbfe0..96c545f732 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Giovanni Tricarico , 2016 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:03+0000\n" -"Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-09-24 10:09+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -127,6 +126,7 @@ msgid "Available permissions" msgstr "Autorizzazioni disponibili " #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Autorizzazioni concesse " @@ -163,10 +163,8 @@ msgstr "Autorizzazioni per ruolo: %s" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +180,13 @@ msgstr "Autorizzazioni per ruolo: %s" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.mo index 032f23427c5423552dd163477e50e81c419cdd93..352d591f419c99213aca56c39fc2bae2ae7c41d7 100644 GIT binary patch literal 1965 zcmZ{kJB%Ae7{>=VAecu;!W$w@ib!|Bo*x|1X^-QPJLh!L**RTI5Dn4T``MoJ?yNO4 zwiBq3Xpu;ff|h~~i4q|S3Xo_i5Cx9{njj$xs8S&Ke|zim`T`?)fAf7a^F3$$^T~x9 z0^>A(&)~OkhY(BP?;wv4?iAu-@H+S?_z`#<{0w{m{06)S{4SS&1Q#Ix2A04-z`Ma) z;0f>_@DzCBu7h)D!IO}m2cHCA0eSzM;Jx4#knQ!r`@k4vyJPTv@Lli;@O_Zu_!wk+ zpMZSsOOW?{4RRjef^7d6knP+Azd){kfgIPTSbPlp3gnvn0CHTnK=ywMPPk5|!DC?L=>499YcRHxe0Q7f9CufJOlX{jPd%j z;3MD)_#n8Q%Wr^>Lyket_q|-c0dh;ZcStq!#dYGdPvghFINs^t+&OQKk?UI=Tp!Mz z2j{}~fNOkoaKAZLxIP?Q8>EuO#_{7iWbr-(avjBMW2Ix&j!E`xIvToyVn{a8&gs-R zv0+Jhl7=SIrZG)ro;$HgF?q_7tvgYVw9h`dyk(W~BKyjs;Y>r(5nUF^Ru+&lZ};$+>%`Edp``z<;i5S?Aed*(p5fPwy9HAr?#AM+5tt0 zE8|dRux#Qh&7Ja6sj=Ot&k9ssu9P-Xe5p@%Dtm8B!GpCz&9xZQb8cnc^+IFM|=(J5^sgz070Egz(F`3y4F2zLeM`Ul` zGoCKNK$|9H|IgA;Ifp&1l$?i4F$+ujsSb-hf`Nz*Z#1IDBg>M?DaW{%M`O*N-t-NT zlW+62L32{FgiKA8zrG!c5JXd{CL&!pSrg+;DigwXfsuA70WE< bB>a(ODb3u?nZK>fXy`!i59T(-Xp#6Ap91~v delta 695 zcmYk(KS*0a9Ki9*e@)a_tF?-jhvHD%Kwc6F&Ct@Z5dR>S4kB{eM+hYE!F#cEu(&uB z*Fz_bg04CgO2Mh!3sUIfQa3>-T?D80`wI&Fk>C5=9e4M;yBwx3Qfq&DqMM3%L=KTZ z$zgIe#D}=TZoI}m42PBKz{eQJvAh0rjM9IBNqmVhe1i{g8XuxYS+{}%O0B6?8VLrr zP&R0yY_N|hJVIG;j6L`RW!`U;0;eeR&v2JRUZND*V3J&_i4;;_u^mrPE_#Y>)K@n& z1{wI<8lcUtvcV|Ijf*G;oJ3jp7WpZk4@=ZXlmmRa^D{~zgT1(eo%jXiCBI`o{=yLT zTSerFnZY>jK(S67Pq{w|pfe0xFkRtLz5^ZFf?2-;47vVu#FDHHZ>(uKHx?0mq zHOH!$?eM5M2``vek-?Ekr@rL)ftu2FN6k2Xy&42n&;74y4kBabJTjlk7Bab_Wfw~J zgegad?QA}iv#p$6%I2SCiDX#^jm(^{-Jqr$o?o(NJ@#&R7-+xhnQzhMbXmKV6, 2016 # Lucas Weel , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:03+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-10-28 12:44+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -38,7 +38,7 @@ msgstr "Intrekken" #: links.py:22 msgid "Create new role" -msgstr "" +msgstr "Nieuwe gebruikersrol aanmaken" #: links.py:26 msgid "Delete" @@ -58,11 +58,11 @@ msgstr "Leden" #: links.py:43 msgid "Role permissions" -msgstr "" +msgstr "Permissies gebruikersro" #: models.py:18 msgid "Namespace" -msgstr "" +msgstr "Namespace" #: models.py:19 msgid "Name" @@ -74,7 +74,7 @@ msgstr "Permissies" #: models.py:67 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:73 msgid "Groups" @@ -114,25 +114,26 @@ msgstr "Beschikbare groepen" #: views.py:46 msgid "Role groups" -msgstr "" +msgstr "Gebruikersrolgroepen" #: views.py:56 #, python-format msgid "Groups of role: %s" -msgstr "" +msgstr "Groepen van gebruikersrollen: %s" #: views.py:79 msgid "Available permissions" msgstr "Beschikbare permissies" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Toegekende permissies" #: views.py:93 #, python-format msgid "Permissions for role: %s" -msgstr "" +msgstr "Permissies voor gebruikersrol: %s" #~ msgid "Permission holder" #~ msgstr "permission holder" @@ -162,10 +163,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +180,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.mo index 937254d8134273b3d7631820376f3b4099e3ccc3..c382d23f1841f353f240f620670847797e06205f 100644 GIT binary patch delta 539 zcmXxhze~eF6u|Lo(rSOHwIU+elEtym*47_I5TT<`aI8}*B`DF>)~a3XChmuuAc#0Q z=zpLN4*mh+Ai8uAXGamguO^SYe3Hw%yLaR&avJTuCxd5-NRl(;4VfaB1KfyPOyC_( z;v){>D+cicL)gc0{K5(RL8(g^N=@SwN?i_zaRHg%Q!6|~87N~6D<~5;{tHwMWuk*m zEV_eZycd`)4V5vBRg`&~7{P6nhW1hFPEgi4$24AInEllQ53=#ISMcJ!zj=P5EclIF z>etg`HToHZG$bM4rI}Gu4&{ezET{HE_A|+3nVWR!hn!%9jQaz~fd{`phNKa-dSGw4 zcFnC@POH&rw)IiqI<($!>usGfDzRKHlb^G)`BHIS9~$ZCVkTR#vP-36L0=eMJ!@9u dYxb_wv7LI!YP$N^+zUCaPP41~=KWwD^#>AeJC6VW delta 452 zcmXxgy-LGS6u|M*BvzZ$uS$`EgltZQCT$S{4&o|(0jCIB#1Fdo(Lu86v*wJ1SR=Q{7jjeAC2qtm)^Uhsd_)JI zZ~>oj9VfVfZ>V)2*uW`j-8U}c4E6jEx+1B}S$I4sTYm>@s09to*z-{b__9ToaE{u* zp{Rl$>Hu}rx^2{kyXfOS>bWD-K4-=LP5wI-xhpmvP+vGgE*W#9ztCTnNqwfl)OiE_ zVp{(nE5$;aXz0JysFJIs4z0ob`9QLFot&DiG%*)e&uev>(M}L{;;?Hn%Xiz&C=8-7 fZne$K8deXI%l=i;KaPXJxjC^9&D0*4p7Z_-*ZVDk diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index badfa03f24..773fb3e624 100644 --- a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # mic , 2012,2015 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-08-04 09:54+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -51,7 +49,7 @@ msgstr "Edytuj" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "Role" #: links.py:38 msgid "Members" @@ -111,7 +109,7 @@ msgstr "" #: views.py:45 msgid "Available groups" -msgstr "" +msgstr "Dostępne grupy" #: views.py:46 msgid "Role groups" @@ -127,6 +125,7 @@ msgid "Available permissions" msgstr "Dostępne uprawnienia" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "Przyznane uprawnienia" @@ -163,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.mo index d2240cf1b0129d51f599ad40a833faaca2d05cd6..c301a8a7f642d6c2553ace734b960b1fca847cfb 100644 GIT binary patch delta 44 zcmZqRYT(*%g^AnHP}j&, 2011 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -128,6 +127,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -164,10 +164,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -183,17 +181,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.mo index 1fc6b27739b83c2d9d237ccb88c052eb2f6fe327..1964cf01c3c0692b10a9b8b1433c31d282a81ad2 100644 GIT binary patch literal 1863 zcmZXT%ZnUE9LLMJ@iE3nVthuWE`eQ4&nxC(uN%$o&W4ptT*firDb&pTrnj`GtEuXq z-G~?e06`Dp$%~?*n43aw1_nX!LtxJ`&9@K2E2I|qb#0DKpG2>cMdAG{780>1_C0DmavKYtal9F1HJ`53cd}pAD@7% z?;6PGZh$QJ4ajkP53>GWK-Tjccpb6+1+rgXV3YOT09pP=kmLOWWPknvIgSG`#`cb) zW4UACUEm4uD0m8d7<>`LClor?zYRVPz6nB=cpqfFAAs!d#~{b~ImrHf39|oRgM98g zkmY{`S^rHCpE!s`_UjPHcAf%xy$Rk6J`3`dax4hd+u}U&-ZA`ai|=>V_&xA_u#cRN za$~z3D>r^K{0`X1{f+(MSYUeI*f;izbH;hXa}bZ4Q31d2L~Eck-xc!T@*<~_OK z9g=3~RfO`m6Pt<4heO@hlw{>2RdG@EC>CuR^~gGLNsY*NE>(RJTk}XtLsuTlp|N{r zIy5$~lbE7xM|3!N?q=!o<8nZ};KXHJWC~WSd5!v6usH}W!#AWelx=lYC9<{Ne!0@2 z)YvR&yGRd$)jV=R*MzdN^-?$RNr!x}j@*Z`S#O*U8jYZNQr4T{snbFInR*?90sPdg zcb{D2jBK6^>t~*>qg5^{mjzwif{RsVY$(siIw84XNoUH*=M+z0@cnSQR_&WnwP(-a zXcFZrqM%D^6v{35n@2f0l8dWWy`keJxwxHWX;`c6?CexCHll~L%L;1NIAyi5wGqc0 z&|u_haiOr5W>;1_wWUgXv)$UuPNQ0{teGUkB?sNBDMHU^H>;(w(#f*yZ!7C4TY06s z5uDwVW1~Z|K`ZH-fli`Op6%&u?t3V`t;$xMTNMWz#*SPllhjY$N^@CGhbxPTJSQ7V z%N0D`=w$m!P zbqA%QtS^>Z){%lf4akbwVD=KdzT!=LPfU&*jnqK7!s)s1My4vI*cVUvgyuq;))BdK z_29b1C4=foP(st{DPH&FBQvX*|2dEPjazK1?@)@%0 RH~hl1VA*6LjM6D3^FJr5+%y0H delta 665 zcmX}pKS/{~FqUM@ycO^vNZu{J{yR04O=q8v!UMJO3GxV5yL#fr3e=_Of&B1IR$ zMPB?fRi`3IH^ENg)>#q3#nFP`T6oa`mf z$(Q8%BQ8X$$(Rhb;A8B@B=$GPc}y@4uod5+i*K<5r%>}}u^Sf}?^m$dm}RrZjS6gF z3vQtb?O_@ZPz8=Ki^r(>r}zXfPz(M;eRqpLY5u$BT@{lQJ4AuBJs)0#V<0aI*57>pDQ5*S=ow%wo>zf^J z+HeUyboM)K%?s40a*>Q|^~g%;PzD6|39(vI6nEvTl{2nSOC%}{S#O{z})IMks% zYI^TPwXz*|rtB~0mA!Djq`i@RVKnED1paGVOuX>D;e5f*75u;(9`cCRVpyr>XX0?N z@-?hRagZxTvvYAZ!b%t~MD{T8DN_s==WF5oT#zeQKTecvm;28CaEI)r`^}w, 2016 # Emerson Soares , 2011 # Roberto Rosario, 2012 # Rogerio Falcone , 2015 @@ -11,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:03+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -112,29 +112,30 @@ msgstr "Revogar as permissões" #: views.py:45 msgid "Available groups" -msgstr "" +msgstr "Grupos disponíveis" #: views.py:46 msgid "Role groups" -msgstr "" +msgstr "Grupos de papéis" #: views.py:56 #, python-format msgid "Groups of role: %s" -msgstr "" +msgstr "Grupos do papel: %s" #: views.py:79 msgid "Available permissions" -msgstr "" +msgstr "Permissões disponíveis" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" -msgstr "" +msgstr "Permissões outorgadas" #: views.py:93 #, python-format msgid "Permissions for role: %s" -msgstr "" +msgstr "Permissões para papel: %s" #~ msgid "Permission holder" #~ msgstr "permission holder" @@ -164,10 +165,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -183,17 +182,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.mo index d9f7a52332c818fcf8e6e0ae65c808ace475ac47..4b503e0d49d4c43b97ef1fafad8e6630cd73cc1d 100644 GIT binary patch delta 641 zcmXxgJud`77zgmV+w*egoy1ExS)!FVuW?b}h(wM{6bcI2b>nQZ+}Ycepil@QbQ2#z zr%-4mBt)T*_yDI9oq|Hg|G(CgoB7Sm&CK)69!9TX`=!Rnxj;0bb)a3N#nI9sbckD6 z5AR?#e1YZgHJHD_2Z1pZGw>#9zVs4{XM~993~&9J25ph`RiuSpbXUc?JvMp8w!E=3;(7D$(=vYJXGz z#T@cQd|eGELEz#33pizAVq)8{Y{Rsro^$eEp(s+0G+e1Wd0Q66l(eNQ1A?{btmO)J z>MS%~lQv9gi#fSrN~frvLZ?-UL~s9q-q)WT8dgTQGdkFt7}5JilY{Cwe4@IvrMk4S zne&XCOyb6sg^b$O7Mo@qui!bBp0$dF{HA4Ewp7nriz;br_0z7kx-Q-O13!;rsZ?b0 E7wTwRp#T5? delta 445 zcmX}o&npCB7{Kv&epov@%Q9(E(v+jNcE(E0O}UUFaoVC)S{$e?%4wAp4lWM|e}jws z6D|(+4`45jN=}lL?=vP(^UUXcnt7l1nYk;RdhM6My*5ON93!vDVX|m(Bet=KJDG>* zQlDS}&#(st2k{1Tc#ETWkNW;2`q;^yKVx7_+q|;S2A`-6fAE3K+s5=$KRJJmyXaAW zpbquJ4fOpAq1c7&Xph8|3r26Lnvv+^I^ zqoKoS=y1%G9;Saxhv_5rB$}44J?>3a;wX%xq$)Y* kytLTZYaTS3TS?g3-&k3aOQ$Yh&YEnxWjS`&<=vhA1;{TjqyPW_ 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 f86ec53319..4361fc6aae 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-04-17 09:43+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -43,7 +41,7 @@ msgstr "" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:30 msgid "Edit" @@ -55,7 +53,7 @@ msgstr "Roluri" #: links.py:38 msgid "Members" -msgstr "" +msgstr "Membri" #: links.py:43 msgid "Role permissions" @@ -75,7 +73,7 @@ msgstr "" #: models.py:67 msgid "Label" -msgstr "" +msgstr "Etichetă" #: models.py:73 msgid "Groups" @@ -111,7 +109,7 @@ msgstr "Revocați permisiunile" #: views.py:45 msgid "Available groups" -msgstr "" +msgstr "Grupuri disponibile" #: views.py:46 msgid "Role groups" @@ -127,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -163,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.mo index 74be78a59e8bb8e9711256b7ef62258fcfe59292..b7ca371aea358506787aaf8a852fb71498283751 100644 GIT binary patch literal 2286 zcmaKsOKjXk7{><)0Tv20ykBBkDWMT~*WM&0IB_Cq(kfE7L}97a6LNNEw=Q0LvAszn z^^mj&keX6Zsni3H79=hRDGEeQn`VQMkl;23aYGys2M~`7Cr_Sd|flos2gp;Sh9&j&s1bhs94ZIsXm&ose zk3wDrDevz<%Ht1E13Qs?A2fINjg)4GQls8b++BF+o_ay{n~QuZBT|KD3@agok=T{bbM2n3io$+k#g;w^8>~ z2X*1qEZ?_W$7csTVFrRbVwQWZEjDG^`)o|uA`l6pd!LP$tsr_O@*&T30v5e_+HrIu z%57&+CWoSgxLb)_=)Bu!6OP}gRIHLEoFHwIWrxjaVY7m$O$*OwN6eatUVhyy2{zfP zB(?R^dtPz9tuRw!#(h<=80k1{ii)S#X1k(&x*$66*-Q^TL=okhpR*GuIj@oH z%@igI<6HG=Sv7OObpnh{DbCeVOdw7Mxw>sy&JZshH$7hj#>>Tn%HWnBMXU%<8Fxx< z*>b8nADp&=R{JGxNIs78bX3Sv& z9!7Z{4*GhBGEBZBo8dxuIy@scbq+6O2S{X+FDe}E^jwr7gzD}Jatv09fT9!e52_soJDW#A@O*nx|Nl7JXp<0mGO3*^iGKh%9q17sb24YrblWP^y1Vn@z z1?|*Y?lxY z8D;LW+PHut_!Uj#2#4_)eY{3<&?lV1S2PD1qWKVx;z#sw5|_|nf3eNLY*0b=ZdX4~ z*0+muv>SD%@0i<|GJnog53z{3ggHnz=_9mdBkGHiK~1_UtjI_#%Zg;8pSwIOtnceZ zYiwX8*pp&as=aa)mBXsOv|RmWZKk~0Tz<~=XN&%4U9!i0uaL|8Zr(3?g=vrKEd^06 zx2}R}R0(RKD!OaomQ=M6qd=8IeP*wxOF?y~9_+}XtLpl=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" +"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:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" @@ -39,11 +37,11 @@ msgstr "Отозвать" #: links.py:22 msgid "Create new role" -msgstr "" +msgstr "Создать новую роль" #: links.py:26 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:30 msgid "Edit" @@ -55,15 +53,15 @@ msgstr "Роли" #: links.py:38 msgid "Members" -msgstr "" +msgstr "Участники" #: links.py:43 msgid "Role permissions" -msgstr "" +msgstr "Разрешения роли" #: models.py:18 msgid "Namespace" -msgstr "" +msgstr "Пространство имен" #: models.py:19 msgid "Name" @@ -71,11 +69,11 @@ msgstr "Имя" #: models.py:46 msgid "Permission" -msgstr "" +msgstr "Разрешение" #: models.py:67 msgid "Label" -msgstr "" +msgstr "Надпись" #: models.py:73 msgid "Groups" @@ -83,7 +81,7 @@ msgstr "Группы" #: models.py:90 msgid "Role" -msgstr "" +msgstr "Роль" #: permissions.py:10 msgid "View roles" @@ -111,29 +109,30 @@ msgstr "Отмена разрешений" #: views.py:45 msgid "Available groups" -msgstr "" +msgstr "Доступные группы" #: views.py:46 msgid "Role groups" -msgstr "" +msgstr "Группы роли" #: views.py:56 #, python-format msgid "Groups of role: %s" -msgstr "" +msgstr "Группы роли: %s" #: views.py:79 msgid "Available permissions" -msgstr "" +msgstr "Доступные разрешения" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" -msgstr "" +msgstr "Предоставленные разрешения" #: views.py:93 #, python-format msgid "Permissions for role: %s" -msgstr "" +msgstr "Разрешения роли: %s" #~ msgid "Permission holder" #~ msgstr "permission holder" @@ -163,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -182,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.mo index e66997dfbd92bc6ed738cf1c031e7b572c6d9b64..c5f0349f00e9bc1be799b290bbdd5e4df24930ab 100644 GIT binary patch delta 449 zcmYk0Jxc>Y5QZljqcKXrlzwnnSO`Kck`J%2R3gC(30m05MwhVM<@R!$OJS2*|*%}VXO!RqyaRLnKFs|#{0i#x_q9c$Wugg{kZ|E9jE{B^itrwc0;?|pF)PiX^zZ^JfEVN51%R@2K9u&;X(WOXqK-pDjh5(1pU%ZVron{bMp9cw17(cT z!N1f{M~<~8siS>qk_)$B+Xt0Ht6XuawPd!P+;OUE+) zb+Fd6v EU-XGmO8@`> delta 155 zcmcb{ww@*Qo)F7a1|VPpVi_RT0b*7lwgF-g2moRhAPxlLD~t>bVL+N0h_!(lfLt&D z>4gKo#N5=$W{m#a1}3^j<_d-;R)(gNCosx#8yM>v87deVS{WEm-oe<#?~|C9UYeMm ZYNb$|6Cdn3*^w!F@*1WD7SG&N1^}ZQ8BG8H 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 263f622062..dbb75c4e17 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po @@ -1,28 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:03+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-17 08:59+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:22 models.py:47 models.py:70 permissions.py:7 msgid "Permissions" -msgstr "" +msgstr "Pravice" #: classes.py:63 msgid "Insufficient permissions." @@ -30,11 +28,11 @@ msgstr "" #: links.py:14 msgid "Grant" -msgstr "" +msgstr "Odobri" #: links.py:18 msgid "Revoke" -msgstr "" +msgstr "Prekliči" #: links.py:22 msgid "Create new role" @@ -50,7 +48,7 @@ msgstr "" #: links.py:35 models.py:91 views.py:134 msgid "Roles" -msgstr "" +msgstr "Vloge" #: links.py:38 msgid "Members" @@ -62,7 +60,7 @@ msgstr "" #: models.py:18 msgid "Namespace" -msgstr "" +msgstr "Imenski prostor" #: models.py:19 msgid "Name" @@ -70,15 +68,15 @@ msgstr "Ime" #: models.py:46 msgid "Permission" -msgstr "" +msgstr "Pravice" #: models.py:67 msgid "Label" -msgstr "" +msgstr "Oznaka" #: models.py:73 msgid "Groups" -msgstr "" +msgstr "Skupine" #: models.py:90 msgid "Role" @@ -126,6 +124,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,10 +161,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +178,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.mo index e9869932ce2fd1e6cc9eb0cd356674b8c5d042ff..15f90c971e6e46e6dce914799fd3c1f896894bfb 100644 GIT binary patch delta 47 zcmX@cdW?00BO|w=p{|j!f`O5hso7*7#?6!YnWFf867$ka6Vp?z6v{H=!~7;^FvS4? DL7ff? delta 47 zcmX@cdW?00BO|wgiLQ~kf}x3(q3L8F#?AabiFxUziRr0U3T2t`VSbbUF-A|$WQqj< DPNok1 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 52e17b7fa8..bfb5279281 100644 --- a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -126,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.mo index 860323202b061b5ad794b56554c02afbbd79d8d2..bb23b13241d2198ba35cad7f41870a7420bd4f1e 100644 GIT binary patch delta 47 zcmdnQv58|t3=_AZp{|j!f`O5hsoCUornQq*n4|c867$ka6Vp?z6sj`fo&6@)GH(R{ DM5+#r delta 47 zcmdnQv58|t3=_A3iLQ~kf}x3(q3PswrnUS&iFxUziRr0U3RM~L&VG}HnWHDyF>e6? DNf{1- diff --git a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po index 2dc5f9b642..3d2e04cb1a 100644 --- a/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:03+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:22 models.py:47 models.py:70 permissions.py:7 @@ -126,6 +125,7 @@ msgid "Available permissions" msgstr "" #: views.py:80 +#| msgid "Grant permissions" msgid "Granted permissions" msgstr "" @@ -162,10 +162,8 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" granted to: %(requester)s." #~ msgstr "Permission \"%(permission)s\" granted to: %(requester)s." -#~ msgid "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, already had the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, already had the permission \"%(permission)s\" granted." #~ msgid "" #~ "Are you sure you wish to grant the %(permissions_label)s %(title_suffix)s?" @@ -181,17 +179,13 @@ msgstr "" #~ msgid "Permission \"%(permission)s\" revoked from: %(requester)s." #~ msgstr "Permission \"%(permission)s\" revoked from: %(requester)s." -#~ msgid "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." -#~ msgstr "" -#~ "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgid "%(requester)s, doesn't have the permission \"%(permission)s\" granted." +#~ msgstr "%(requester)s, doesn't have the permission \"%(permission)s\" granted." #~ msgid "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgstr "" -#~ "Are you sure you wish to revoke the %(permissions_label)s " -#~ "%(title_suffix)s?" +#~ "Are you sure you wish to revoke the %(permissions_label)s %(title_suffix)s?" #~ msgid "Users" #~ msgstr "Users" diff --git a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.mo index 9c80818a78f5d5f88acfcc976ff25d76020a2385..41c712e524ad0e4ab4cb9edbb9f371cd8cd34203 100644 GIT binary patch delta 42 ycmZ3?vY2H;JGY^su92~VfsvJ|*~Ce!CwnnQ@%SX>rI#kAr&=i_7ENBv*Z=?&JPoD* delta 42 ycmZ3?vY2H;JGX&}u93Ndp^25D>BLE^d3+M{(n}N5Q>_#dizeGJMo(VCSPuXe5DlFG 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 1f4a348b58..39117fe29c 100644 --- a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:16 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.mo index e1e6d13ace8e0ba0c55ebe9b3deed4c526089f6d..08a83685518b6fa3e4155466fa2ce88d0c047e43 100644 GIT binary patch delta 42 ycmcc2e3^MdJGY^su92~VfsvJ|*~CffCi^l*@%SX>rI#kAr&=i_rB7bQs0#oiPYtjD delta 42 ycmcc2e3^MdJGX&}u93Ndp^25D>BLFvczhD`(n}N5Q>_$|(kI(9Mo(VOr~?2b)D5Qq 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 1807e142c5..700454133b 100644 --- a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.mo index 009b320cd6548e44f793bdf7df7c3e2db77dbad3..a2b29641afe6289d619e3cfdc521a9b335fbaefb 100644 GIT binary patch delta 45 zcmdnRvWsOxJGY^su92~VfsvJ|*~CdFCTB55@%tp^rI#kAr&=i_6~{X{PCm?74ggEE B4-WtU delta 45 zcmdnRvWsOxJGX&}u93Ndp^25D>BLDV__$|isPLeCr2_yPd>s}1^`QQ B4+8)I 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 63a4db3190..8930dea0d3 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 @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:16 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.mo index f8f95d176fb555032dbac51d36f915647d5652fb..5786ff12558c7afd803d16983aadb2bb2c0a38b1 100644 GIT binary patch delta 42 ycmcb>e1UmFJGY^su92~VfsvJ|*~Ce!CwnnQ@%SX>rI#kAr&=kbBu-w;s0#ogzzv-M delta 42 ycmcb>e1UmFJGX&}u93Ndp^25D>BLE^d3+M{(n}N5Q>_$I5+~a*Mo(VCr~?2aTn&@} diff --git a/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po index d78c48c9fd..41c74e859c 100644 --- a/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.mo index ac976cfc25d84d6c5f05c099ee999e1f258c762e..ce3e3382949c7f600112b854a99616fc84812afb 100644 GIT binary patch delta 45 zcmX@ca*SodDQ-hUT_a-!10yR_vx!#^OkT delta 45 zcmX@ca*SodDQ*K3T_bY^LlY}Q(}`CP@cSg@rI#kAr&=kbq{h3rPM*RTJ^4SQI{;zY B5840# 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 ee414e0474..e4faadae74 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 @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.mo index e49bff386e1445d32a32c6b19e6f5dd7ca61bdc3..4233b5c52c2935160b576d2a23ef2e3a47ea1f6a 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|*~ICO0Z`BfMgRZ+ delta 21 ccmeyx^owai54VAdu93Ndp^25D>BQ-e0Z|VJN&o-= 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 4b80d8ef9d..2440018fb8 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: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-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.mo b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.mo index f0bd8d07d93dd792374fc8750f7d5d5a43b53fa5..2812c5cef81898c9b9e08f5d59d97f5f61e7bb2d 100644 GIT binary patch delta 42 ycmZ3(vW8{CDQ-hUT_a-!10yR_vx!$1O>SX~;_*q$OD|1KPqk7=EuMUr(H{USE)IPF delta 42 ycmZ3(vW8{CDQ*K3T_bY^LlY}Q(}`CX@%SX>rI#kAr&=kb7Edl?jGlat(GLJBBo1@{ 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 624d4776ec..070f7a296c 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 # Roberto Rosario, 2015 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.mo index 4262ba457b158cec24f41b5c41717b05850eeba0..db7be773e021fa2986abff806c6e5444e967ba26 100644 GIT binary patch delta 42 ycmeyz{EvCU3T{I~T_a-!10yR_vx%D*O-^Er;_*q$OD|1KPqk7=OPsu$(HQ_aybgK* delta 42 ycmeyz{EvCU3T^`vT_bY^LlY}Q(}|lG@%SX>rI#kAr&=kbB~A`ujGnxQ(Fp)LC=PJ| 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 3ad4dd6c22..946928e0ed 100644 --- a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.mo index 16d442cbb7897550ec832a0ad06efa6840d0f3d9..e50d874bce06ebe7b5654310c77ef807ba261334 100644 GIT binary patch delta 42 ycmX@ba*AcbDQ-hUT_a-!10yR_vx!#^PhQFx#p9EhmtLBfo@%9#Ry6q^qYnT&l@A#J delta 42 ycmX@ba*AcbDQ*K3T_bY^LlY}Q(}`CP^Y|p@rI#kAr&=kb6-}Pb7(Mwvqc;FI-VYD} 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 6242e077b7..641340ed59 100644 --- a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Christophe CHAUVET , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.mo index e363d80d85d00fc9761c7523994de1068ad2aa12..136e76ce92161a72999479cc30be7513ede61780 100644 GIT binary patch delta 42 ycmcc2e3^MdJGY^su92~VfsvJ|*~CffCi^l*@%SX>rI#kAr&=jwlulm8s0#oixedes delta 42 ycmcc2e3^MdJGX&}u93Ndp^25D>BLFvczhD`(n}N5Q>_#-N+;VhMo(VOr~?2cjt#p2 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 30203b7f4f..38c56de033 100644 --- a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.mo index 4172da175cf16ab95ec8bcb40133ab84948490cb..63a22c3d43d905e6dee234b8ef42d42f78666196 100644 GIT binary patch delta 42 ycmX@he3p4aJGY^su92~VfsvJ|*~CffC;Kr*@%SX>rI#kAr&=jwrc7SWs0IKbqz$A1 delta 42 ycmX@he3p4aJGX&}u93Ndp^25D>BLFvd3+M{(n}N5Q>_#-QzknwMo(VBs0sihEDf6g 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 d79d9ca021..8372c7714a 100644 --- a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.mo index fb76601f97bae2c4e36a7d013d8164b947982b29..2dbaa04f26dcdbd1eb96af3248103e9927c1ea17 100644 GIT binary patch delta 40 wcmX@aa)@QZDQ-hUT_a-!10yR_vx!&tOrI#kAr&=jwmQ0?+7(MwHqXz&q+Ya*p 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 30c3656596..cd69ac28a6 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.mo index cb19d5c1be248d53f7c2aef5ae1d56c04ed0ee41..e84bded8af818c329269e72c65a9720c3594f7d4 100644 GIT binary patch delta 317 zcmYL@O-chX0EIKQf^_50Qe0#&k<4@~HWX247wVux+f_j{)G$Od2~5(igr1=kuj0yE zxOd|byns(f>4T3)K9cZ08}H4<$6oV=APsN;Qm_d!@RNJ63nbVA9=t__Jfn9&ccb=~ zXlR1^{R>s+JinlQH=UKr1{t)oWH=a&DKyC|x9nXl;+Q3E$`f(iVLau$mEW+Tnrn~C ztS^HSG~scF#hfK4ly^niKIBL%lRmI6%oPkx ztPD+c4NMFSxB~ojgHp>fi!<}{bX^ilQmqt>3_x-gx<&>HhL%=_78C!9OSpyl_$c@} x`noFExcWMJ`ZzecxCFTd2T!(VOyT!Q%u6p#Ob2Ss%Zc~%nY@TGdNMDQ4gjWJBpm<% 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 8e9b058b58..7325b55273 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 @@ -1,27 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2015-08-20 19:18+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-10-28 09:43+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 msgid "REST API" -msgstr "" +msgstr "REST API" #: links.py:12 msgid "API Documentation" -msgstr "" +msgstr "API-documentatie" diff --git a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.mo index f262c0b42b15dbbed7e6aa4e9a11f4ba62fa6e5f..2365243908d05106cbad6996294ab427be71576e 100644 GIT binary patch delta 42 ycmZ3*vWjKG3T{I~T_a-!10yR_vx%D*PEKTu;_*q$OD|1KPqk7g$eFy0u>b%cmktvE delta 42 ycmZ3*vWjKG3T^`vT_bY^LlY}Q(}|lG^7tg?rI#kAr&=i#, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:16 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.mo index 90c6fe4c8468d40a0cd1e2e2d829ae49eb5040b2..9e9d7641f6ffc2b5cae062a44b96e727eef59d9f 100644 GIT binary patch delta 41 xcmeBR>0p_#g4@tg*T`7Gz{twfY~tqilk*v)xP21y(n}N5Q>_#VCLd>X1ON#N4O{>K delta 42 ycmeBR>0p_#g4@7E*T`JK(8S8nbmHdqJU)qe>7|M3sa6UFC6f~wqbHwav\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.mo index 066187bfffc4a05fb995990fb822d9db89d3027c..17620a6438eb6729e7aa3fc0f4701c02418adebd 100644 GIT binary patch delta 323 zcmZo-xx!L^Pl#nI0}wC+u?!HK05K~N`v5TrBml7>5GMjL2M`wn@eW1?h8iF(3dE*N z5OHrH4HRYoQed-y6a+X1cq+K$Czs}?=9MItWaj5F1i1!>C;){S0*dk{#(LKq8tNJu zD;OAAnVRVum>3vv1^DX*rIuwD0~PDKB$lLFDHs_Tn&|@78JH*-T3VT!Y8wCnmrr7G ziEcxq3-Oc0jFp>7|M3 vsk$MllX)4#Czmir@x#Qd6bee>oq{HxWz>;}yZrF-!;AA3QWC)qhx-5kwtP** delta 197 zcmcb@(!>&QPl#nI0}wC)u?!IF05K~N+W;{L1OPDy5C;PBJVpkFC@B9YkPSp&0MZKs z6N@5@4NP>6%oPkxtPD+c4NMFSxB~ojgHp>fi!<}{bX^ilQmqt>3=GY54UBb-3>AzF ztqhDN{uSpB%1=ryD#=#}$}dhV%FLf^%b3jXlbDxYnwSpMQBV@^6f}80WAtP$CT-3j M*WeHZ#{f?T07`%+`v3p{ 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 58f9cf04a5..96ec65c16a 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 @@ -1,22 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Aline Freitas , 2016 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-04 19:55+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:16 links.py:8 @@ -25,4 +25,4 @@ msgstr "REST API" #: links.py:12 msgid "API Documentation" -msgstr "" +msgstr "Documentação da API" diff --git a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.mo index 22ff3b03856a1c89831e8119a294f81ea929404a..b7e889c94a04d6079b8758e20418c3cf352a449b 100644 GIT binary patch delta 45 zcmeBX>1LVG&TVL@Yh7|M3sa6U_`SC&ileaR40RTC- B4v+u< delta 45 zcmeBX>1LVG&TU|#Yh\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:16 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.mo index c5a451eea653a762252fae7a597fdcbc576d5944..5ffeeb884c8844b3feb92ec2bb8b4f76a060a161 100644 GIT binary patch delta 283 zcmcc3vX!;|o)F7a1|VPtVi_Pd0b*7l_5orLNC09%AWj5g4j?WDVj(65h8iFZQr{0` zgT&VWX+|Ioq`+nYDF|>3@KkWgPcF?(%_~VP$;{7V2yzV$Q2+`v1Qg{@wDArxG}JXR zRxmKKGBwjRFflOT3h>trN-fJQ1}fHdNi0dVQZOxI1+n=Wj)*mhyZ#eT4Z;4T9Iz(Yu5 delta 170 zcmdnWdYi@Ko)F7a1|VPrVi_P-0b*t#)&XJ=umEC3CI$veAPrIj0~4$LjSWn6jm#Ac zO{@$}bq!1m47dXPb%RpNGK(|w^K@MjOH!>Aj0`|>7P>|T3WkMbgrT*w$b`6lBw0R2oOwEzGB 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 15f8c8224f..1b75decbe2 100644 --- a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po @@ -1,29 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2015-08-20 19:18+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-07-19 20:05+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:16 links.py:8 msgid "REST API" -msgstr "" +msgstr "REST API" #: links.py:12 msgid "API Documentation" -msgstr "" +msgstr "Документация API" diff --git a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.mo index f7fb3a988c18d2ebc3e2e0146c3eeffc1eb90851..46cbaabbf969b7a0d3ec3e01790f3a7f7381e86d 100644 GIT binary patch delta 45 zcmbQiGJ|D8JGY^su92~VfsvJ|*~CeECdV;G@%tp^rI#kAr&=i#=fnqlPTtO#2mn5L B4zvIO delta 45 zcmbQiGJ|D8JGX&}u93Ndp^25D>BLEU__$=bK-+NC;Ku+Pu{_p002LP B4yXVC 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 7323427dc3..8b4263f7c0 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 @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:16 links.py:8 msgid "REST API" diff --git a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.mo index 100b6b84bd45432bfd3e64425868ac28318d6992..b4343e627b4300beec71d4774254fddd3bba58ae 100644 GIT binary patch delta 45 zcmcb|e2;lTJGY^su92~VfsvJ|*~CeEC&x2J@%tp^rI#kAr&=kLWyXj3P2Rz%1^`xB B4-NnT delta 45 zcmcb|e2;lTJGX&}u93Ndp^25D>BLEU`F#@e(n}N5Q>_%rGULPiCi^i)Pu|I>3IJDh B4*~!H 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 b50171a7ae..8f5c85b32b 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 @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.mo index f72c87a5ecad9c3f3d0bfbbab69fb336eec9b846..f590993e9f4d8f80cf617ca6359d029a2667a09d 100644 GIT binary patch delta 45 zcmcb?e1myHJGY^su92~VfsvJ|*~CfPCr2_y@%tp^rI#kAr&=jgWyCxCP2R+)1^`mQ B4&VR) delta 45 zcmcb?e1myHJGX&}u93Ndp^25D>BLFf`F#@e(n}N5Q>_%LGUA>6CVMbOPu|R^3IJ35 B4%7eu diff --git a/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po index f12ebc30a4..1d781e7003 100644 --- a/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-20 19:18+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:16 links.py:8 diff --git a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.mo index ad40c3d9def394448f326e00f64ee84a112beb73..548116b58b0dcc713df91d582decdd608a24cd21 100644 GIT binary patch delta 42 ycmcb^a))KYE^b3ZT_a-!10yR_vx!F+PA+DQ;_*q$OD|1KPqk7=ESh|VaRLA}RSwnw delta 42 ycmcb^a))KYE^Y%8T_bY^LlY}Q(}_nH^7tg?rI#kAr&=i_7EMlNjGla!u^#|66b{V* 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 0893552e96..e88d7ea2cb 100644 --- a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.mo index ac4d04c957614872f9a26e451ed74d08f1c755d9..cc892e5fcab0f6f444ec6a2b7468d2589058c4e9 100644 GIT binary patch delta 42 ycmbQjGKFQrE^b3ZT_a-!10yR_vx!HSOfF-L;_*q$OD|1KPqk7=N}qh5(G>t5P!0M3 delta 42 ycmbQjGKFQrE^Y%8T_bY^LlY}Q(}_oy@c1O=rI#kAr&=i_rBBXajGlaf(FFh=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"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:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.mo index ec6de71e62d3255456b762536969a080d1dcb52e..ba6d0b7dc7d81613c1d6be5a4bfef4317116ec83 100644 GIT binary patch delta 42 ycmaFC{DOJH5^h67T_a-!10yR_vx(~$PL5@a;_*q$OD|1KPqk7=Nu0cm(Fg!B8V)D` delta 42 ycmaFC{DOJH5^e(%T_bY^LlY}Q(~0XB^7tg?rI#kAr&=kbBu@5cjGnxm(GUPJzYZS& diff --git a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po index 71e5a0931c..ebae68cbfa 100644 --- a/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/da/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.mo index 9c44a1ef13f754f4922ac101291a62310974d0ce..9fc6ce3de9330a79d9afbefd9718190cb1b65e45 100644 GIT binary patch delta 47 zcmbQoF^^*d8xyyop{|j!f`O5hso7*frUR27GDY$GB<7`;CZ?xaDWs&vySPraVtxVu DH*F46 delta 47 zcmbQoF^^*d8xyyIiLQ~kf}x3(q3L8nrUU#wiFxUziRr0U3Mr}aF0PX=Fhx(cW_}C+ DFPIKT 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 441fb5ab4d..1c3d4ab687 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mathias Behrle , 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.mo index ccdd738a5c3160a90604d68217b3c043a4689aac..8dde99e13645246273c37929e7afdcac402d118e 100644 GIT binary patch delta 22 dcmX@fe3E%WJGY^su92~VfsvJ|*~Urci~vsg22lV2 delta 22 dcmX@fe3E%WJGX&}u93Ndp^25D>BdRsi~vtO22}t6 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 0f4319dce4..df4424f65f 100644 --- a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/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: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2012-12-12 06:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.mo index a59d8a9e3abf4685790400f056611cd9bdd55802..4f7ee202de84b847d4e6d8b8ac758519f5e06cd2 100644 GIT binary patch delta 24 fcmeyx{)>GB8xyyop{|j!f`O5hso7>hrk9KWS-}R8 delta 24 fcmeyx{)>GB8xyyIiLQ~kf}x3(q3LEprk9KWS_lS} 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 b3399973e5..9a222e2fe9 100644 --- a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Lory977 , 2015 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-05-09 01:32+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.mo index 8d5a84685ddaf287391ee28f5368506434ef4b7c..e871465a86e09fdc3950f4712b187c8c3240b66d 100644 GIT binary patch delta 42 ycmZ3>vX*7SWo|=5T_a-!10yR_vx)Z>P3~ok;_*q$OD|1KPqk7=OPu_S(H#IT4-Sd| delta 42 ycmZ3>vX*7SWo`o#T_bY^LlY}Q(~0*M@%SX>rI#kAr&=kbB~GqqjGp|Q(G37BOb&qn 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 5ae286fac5..176d446380 100644 --- a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.mo index 70e387d928e7a92d51d13081df31d6e3e0100c61..db1c4af7f5dbbd35bd2917b746695ef0d7e679c5 100644 GIT binary patch delta 45 zcmX@kahziV8xyyop{|j!f`O5hso7*frX!OdF-7tCB<7`;CZ?xaDWnx`wr1vG1OO?` B4Hy6b delta 45 zcmX@kahziV8xyyIiLQ~kf}x3(q3L8nrXxH)iFxUziRr0U3TZ`?uP{Y#wqfRG1OOxJ B4G#bS 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 b2f579511c..4c31ff39f7 100644 --- a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.mo index 38ff854a65e1ea19dadce91d10cb6e7bf9d34e22..7124e333dc3c435b7c986f2c015ff4be16a995b7 100644 GIT binary patch delta 42 ycmX@fe3E%WJGY^su92~VfsvJ|*~CdpCOb1m@%SX>rI#kAr&=jwlun+*s0#od!wr%E delta 42 ycmX@fe3E%WJGX&}u93Ndp^25D>BLD(czhD`(n}N5Q>_#-N++8#Mo*s0r~?2Y8V!j6 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 e1ed079f4d..f361f4b040 100644 --- a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.mo index 8d737c3c500a20971da7555ffbd7d4f98b578ea7..2b4b4cee56dddc61eebd5a6fd6175742e7c29137 100644 GIT binary patch delta 42 ycmX@ie3*GcJGY^su92~VfsvJ|*~CdpC%Z64@%SX>rI#kAr&=jwrc9p8s0IKWt_^Yk delta 42 ycmX@ie3*GcJGX&}u93Ndp^25D>BLD(d3+M{(n}N5Q>_#-Qzn}+Mo*r{s0sicxD9Cl 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 0159d3529d..18ae6163e3 100644 --- a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2015-08-27 05:24+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.mo index b893bd53f346001e847452cf297eb221afbe7005..70b395ba5c170dd4ea45af294a9d3e0dd7ace334 100644 GIT binary patch literal 1086 zcmZ9K&2AGh5XTJ^3d@H?g%C&_rUy_faCVcHs@)QV=!X=El&T56^kg>f)@avW*-q0U z#5-`{3?~kp5#l|#BE+NcchWX(N1FY4?3wX+cK%LHd}fdv&(byv76vD zI044sJ#hYLzYR{o-T|+I8oUn>}p zp+mVIzU!v1d!#f~!tb#SQOe=RRU(rqJ#_GG%+hqS4Ja-F3b=_6s-eO3T-DW_tLY zDJ{NL{-oHHU~CqBD+<1DZ0SN33hjKAJ;X7F0>J!#cw@ zOeu+VD)C+!>PdwuD%J5kY4W2OHY`5R;iJmRI3L`#Iv;oTuyxw=v=J&O3}F_}U&_w7 YDKxAoRF1BxFo4El0%cE~y(UcIe~)4z3jhEB delta 240 zcmXYqy$ZrG5P;8GMf@3b7Rj!GwpN7r1VRxJadGj~D3#hk8aKhw$tn0czJP;o;Db1M z6+igMcQ@o7m8*Msx7<4rMY2tXWQmN(oE7PkNap(;c`E=U|M^2*rUnOq@(1OQ{7;zR zQNjX~lZ2^O2e~nPyyXk2vsk6VJ`1Co7xG}p{80D<+jKf!p9ek*eBlLMkElkN89vvT vW(gXl1)Hh0)JD;pp^lY3JM(&k>HdU!DOham%URlCvDcWWqh$GYr6qg;Sf?@z 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 8c0c8fd206..0f9e090c04 100644 --- a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po @@ -1,31 +1,31 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-09-24 09:38+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" -msgstr "" +msgstr "Impostazioni intelligenti" #: apps.py:26 msgid "Setting count" -msgstr "" +msgstr "Conteggio impostazioni" #: apps.py:30 msgid "Name" @@ -37,33 +37,33 @@ msgstr "Valore" #: apps.py:37 msgid "Found in path" -msgstr "" +msgstr "Trovato nel percorso" #: apps.py:40 msgid "n/a" -msgstr "" +msgstr "n/a" #: links.py:11 links.py:14 msgid "Settings" -msgstr "" +msgstr "Impostazioni" #: permissions.py:10 msgid "View settings" -msgstr "" +msgstr "Vedi impostazioni" #: views.py:15 msgid "Setting namespaces" -msgstr "" +msgstr "Spazio dei nomi impostazioni" #: views.py:29 #, python-format msgid "Settings in namespace: %s" -msgstr "" +msgstr "Impostazioni nello spazio dei nomi: %s" #: views.py:37 #, python-format msgid "Namespace: %s, not found" -msgstr "" +msgstr "Spazio dei nomi: %s, non trovato" #~ msgid "Default" #~ msgstr "default" diff --git a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.mo index 6080cefbf3257ea8bb118299bdfecc606e33261b..709f33def45ad51059aed4be027ef9e4f0206320 100644 GIT binary patch delta 466 zcmY+9y-UMD7{;%*RNfOh#)V`5z}5SB}wbp&B>({{|+ZX z!Bs?Y6*ng*-JApwe9~0Z2Y&b5J@?+n`=t_&C=0@M-uHJj+;zy$ynQIL`Giiyw+V6bnTx z-Jc}`$`Wn(EoF08@g_w_tW2I@mWU!(IU%z=3L+lm8{{G06reqGeM2U|JA z(98nY&Emph_k6Z&=$g624ZUa<=5%PRL}8>=0#c!*$PbEqy)C3$SKK0!c(1{iMUsSr zVAb)+mGd> F3;^=7CszOf 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 e88906ee50..4493fc2ae5 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 @@ -1,27 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-10-28 10:23+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" -msgstr "" +msgstr "Slimme instellingen" #: apps.py:26 msgid "Setting count" @@ -33,11 +33,11 @@ msgstr "Naam" #: apps.py:34 msgid "Value" -msgstr "" +msgstr "Waarde" #: apps.py:37 msgid "Found in path" -msgstr "" +msgstr "Gevonden in pad" #: apps.py:40 msgid "n/a" @@ -45,11 +45,11 @@ msgstr "" #: links.py:11 links.py:14 msgid "Settings" -msgstr "" +msgstr "Instellingen" #: permissions.py:10 msgid "View settings" -msgstr "" +msgstr "Bekijk instellingen" #: views.py:15 msgid "Setting namespaces" diff --git a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.mo index 2606ebe331e120d38224c3ec378d4b1302cbfc20..7f631eb02d6f559fbf62a2ea2faf6bf56c247ae2 100644 GIT binary patch delta 150 zcmey$@tI>nP3%)f28JC#EXu&ZFprsmffYz^0n#c!dKZuu0Mhq?v^0?Z0HnEqG!F{{ zgCdX?2h!p|+7d`}0_i{?EexcifizGlL;l8_x{Tb0hPp<^3I;}2re>1`nVgtQQnM#V dFjY@}z!b&flbDxYnwXwyrBINw*^=3Y5dg738WsQm delta 152 zcmey&@s(pjP3&_<28JC#EXu&Zuz;C?ffYz^1JWu$dJm8m0MZYEv^0?Z1f;ouG#?8C zgCdZY1k&O_+8Ri60_k8NEexb%fizGlL*d4ox{TZgCb~xE3Wg?DhNhDRnVeXYGgFf@ fCWkRq^Y|p@rI#kAr&=i#f;*O 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 9d7fa084db..e18088ef25 100644 --- a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po @@ -1,28 +1,26 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic , 2012 # mic , 2012 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.mo index bfdb57947cd0984aee3b905857f51a8ae47ee418..3910ca596e81e50cea02b9cc6ae963d586278cbe 100644 GIT binary patch delta 41 xcmeBR>0p_#i`&pp*T`7Gz{twfY~s_#VCZA`t1ON>54SoOs delta 42 ycmeBR>0p_#i`&3N*T`JK(8S8nbmGyaJU)qe>7|M3sa6UFC6hB5qbFZvGzS10{0-^= 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 ab582cee78..50dce019e6 100644 --- a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.mo index a21867adcdbc47ff4db6a037bfe211072ed4fdcb..b9ca7fb0ed6cb1a38a1458a47b819161f984c884 100644 GIT binary patch literal 1065 zcmZ9K&2AGh5XTLauPq?8Z~zG*bEwn`oZW;{wOd-zk3_0OO4Np4I3PE1Hm-K<#rBdG zapS_319v1O`T`&!aqJ850Kj8#=I%Rr> zfbYQT;4ydu{0{mWe}F#!uc7}B==CRY*vC(SaFH1h^5inikFx{xHT?1d%-8GBUWEBG zegrUIhaZ!Es_8?^1 zc0{g?V|AOzHd`+e%bGf-LE~wYZ5Y8F;@Kv5xIrZskknM<9 z((C>g7tPc1QXDPai!g#G+&b1YT-lU6ZDP8XN+oE`2($U#GwoGluNZtTU~DO=qt~fHMTg8 z^GQ3xu&Qe5HhyhP7x$$b)gIG+uAq??hNrBiO=e@N^8VJYRF>&rxiYKhDlN|~2c&u^ ztrKV(+Txj1T}`$%dTIkdBhg0kVNacW(o`U+!oAy^_`>m48Ep&74+<#Q@sZQcP0^7` to*bWiMa0@55*>zQr}Rf3B%ULc37!PeXf1~S0_q>jNaF*lVVIJKlCGcUcEfi)~Kr!;l)c1C}0 z0~1{%a|J^aD?`)Cf=sf82FAKZh6+Z8Rt84e20*~&lUQ7$8&Z^*SDcerl3!${5R{*k zT2zt`q>B@aGV>=_G9~l-B<7`;CZ?xaDHN2%I|WU?%@jS^jagg5FCS>FOKMtXUgqKD PhqtB{GXQPQFJb@y9mqBL 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 6f42c86e57..51a2e080a9 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 @@ -1,33 +1,33 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Aline Freitas , 2016 # Emerson Soares , 2011 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:02+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-04 19:09+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:18 permissions.py:7 msgid "Smart settings" -msgstr "" +msgstr "Ajustes inteligentes" #: apps.py:26 msgid "Setting count" -msgstr "" +msgstr "Contagem de ajustes" #: apps.py:30 msgid "Name" @@ -39,11 +39,11 @@ msgstr "Valor" #: apps.py:37 msgid "Found in path" -msgstr "" +msgstr "Existe no caminho" #: apps.py:40 msgid "n/a" -msgstr "" +msgstr "n/a" #: links.py:11 links.py:14 msgid "Settings" @@ -51,21 +51,21 @@ msgstr "Definições" #: permissions.py:10 msgid "View settings" -msgstr "" +msgstr "Ver configurações" #: views.py:15 msgid "Setting namespaces" -msgstr "" +msgstr "Categoria de ajustes" #: views.py:29 #, python-format msgid "Settings in namespace: %s" -msgstr "" +msgstr "Ajustes na categoria: %s" #: views.py:37 #, python-format msgid "Namespace: %s, not found" -msgstr "" +msgstr "Categoria: %s, não encontrada" #~ msgid "Default" #~ msgstr "default" diff --git a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.mo index af60aa3c287687f3c9f62353a6d93193242d031a..f3b1eacf33d640e3cedf6352471c484313ac1b18 100644 GIT binary patch delta 45 zcmX@ea*$=hE^b3ZT_a-!10yR_vx!GHOm1b2;`d3+OD|1KPqk7g%8w87pL~xo830_W B54QjS delta 45 zcmX@ea*$=hE^Y%8T_bY^LlY}Q(}_nn@cSg@rI#kAr&=i#<;Ms4PcC7Mo_wD%2>@GR B532wG 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 48aef04bef..36a97d72ee 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 @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.mo index 4422beb58bcc9ef1fdde041524493f8554d0238c..8fd731350734b7a6d153294dbd1ab8102b1cbcfd 100644 GIT binary patch literal 1335 zcmaiy&1(}u7{^<}u7A z%tM&pFwLM_2-yz~g4;n0JPc;L=Xr1d`>Wt?P=ZIm26zBm26uq3K%?^-+y<_I16v7c zf=99cg2SEQ56}gFf=O@)MYG^EXzJVpbKn#3IQSJj2>t>G!EGpJ{3k(3lRcPbpj13e zpJtd^#;@_V3)6TqBY_F2c(&A($46ci!Vi!wn zUWAb!NSEgMEiUQgh5TG%R@8z}v3ykaOYB^|9I-;+(!|W=0y`fHt`N^IaD@&swll&U zhh>JTopDc(Fgt782xPP3hHrE?$Ju9?a~3JCZJ)F;5|?%1&jLGY?eXX{bq!{5-NQZ?7I8jVI;nM{8{+)NjPsuczi5B(sts-_VpO4Z1! zbVaPNZlx0Wi}}fZzfRgtoDZZD5*}{V(2No{l~t>7U*>3Wk%xFj?@D2cjrQYA#RU@OWCbo(DWxd|{LnD2a;n$}DoAYyu^VX0*-#jW>};lzs<7#Ug_7-<^-0hdo=afxn7QDR=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" +"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:18 permissions.py:7 msgid "Smart settings" -msgstr "" +msgstr "Гибкие настройки" #: apps.py:26 msgid "Setting count" -msgstr "" +msgstr "Количество настроек" #: apps.py:30 msgid "Name" @@ -39,33 +37,33 @@ msgstr "Значение" #: apps.py:37 msgid "Found in path" -msgstr "" +msgstr "Найдено в пути" #: apps.py:40 msgid "n/a" -msgstr "" +msgstr "не задано" #: links.py:11 links.py:14 msgid "Settings" -msgstr "" +msgstr "Настройки" #: permissions.py:10 msgid "View settings" -msgstr "" +msgstr "Просмотр настроек" #: views.py:15 msgid "Setting namespaces" -msgstr "" +msgstr "Пространство имён параметра" #: views.py:29 #, python-format msgid "Settings in namespace: %s" -msgstr "" +msgstr "Параметры в пространстве имён: %s" #: views.py:37 #, python-format msgid "Namespace: %s, not found" -msgstr "" +msgstr "Пространство имён: %s, не найдено" #~ msgid "Default" #~ msgstr "default" diff --git a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.mo index 5d950dc9577f0172e37229bfdf4eec3f26db3048..50e863802e78efb046ba85bd6c2143e352d74d55 100644 GIT binary patch delta 45 zcmZ3_vYuta5^h67T_a-!10yR_vx)0BO)g}N;`d3+OD|1KPqk7g&WR89oP3Hg6#!1t B4?F+> delta 45 zcmZ3_vYuta5^e(%T_bY^LlY}Q(~0Xh@%tp^rI#kAr&=i#=fnqlPEKHqo_v}y1prR2 B4=?}# 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 8d38dfc747..755c80bf6d 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 @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:18 permissions.py:7 msgid "Smart settings" diff --git a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.mo index 473ec9d99079840c13a00ecadfcd3f946c650de1..f5c06ef6e385bb97f3b84af95c2de8301ed06068 100644 GIT binary patch delta 45 zcmbQvGM#0@E^b3ZT_a-!10yR_vx!GHPwrrh;`d3+OD|1KPqk7g%Zv~6oBWW`3;<58 B4?q9_ delta 45 zcmbQvGM#0@E^Y%8T_bY^LlY}Q(}_nn^ZO*`rI#kAr&=kLWyXj3O)h7Qp8SZ>6aY;) B4>SM( 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 772f19af0e..ae3860801d 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 @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.mo index 054b0f595afed1f78233393f49decbf3cc209d7b..e669f661ebffd14784295307fa46e7fb88c7c658 100644 GIT binary patch delta 45 zcmeBS>0z0$i`&pp*T`7Gz{twfY~s_%LGUA>6Cf{Z>1OQ1` B4+8)I delta 45 zcmeBS>0z0$i`&3N*T`JK(8S8nbmGyq{62|!>7|M3sa6VA8S&13lM5N6C*NT-002k> B4)*{6 diff --git a/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po index b1cf4bc491..de302b6284 100644 --- a/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/zh_CN/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:02+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:18 permissions.py:7 diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.mo index a39b66cba22019d41f0c7f4eb1497b4148212c02..f3dbbafa42dfc19fe8edde0b580ff0f39721aad8 100644 GIT binary patch delta 45 zcmbO)GGAl^D=W95p{|j!f`O5hso7)!)`gSzu}1OuB<7`;CZ?xaDI^wc7H8vN0RS2W B40!+m delta 45 zcmbO)GGAl^D=W8wiLQ~kf}x3(q3L7+)`dJiiFxUziRr0U3W-INH?T%;mSAIN0RR=e B3~&Gd diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index 9943dae4a9..41c790b791 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,23 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -306,6 +305,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,6 +408,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -422,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -449,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -464,6 +467,7 @@ msgstr "انشاء مصدر جديد من النوع: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -582,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.mo index 4fb17d13499faa431774d2594d6e8de81005bfa5..6ebd27275660b4ed34a1f455dd412eda74dd927f 100644 GIT binary patch delta 45 zcmZ3?vzTYYbS7>?LtP_d1p^~1Q?tp7n3hZqW{%?VNz6+xO-xU>@t B4jKRe delta 45 zcmZ3?vzTYYbS7>C6I~;71w#`nL(|ENn3nMPB<7`;CZ?xaDI}#&c4dy>`` B4iNwV diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index 1e6f68fe90..c5e0b1135e 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -305,6 +305,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -407,6 +408,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -421,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -448,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -463,6 +467,7 @@ msgstr "" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -581,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.mo index 04f7162d5d88f3d20ca9901e365bab566c9095ec..3d7419f22057a1e21cf5c671ccda4f0a2d97a449 100644 GIT binary patch delta 48 zcmX>ubX;fyD=W95p{|j!f`O5hso7)!)_s%ju}1OxB<7`;CZ?xaDI^ugJ2`GPXA@us E09W%45C8xG delta 48 zcmX>ubX;fyD=W8wiLQ~kf}x3(q3L7+)_wdwiFxUziRr0U3Q5KBPL7k$vPN&VVB=>7 E08lCp1ONa4 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 63e8ab3a1a..0230eb46f0 100644 --- a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,23 +9,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -306,6 +305,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,6 +408,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -422,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -449,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -464,6 +467,7 @@ msgstr "Kreiraj novi tip izvora: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -582,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/da/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/da/LC_MESSAGES/django.mo index ce0686338d510a724cf08fd01ae3f860ac763023..f73fd7ff4b2bc29b4508700dce8351f14ae05909 100644 GIT binary patch delta 45 zcmaDN@I+w42NrHaLtP_d1p^~1Q?tpxSr$%S$r{DulbDxYnwXwyrI3=inTail2>@y( B4(|W} delta 45 zcmaDN@I+w42NrGv6I~;71w#`nL(|E>Sr+p6B<7`;CZ?xaDWoJ$p3NG)nVBt-2>@ob B4(0#= diff --git a/mayan/apps/sources/locale/da/LC_MESSAGES/django.po b/mayan/apps/sources/locale/da/LC_MESSAGES/django.po index f7eda4b54a..681b2a1908 100644 --- a/mayan/apps/sources/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -305,6 +305,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -407,6 +408,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -421,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -448,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -463,6 +467,7 @@ msgstr "Dan en ny kilde af typen: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -581,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo index 00408e1ca523bedcc4d25f8bf5c8d8f1dcc55458..b148fe64b4dd22b86926684be7018cac4e36b6c1 100644 GIT binary patch literal 9553 zcmcJTdyHJyUB^!#DT&)Akd!_gnw*-ru@leit{uD1I<~WG@5XMt_9kB2B~6>&nK?Ui zvorTj?!DvjZUsU`pzx9qQWOf2T8arED*kAN1tO|IONBs1LaLBJB2@vQqz@!i5hNOc z_F)xC9euy8Q=WjFS8z%BVYjD0)7@0>6gLxf`0(s4gLlAe(;}* z`J3Ku3|pAnK&`(E6y3YQyTBdbd%y#r_CF0C1lyqacnRDOei79AZ-74x{ulTXc>6ny zc_;Y$pw|B}cr*An;E#fT3*G^K3*^td$&c3G%8&SYH+V024=DbRfa2#VP;?SdbjBcC znqLMbzfXhvz|VtP_jRxd{tL*_&AV>T*WC+>@4cYpxCrVzXF&1wv!KrN0w}q@3~Hax zgWJJB0wuq%g4*X*P<;PWf!_or|L=f*2EHAlqVw0F&ihsHDEM{oG0?J^==H#7!35+} z^J+2vZBYFG2Pl4T`jLF!ZJ^fO0dhoh4~U7GJzy7{23z2-fwI3hLFxIu2uu9l3+lW3 zLGiU8l$_^5(R~VpMH7M_0N26$z~2CMzCQ(F$^1Py1%4BhUbZ9LXTWJt=lT^;`~5m7 zd3_H282CG&=-q;m>3k1>^Wc8)e((~g`OkuoHeUvH{=Wn70sj#c-`Z5?cqgd&yFu-H zAJ_n!U=w^A+zb99sP$h0|L`Vbz5>SdKgHoCr|%Sa2Zyxu_kcUWC2$v*g3{+ppycy8 zP<(#@)c$XP+W)^nL~d?|A_)aP7xby9+-kU=lgLY@%bPqIUfS`{UV46O&ip@OQ7`rbD;Qt0ek@b z47eNoD^PO(cTnfQ3nJS0eW2*hfNW_V0Urb}fI8pLfQP{6i~gU3(&t}-n1J~QQ2YHG zxBz|^)Hxm{Xi0ugfTG_9rSAxY1@lQz>s~D8e;1UUeGwGBKLJsJ`7-#M;Ma=zpXLxc z=kwqh@I~-E_!_AFju3o42`+=8{}oX5UIlfY*Ffp-+eQBkQ1bgOD7v@W+z;Oaiq75O z2KXYV^WKRw$qzpWir)sP@%^CAcM_Cb&x4{D75J0jZu-9j&VW}y3%*|9Z99y4i2eg0 zreU4|BXAuQ->-w(?_WX1i8sI&_@Ce-;L|^zpYzk8?CQ6``@q*g?fVWovcm(Q&c6i8 zPtSwm|ECK4RZ#Kr`~ftG{uecG}*PD9!<8> zR;PGmD@SN^w9_=5?HtY02r)i}0w&N8&&OyX?IW~VnsnBuN%!^VDLRt>?X*wOa1Z|s z`IR3%OOyOjqtAaggVL*Xt>;nN2lc{pn6^k;rODQ%zhzpN_B8DvO)=p~+Hsof>_fDV z)5@pA3o7$AB)h?_yuN<`yoDy;M8)O+O^F$0PUl+hiS)Xvfb-F3k-gk zh8g;2zQA4J$>M!`ffv9f+E37AbNgv#$6^u>cG!W-f=-YHHd`M$yJP3Ba^M*a>`r&s zFtt&f*^5Cx?AX;fv02aAPTU?1T$K6GX6?>h?qZ@X&QDT8*F9K zW^px;+R?Bd2OY<8kOAl6h&i>UIo5YUVvfZFoz5IfT#&gsv0~R^LMJRwUXV!3k2IIB zw()8yr*gJqj*D;>4xBmeR)bML1N$yhS73wH%q0b<<=8b_6>BT;g?*Qni>0Pj1`0}? zu@|JaUbQM>KZbamA4uUEoo)<4V{N3rQqbG+2`j-9zVwEA&-t(0CaODRtWzUY!P zjH47{X)oKwnwE)!Fmwch2u+S z_trEghyJaRs#`!NEGR07;%KdB^Ik{kwE&n$X(v-!JRp>%$4uI7XbyFKsuBQG(8Hw-*w z#3wDa;|PVzPFn#M5p|m8M4V>EJN*);ZN-;zvF3{8vv$w5*L)Zmz+}*Mm`W{1oQ$9r zw6pM{D zvmlI8FY7I;u_Aygpl{elJHsGMSeF~PkAS&@NK05lR_@b@$59dcCR?UWdpgeCtX)wg zoQ(T`k<-kBNg}tZPSG@{9qQ+I5(Kw&>~kYGk{zOfD&&f1e>%D1MQp_TW7><8tiLXj z6JljF`Tpo!!uc{cG^b;XV`5cT$50N5t@*InajRhjzcQFOaP~JGkfBv!~2iVnJKM zY^(m!`i-)&P5mdFqY9wtFwMlQ)aaA({i)rde*O|#a#E;nTPiIVa0SUn)IqgO>@q>lkGZkb(jaIGB5d@<@4FOs7z(%oUhjqSvjJh zf-PXhMT{&4U{qPI6J88EBiJvcn@&hjyVNG~>{JWp)mBOwoJ!TqjTY6Gm~)g2KB}LW zJG)C9OZmBEpvW|-xlk`@>m8ZXmA zc-C%PKC{yB32gru>!6=Da=fg7$l`$*=y&7to;nnN>k*%7{sx+7vo zW5or7S^Jnv29%S#a$MhSclEMtI6E~p9*>)uHV9YUr6$6hO5!v~!Z?{4r~+-c&LExY z7u2RY?wR8YQ@ghk=-AMFY!d1PSIFwBa zzm|Hl`ZU2zH%P%5k*y)RIN4_%mI zVJfO7x6YPJZINAQfo3-8~Rwi(#cg6u_7;1-kc z`FXMwc_va;&Ypy%fr<@T{V)j!+Q3iAu@qWK){e3mRLk1F@E2Wy>RO>@gb=90)Rr@lbvuIocb*hB9j3u$rUPJaiSOK>RPGt>VXJ5*^plnEOjBpFtcRyG6izIliT)0MWpg9 zUgLOvdC*mEF9xa$Z6%!i=2~fEQWWG9UNcdTY?vZhEJ0eSR%6+mY}az2fAz?+bPbLy z(!hT(kZAYB?-XN{g(5o_^)@df6PXQf{mkx~cSLKXNKPyQE{oXI4n`?4n0ePkrJ^E4g0Pm4?K0UJN!a1n`BHl;C|5=n}9)vYeRixIwgex!og6QZ6d3 zwFvJ%=}jWk#k`Ju>tyqtINMnnYR12wh_53B#3FK{Z5+|tU_Dcnk#8-IR>SUye`zFH z)6Od*O;U-CB{lzX9vsV@M?APl;i)d+Dx*%>Pz0VEZGMIi@U$$E>0EW;HOu)`ms_r` zy659WF?!UKt5&@hlH{MBy6RroyiD+^XWF{aP*T7FQJ9RA_khcgo;djOQ2UqAF5xpntPh-Q0$_70VB~7H^dh((|$-rxw;` z_m(Rw&0zl%H=-B!;eW&4S&NjUJSz=H=IRAi__6q} z)oiDz0PN(WiZ7{Htd;87nmle;_Lj@va@9MJF6vimf1}3!T^{B5F9@;2->6ku*RIrM zH_tz{OSL9yx9YMxS!a&ppQltTc!AapMByQbBAXZITyuOWQs%Y%-^W!x#>(tkEoE~V z@K;P0va*Bh=+*;JWL6`hS}l*7{cq#Bq|(W1Q6D=R&3D^*get@PovCQQs1^}kx^s|xYvBVkdCe6JcNPine^{|{1@$VmVI delta 2332 zcmYk-eN0t#9LMqB^mVT42Of}3t;yIUo0 z<)U_MYZKexj~L+`c2_fM>jD39tF_kF!ymflO5HNI=pWIgy+3en>$meguiv@noZs{B z-0%G#REMvm$G&SwJwy&sPqN0gS^C@{T!***J=H(oCQ#m_apk z*7gEwh`+?I@E24$rx^yaW&-Q*9B#*37*>H5Df9~Kk;BYz((iMq9$ZAV_&Zd^KO={^ z%!xA0O=Q`aJE%2u4>fgb=#?6nk9w{U)sRZmNH%HwdDe9E1BV&pq>7KBUK~YL_!f4f zg&XiMRKr{hR|DqZX6!}XKZzRh^QeYj#C7;BssT4q4O&cN{PjTmisg#a(8F~$7GpD( z;1SddAL6*fmnQ1AVQMR*_eei18E_gj$8ngCAYFsdUtYzZ|eTu4SkS%rGB z2`R($pdLJenxf;V7N5dGd>^;qCDhRVjp}JSwW{JQPAb=n4`Vf|BmK66$P|Umi)0ub z^E#@6_pk{kQ7ylL8lgp0fk`ZJ&7ljmE!U%-t3%yyL#>@oRCx!G!yMu?fupGV1*_FD z=HE+Z7eCbDUK~SJcnx31+o%dcjI#rcR*1J?L4!xG(8M%wExTVuPM-1%dZc48;- z4Dmd%p3qi|rgAb`*wK_9&0xo4|GUs)QPTd8CanWE(MV`lR1*!vHbSf2LuhS0NyHFZ zz)IHjggI*}@tk!qsXelgH07|)CfCOG9SRH#TE3Kwh%d$AwEkIfEb?~78!@HcGEd1? zx38?qSMKqadA*5kyFBfEhX+Omfa5}&)oSLO3rJ6)Nn?ZKYD z;ZV@s9vle_4+O1~uKlSy0z>^T1^RiVw{Kr#ll6zI)7qO^6j{i0I;?wHQ`YCJ{Sklm if+Mzh{*xE1+>HgX&B2jSWIm_EX{F~Kjoio|i1`;?OyyDl 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 f5334c04a3..4235d01a05 100644 --- a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.po @@ -1,28 +1,27 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Berny , 2015 +# Berny , 2015-2016 # Ingo, 2013 # Mathias Behrle , 2014 # tetjarediske , 2012 # tilmannsittig , 2012 -# Tobias Paepke , 2014 +# Tobias Paepke , 2014,2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-10-31 18:57+0000\n" +"Last-Translator: Tobias Paepke \n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -30,6 +29,7 @@ msgid "Sources" msgstr "Quellen" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "Quelle definieren" @@ -38,10 +38,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung " -"in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist " -"erforderlich." +msgstr "Dokumentenquellen definieren verschiedene Möglichkeiten für die Einspeisung in Mayan EDMS. Minimal ein Webformular für das Hochladen mittels Browser ist erforderlich." #: apps.py:65 msgid "Created" @@ -281,9 +278,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 " -"für IMAP über SSL" +msgstr "Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 für IMAP über SSL" #: models.py:338 msgid "Port" @@ -302,10 +297,7 @@ msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "" -"Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für " -"die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste " -"Anhang sein)." +msgstr "Name des Anhangs, der die Metadatentypen (Paare von Namen und Werten) für die folgenden Anhänge enthält (Bemerkung: dieser Anhang muss der erste Anhang sein)." #: models.py:349 msgid "Metadata attachment name" @@ -315,43 +307,44 @@ msgstr "Name Metadatenattachment" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" +msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Betreffs, der für den ausgewählten Dokumententyp zulässig ist" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" -msgstr "" +msgstr "Metadatentyp des Betreffs" #: models.py:360 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" +msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Absenders, der für den ausgewählten Dokumententyp zulässig ist" #: models.py:363 msgid "From metadata type" -msgstr "" +msgstr "Metadatentyp des Absenders" #: models.py:367 msgid "Store the body of the email as a text document." -msgstr "" +msgstr "Textkörper der Nachricht als Textdokument speichern" #: models.py:368 msgid "Store email body" -msgstr "" +msgstr "Textkörper der E-Mail speichern" #: models.py:377 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" +msgstr "Metadatentyp \"%(metadata_type)s\" des Betreffs ist für den Dokumententyp \"%(document_type)s\" nicht zulässig." #: models.py:391 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" +msgstr "Metadatentyp \"%(metadata_type)s\" des Absenders ist für den Dokumententyp \"%(document_type)s\" nicht zulässig." #: models.py:441 #, python-format @@ -376,7 +369,7 @@ msgstr "POP email" #: models.py:534 msgid "IMAP Mailbox from which to check for messages." -msgstr "" +msgstr "IMAP-Mailbox, die auf Nachrichten überprüft werden soll. " #: models.py:535 msgid "Mailbox" @@ -416,16 +409,17 @@ msgstr "Existierende Dokumentenquellen anzeigen" #: permissions.py:21 msgid "Delete staging files" -msgstr "" +msgstr "Staging-Datei löschen" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Fehler bei der Verarbeitung der Quelle %s" #: templates/sources/upload_multiform_subtemplate.html:35 msgid "Clear" -msgstr "" +msgstr "Löschen" #: views.py:64 #, python-format @@ -434,13 +428,12 @@ msgstr "Logeinträge für Quelle %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen " -"oder aktivieren Sie eine bevor Sie fortsetzen." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Es wurden keine interaktiven Dokumentenquellen konfiguriert. Bitte erstellen oder aktivieren Sie eine bevor Sie fortsetzen." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "Dokumenteneigenschaften" @@ -450,8 +443,7 @@ msgstr "Dateien im Staging Pfad" #: views.py:262 msgid "New document queued for uploaded and will be available shortly." -msgstr "" -"Neues Dokument in die Upload-Warteschlange eingereiht und demnächst verfügbar" +msgstr "Neues Dokument in die Upload-Warteschlange eingereiht und demnächst verfügbar" #: views.py:302 #, python-format @@ -461,13 +453,12 @@ msgstr "Ein Dokument aus Quelle %s hochladen" #: views.py:327 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." -msgstr "" +msgstr "Vom Dokument \"%s\" können keine neuen Versionen hochgeladen werden." #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." -msgstr "" -"Neue Dokumentenvrsion in die Upload-Warteschlange eingereiht und demnächst " -"verfügbar" +msgid "" +"New document version queued for uploaded and will be available shortly." +msgstr "Neue Dokumentenvrsion in die Upload-Warteschlange eingereiht und demnächst verfügbar" #: views.py:419 #, python-format @@ -481,6 +472,7 @@ msgstr "Quelle des Typs %s erstellen" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Quelle %s wirklich löschen?" @@ -499,15 +491,15 @@ msgstr "Seitenbild Stagingdatei" #: wizards.py:38 msgid "Step 1 of 3: Select document type" -msgstr "" +msgstr "Schritt 1 von 3: Dokumententyp auswählen" #: wizards.py:39 msgid "Step 2 of 3: Enter document metadata" -msgstr "" +msgstr "Schritt 2 von 3: Metadaten des Dokuments eingeben" #: wizards.py:40 msgid "Step 3 of 3: Select tags" -msgstr "" +msgstr "Schritt 3 von 3: Tags auswählen" #: wizards.py:66 msgid "Next step" @@ -599,11 +591,9 @@ msgstr "Uploadassistent" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/en/LC_MESSAGES/django.mo index cc6d0f99aeb43f78dccc3de05854c22ff1acdd72..240f0068ce7463009aeb48a2c00a3244ab488279 100644 GIT binary patch delta 24 fcmaFN|CoP61`D^Lp{|j!f`O5hsoCaYmI7t~Uk3)n delta 24 fcmaFN|CoP61`D@=iLQ~kf}x3(q3PygmI7t~Urq+d diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po index 2691cb7dda..4b311ed4d1 100644 --- a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/sources/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: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2013-11-20 13:14+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/es/LC_MESSAGES/django.mo index 551d91245c8dc1dc6d2453f813b14d44f5380060..7497f502a3cc0d93e3bccce0d6c782b321c683a7 100644 GIT binary patch delta 2801 zcmZY9Yiv|S7{>AGMJ_E^S|}B$c#uL-D73q6!J=GS>a9?yauFyVcTdZfrCWASi(qgu zCM4o5NH8cB_@H1QLBksS0wI`?Kmv)EXo!&}YBUCe8Wdyj1OA`gS;08z+uzLW?94lJ z=Io8RFEu6yO7iy@N*7U1MDvVM$H_tbql_48ObHfSD{wUJnK%j;+ja=`m901gU%)xI z69?mYybC|Wad-vqHYRBX6=VifAbn<d3wNLrI*l6l6^_6w z*pGkXaNJv%8FvWtX`jMU);FI}DWc;N4#S^NU$~CSJde(Mun?8`R8%6(sEO8LDTa}+ zn60Q2+kruR3pMT{l8gD=etsE8vcCC^ijFLwRqJp#Dxrm_owVT{7)CA7g=4V~bz-|v z3+zKBe9-zn>c~IDGk6{~&&zjaHo6OwbLrSmr5OiM6HaFJF04kn%sy2A5!4PoLM40} zweUIAxQoad<{RW1nJcI}^$Y4z7P1>9Sb`cib_D0o=FJp3bfk5tiCU2Fm^C;7qga8j zp>~u){>%mb&A`j3M=-oNljua$LRF{)>u@bLpyt_&+Q_M5&VK=wb97W zl7HIi1{{w*D&gIz9UQcuA48qc$5@4Da60~q0UXcG)cB?NY7Tb>C)2)~knfyow}hgtwvY&Q9C^Ch8=U?@-Yf zP9X22`4V*^zvCFJ=ecNLE3&4E;8{!}hi01i(7_d`1)oJd^Car?e$>3jQ0rVkCH^x` zVwm}pie9U7R@1;)s2wjy-ST$i6wMa<`72mY`v~gUev3?DengGCi8`qgzO02RQR4%s z{)qK?9HRGsHx=!yAIZoZw*xMrCb){)*zhSXw1alkGun(=@I};wJ5gVF8}(WpMcs`LP~*NpCH6H|;&;gX zG6kIX6daE{P19^`$NOmaVsaXl15~v03#cz#!)6@EjU-tULhWEXDv{SwM}H6__#V!~ zA}4d%TJd4pYf%dwvVMws1UFC#7fs;&wUaVla$T0$sLWeX3%aNi=s}I!ZhaSL(mscJ zJ$3bSK(C;RLnwg;qK243sA!F6(lz^gq35q>#GNtAiTjBTVl|;eRKkRIn=K2ev=Z96 zj^86xrV>h;!!Yv+74kDrrfX~tR}qcGT-(>i`sNYaScW{h^fR7g`?zc7apGxWEs-s{ z>1;av=ICTpbhL|z$;4vf_OjGA^tg3$wYHsXr_y2@71%}SvbcnP$yO37b%b7{^=eRZ zi4gIa8k8v+%!8=A6C`wZ^k(SJJV2<-A|55?5tL;5M?p3HO6e`=B=p)XAoMoeUMgwm z;;bR2+Yk61GS#;J5bC~Ui!R?&wy^@!cLke>CFy=WtlP>u>Ut9b*}l}aAsccE6TaIS z>F#toBGJ^q(1|&t8)Ko~jb69!^!7w!ZrIrz+3Lo_#|!_+DQoe3H|+YZ;p|NQmLAWv`HTqI5l!8`7r!-Nqn$W2DEQxL zNHDdh==gubiYpbgZT9;HU^ZFu*NUXc6(e=FsCs18eUuDPDH`E4F zM@z2fmM@6K<8It>Sbq| z(YEEH-p@r1qzW}dtyoR_)<#A>>PC&=8isHH)xd3>iT9B~+Y?j+!>A7b;rtsPQ2rP7 z`>z-kS^EYXa0pv4ebU5t+Aw~I2Rq4d*$?i;6I9QKQ9T_&H8_S`HqK2mmP)VLE;b#t zck)q7R)gx;3RJx&R7W$v3Fc)_45$WYQ*Ov+{?)TRJWx*$y9y^!4WGdZynqYwJ}$S;04 zp{b3bI^2rd8(ZD;cGU4YfU18QH4|TAKE818|3faz<>-8m@p3W@#$KTsNM?bwmSNQM zGUS|E9qPl|Q5`*jAK)3(DH%Z3`wlh2-%*=(1U2;`dZ+h!Sc5glQpW8F87}MOriwkt zpzRA(Lmuh}gYNljX9mO4=A45XQ5mX3^{C%>pniW6HL$a&j`iSk?8T7Ie<$5!Us)G6 z<2l@dk5RjHKEpeTmB>D_eq>N~2kDDFLM_FgsD?&S-y28OPh&cDO7c;Apb%9rhN-k~ ztz=4ZBkB*L3(N2VvMP4h`N%zgf!Z^f%qLmfg6iloRD-8br{oeI#H+XxwSL+=F>J;4 z82^yWH8S!6YU=(%O_jE;dYp#Z3+1Q|)}tESgc@l(s@^f@6}+lU2(5;N~Fm0#dinaE%{ z5&wi+h~PB%dq796f!IOJCA5y|L?Y>Av=dtQ4TMfYB58B2CbZ@YiDF_Up}nKTw(|en zO0k(>Urw@}WRyN4mU~(0hXdZljQoK2ZFnr;4Q1U3dOuDX4u&ID6^oY?MXTzf)xGy} p3d51=ib!oyBwAM)^?uEH9rVU>I|5!;-u0jtoz3@`b!At-E diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po index ced69a3764..5baae4eb66 100644 --- a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-05-09 01:31+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-23 06:42+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -28,6 +27,7 @@ msgid "Sources" msgstr "Fuentes" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "Crear una nueva fuente de documentos" @@ -36,10 +36,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Las fuentes de documentos son la manera en la que se almacenan nuevos " -"documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario " -"web para poder cargar documentos desde un navegador." +msgstr "Las fuentes de documentos son la manera en la que se almacenan nuevos documentos en Mayan EDMS. Crea por lo menos una fuente del tipo formulario web para poder cargar documentos desde un navegador." #: apps.py:65 msgid "Created" @@ -67,8 +64,7 @@ msgstr "Expandir archivos comprimidos" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Subir los archivos de un archivo comprimido como documentos individuales" +msgstr "Subir los archivos de un archivo comprimido como documentos individuales" #: forms.py:67 views.py:432 msgid "Staging file" @@ -250,8 +246,7 @@ msgstr "Intérvalo" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Asignar un tipo de documento a los documentos subidos desde esta fuente" +msgstr "Asignar un tipo de documento a los documentos subidos desde esta fuente" #: models.py:275 msgid "Document type" @@ -281,9 +276,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para " -"IMAP, 993 para IMAP sobre SSL." +msgstr "Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." #: models.py:338 msgid "Port" @@ -302,15 +295,11 @@ msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "" -"Nombre del archivo adjunto que contiene los nombres de los tipos de " -"metadatos y los pares de valores que se asignará al resto de los archivos " -"adjuntos descargados. Nota: Este anejo tiene que ser el primer archivo " -"adjunto." +msgstr "Nombre del archivo adjunto que contiene los nombres de los tipos de metadatos y los pares de valores que se asignará al resto de los archivos adjuntos descargados. Nota: Este anejo tiene que ser el primer archivo adjunto." #: models.py:349 msgid "Metadata attachment name" -msgstr "" +msgstr "Nombre del anejo de metadatos" #: models.py:353 msgid "" @@ -319,6 +308,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "Tipo de metadatos de asunto " @@ -417,10 +407,11 @@ msgstr "Ver fuentes de documento existentes" #: permissions.py:21 msgid "Delete staging files" -msgstr "" +msgstr "Borrar archivos provisionales" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Error procesando fuente: %s" @@ -435,13 +426,12 @@ msgstr "Entradas de bitácora para fuente: %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"No se han definido fuentes de documentos interactivos o no hay ninguna " -"habilitada, cree una antes de continuar." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "No se han definido fuentes de documentos interactivos o no hay ninguna habilitada, cree una antes de continuar." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "Propiedades de documento" @@ -464,10 +454,9 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." -msgstr "" -"Nueva versión del documento en cola para ser cargado, estará disponible en " -"breve." +msgid "" +"New document version queued for uploaded and will be available shortly." +msgstr "Nueva versión del documento en cola para ser cargado, estará disponible en breve." #: views.py:419 #, python-format @@ -481,6 +470,7 @@ msgstr "Crear nuevo tipo de fuente: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "¿Eliminar la fuente: %s?" @@ -499,15 +489,15 @@ msgstr "Imagen de página de archivo provisional" #: wizards.py:38 msgid "Step 1 of 3: Select document type" -msgstr "" +msgstr "Paso 1 de 3: Seleccione tipo de documento" #: wizards.py:39 msgid "Step 2 of 3: Enter document metadata" -msgstr "" +msgstr "Paso 2 de 3: Entre la metadata del documento" #: wizards.py:40 msgid "Step 3 of 3: Select tags" -msgstr "" +msgstr "Pago 3 de 3: Seleccione las etiquetas" #: wizards.py:66 msgid "Next step" @@ -515,7 +505,7 @@ msgstr "Siguiente paso" #: wizards.py:68 msgid "Document upload wizard" -msgstr "" +msgstr "Asistente de carga de documentos" #~ msgid "Staging file delete successfully." #~ msgstr "Staging file delete successfully." @@ -599,11 +589,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.mo index 0e2a8e2894a62154d833b3b513bed3555f389fc0..1c1075e131d7bad6b131d2fc7a1251cb1a74560c 100644 GIT binary patch delta 45 zcmX?OdB$?X0X}X+LtP_d1p^~1Q?tpZ`4&yC;*a9-Nz6+xO-xU, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "سورس" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -133,9 +133,7 @@ msgstr "پرسیدن از کاربر" #: literals.py:27 models.py:252 msgid "Web form" -msgstr "" -"وب فرم " -"ا " +msgstr "وب فرم ا " #: literals.py:28 models.py:232 msgid "Staging folder" @@ -275,9 +273,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " -"for IMAP over SSL." +msgstr "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 for IMAP over SSL." #: models.py:338 msgid "Port" @@ -309,6 +305,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -411,6 +408,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -425,13 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع " -"بسازید." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "هیچ منبع محاوره ای سند تعریف و یا فعال نشده، قبل از ادامه دادن یک منبع بسازید." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -454,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "نسخه سند جدید که جهت آپلود وارد صف شد بزودی قابل دسترس خواهد بود." #: views.py:419 @@ -469,6 +467,7 @@ msgstr "ایجاد سورس جدید از نوع %s." #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -587,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.mo index f95549f4324b5542c2b08f52bbc759d8d8ecb638..217c04ccdb2769375c3eee23ca6a0600888bc154 100644 GIT binary patch delta 4310 zcmchZ4{TLe9mh|h3`z&s7RH|rdU#L@tkkxwY^w+qC=+dgSvEI>vD^1<+gD!SE%)A6 zz{ET^opBMDWp7haH1ki;W(!dplc8o)>q25?SVBxB1|8}mqGp*!-K_%()VdvB2k(G0;N5Tobl^1j1eEF%aDg#-bCO9d8>iu7_{;b}S*0=DVJe_r zsDV;k3u|Bk&WG!u4A=p0g-Iwwj>9%M26g^7@NMvQcpT2Y-k4e3Z=PhL7f!))_yU{< ze+=iq-$MSG34Uh58T`ng8(G7fT9D>|wJ^>ZMV{k2e3YK%fd67vI zdyn3rIl z9GE{a`5vr9s}%hR%Hy+eBYY9w4lTDy;Q$OBUBbz1RR{SQ}KRH$y4j1F_Mh;Zk@6E{C6m za`3wlo6I@*c6bRYHH&J9|9&RT#95v_0(IeMphEUVxDS2>O5rprO&+d>n_(MlfQO-; zKLOEgo`Z_OPv8=G0m^XQDo18PJ+I9((Z$Q*8rTGz;9l4YKMwW6GjO!bnCIbP)+4yT z489z*1~+eFeG6=aNhp1fKwb0c z<=`<$5X|Rc9-ZdfOw^A*g&&1Khxfz2M6nnzLe;>0Do%zjf%13-v~Uwtu{uy8ehfCl zAH@6QGt>@(}k3VTbe+nK|>v(NY!zF^Z^3VkQWM_#&yULB9BYsJxtWs zJ%}Py8j6C3qPY<{h$tm@A^I+83?Ms^q!#hWtAONb2eJcEPv41HMAg0&(Qt~0zJ_V$ zcO#07!k9tS({CJmSSZwr>V1d`PGcBR7pP#P{-?I0KZnY1FESm`*o2V2XejjCkUm7c zOE%0dq#xOfDA#JK_aa-77UUM>UZgZqOemMA(APuNMWy3lS!v+pXb|fz_lqanHzGmVf0$NtzTK% zh+i`usgx~r&-i9}#&!HhE5244gie1t+i&~QnZk*Ry^V?bqVC>|mptI28FOrIIO91f z9m~3h?1<|JX)hZzjlEj&^|ERie6_uWuU2kc)$OD+z24!Xfh<0|{x$xlN`g zdTEk-wqG-f|LH|Ru6GcFnhLMa&gXkVci6UAug|V+xACQ=R7ANk(TUdhL}xa1{VT~U z<+^xi?bT|?SHJ`L8Tn{?z0{F-LnWYPUax3TJmCa*9J+_Y%U2MIqPbTGeDdA@zWnB2 zqyEM|Fz4u$%9fTjt!r&_YkS+eLRIyW9c@~+Hn%sgyQ!Hmv&#v>HM@N$8)O{(Y`2^J zT-LK&I(Bt-b?)A2*Y|4Olyrv4X6S8ldXv5zxK6Gq=?!ft?62-AJX^iz`YtEipQFOs zDZ#>mn#Oz=m7#7*xpruLl>YLv+3``QO zW!9DDWT%oFVZsK2VkJ?r?(zge54?vdZx$NXIeRG&ffxp}Y z!4);*qm4F2wz=$J&duPv@AjvI(AWKrTGu7kahCFNn#}*%4%Y^`K{vEB$#bS5>Z`F2 z-Z;A~-x*Se^m>4eYW6FBMd6FXle^q{ruaf@=>>W}a+K^xeP1lfAU?LXbnMM~16%wM zWYU)1$JNarC delta 2320 zcmYk-eN0t#9LMqR0X{hQdGjkM-;M@2lbjnka0I8D@WZeHeBkO zczW0}TK;8*(ZjV3%`I!T)*q$)RD_GL6qWH-R07?o2fcuL&=F*_VRq$s z7Ipm=@@N}JRq$uji)b)aC=Dwa-}2}rV>9Xv9>rMfL+-J|n2m$TOWJAF03)bG-*+8D zmH0A#iZ@ZuIYk-h+G$*kqqrV_!LS}!mBd@&8f3E(b~=9%^#)f^8DB*Wd;{6+7CW9{ zcaUXcf1=jVzo@Cp;jNTl0qS?fs6?t!m0YL#^IL1@1e+aTr-A!XHx8l(d6I-iu+O5kE2Td0V?q;xDdZWC2$9o(A^a3uOG~wH#Kky`Z&(UQf$C7d>VDb zJ9x}vHinBiu4h8!<5+^naT$)Go-=`Zekz|z7Up6jR-vYLFzjA9iMsI|F2S3q68?u8 zcor*76-h%?C>Qgw$h840IqpWSfwxd4zJTOl-{9vsfxNtp@JaCbS@;qiW%w<6@iwwq z40o%9Ij9Geq7tY>EuxKBj7L$6^CS2AHN21G8%U9C4%z7MKsIVBccG?kH}d?jbvu1l#Cnd0Q6(EkeSUwV63yhK63RzasuGoGD^e`$agPU33BQV})SGw}FQY1Zf~-^Y z{l7-1lM`>_Gnm3?D$$GBjjto?&0<;F%6x&V7qys5P;XX^Y_^KsB5Xl@6^Bu4>3P(^ z@1hbrk6Dawm*{x$I%=`~fhu7!6XeGh)SDkemHK7WfbU@l&*Otw$P(9Dc>*88XR#8$ z#%hcqD}HLLP>Zh>!}rqZq(fC~2vzD4)MxpH>vgQ?jy5&V!CM!JUo4X1vC0P*UmU7bo=^@rkfUum#8Q7J>O60Pp;-)i_J&q57#Cl zir}-KY|f8y7o9WlqfU21Q{?xAGalz$Vr^{4lfkY7P9P~Y5=inyJO9k*sOw-?sK-|y?CYrUmiYr!K7YBdEZ{8*)C2;~mh_C| zrqI5Q-oB8xDReN{+ZA$#(wpaQ4)%0D73}1e$9kRH>8;MDjFQN&8Fe0KMb;0_>g>kI cwd`P&vm>uQ@=2aICh}83q9?L<$>Qk$0o@Vcw*UYD diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index 74eb8c3a01..301d826e7a 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po @@ -1,24 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Bruno CAPELETO , 2016 +# Christophe CHAUVET , 2015 # Christophe CHAUVET , 2015 # Pierre Lhoste , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-05-23 20:06+0000\n" +"Last-Translator: Bruno CAPELETO \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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -26,6 +27,7 @@ msgid "Sources" msgstr "Sources" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "Créer un document source" @@ -34,10 +36,7 @@ msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" -"Les sources de document seront la façon pour lesquels les nouveaux documents " -"seront suivis dans Mayan EDMS, créer par au moins un formulaire web pour " -"téléverser le document depuis le navigateur" +msgstr "Les sources de document seront la façon pour lesquels les nouveaux documents seront suivis dans Mayan EDMS, créer par au moins un formulaire web pour téléverser le document depuis le navigateur" #: apps.py:65 msgid "Created" @@ -65,9 +64,7 @@ msgstr "Décompresser les fichiers" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Importer le contenu d'un ensemble de fichiers compressés comme fichiers " -"individuels" +msgstr "Importer le contenu d'un ensemble de fichiers compressés comme fichiers individuels" #: forms.py:67 views.py:432 msgid "Staging file" @@ -249,8 +246,7 @@ msgstr "Intervalle" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Assigner un type de document aux documents importés à partir de cette source." +msgstr "Assigner un type de document aux documents importés à partir de cette source." #: models.py:275 msgid "Document type" @@ -280,9 +276,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 " -"pour l'IMAP, 993 pour l'IMAP over SSL." +msgstr "Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 pour l'IMAP, 993 pour l'IMAP over SSL." #: models.py:338 msgid "Port" @@ -301,10 +295,7 @@ msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "" -"Le nom de la pièce jointe qui contiendra les noms des type de métadonnée et " -"aux couple de valeur qui seront assignés au reste des documents téléversés. " -"Noter que cette pièce jointe sera la première." +msgstr "Le nom de la pièce jointe qui contiendra les noms des type de métadonnée et aux couple de valeur qui seront assignés au reste des documents téléversés. Noter que cette pièce jointe sera la première." #: models.py:349 msgid "Metadata attachment name" @@ -314,43 +305,44 @@ msgstr "Métadonnées de la pièce jointe" msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" +msgstr "Sélectionner un type de métadonnée correct pour le type de document sélectionné, dans lequel enregistrer le sujet de l'email" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" -msgstr "" +msgstr "Type de métadonnée du sujet" #: models.py:360 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" +msgstr "Sélectionner un type de métadonnée correct pour le type de document sélectionné, dans lequel enregistrer la valeur du champs \"de\"" #: models.py:363 msgid "From metadata type" -msgstr "" +msgstr "Type de métadonnée du champs \"de\"" #: models.py:367 msgid "Store the body of the email as a text document." -msgstr "" +msgstr "Sauvegarder le corps de l'email en tant que document texte." #: models.py:368 msgid "Store email body" -msgstr "" +msgstr "Sauvegarder le corps de l'email" #: models.py:377 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" +msgstr "Le type de métadonnée du sujet \"%(metadata_type)s\" n'est pas correct pour le document de type: %(document_type)s" #: models.py:391 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" +msgstr "Le type de métadonnée du champs \"de\" \"%(metadata_type)s\" n'est pas correct pour le document de type: %(document_type)s" #: models.py:441 #, python-format @@ -375,7 +367,7 @@ msgstr "Compte POP" #: models.py:534 msgid "IMAP Mailbox from which to check for messages." -msgstr "" +msgstr "Boîte IMAP où chercher les messages" #: models.py:535 msgid "Mailbox" @@ -415,16 +407,17 @@ msgstr "Afficher les sources du document en cours" #: permissions.py:21 msgid "Delete staging files" -msgstr "" +msgstr "Supprimer les fichiers en attente" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "Erreur lors du traitement de la source: %s" #: templates/sources/upload_multiform_subtemplate.html:35 msgid "Clear" -msgstr "" +msgstr "Effacer" #: views.py:64 #, python-format @@ -433,13 +426,12 @@ msgstr "Entrée du journal pour la source: %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Aucune source de document interactifs n'a été définie ou/ni activée, créer " -"en une avant de continuer." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Aucune source de document interactifs n'a été définie ou/ni activée, créer en une avant de continuer." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "Propriété du document" @@ -449,9 +441,7 @@ msgstr "Fichiers dans l'index, en cours de modification" #: views.py:262 msgid "New document queued for uploaded and will be available shortly." -msgstr "" -"Nouveau document ajouter dans la file d'attente pour transfert et disponible " -"dans les plus bref délai." +msgstr "Nouveau document ajouter dans la file d'attente pour transfert et disponible dans les plus bref délai." #: views.py:302 #, python-format @@ -461,13 +451,12 @@ msgstr "importer un document local à partir de la source: %s" #: views.py:327 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." -msgstr "" +msgstr "L'ajout d'une nouvelle version pour le document \"%s\" est bloqué." #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." -msgstr "" -"Une nouvelle version du document mis en fille d'attente pour importation qui " -"sera disponible dans les plus brefs délai." +msgid "" +"New document version queued for uploaded and will be available shortly." +msgstr "Une nouvelle version du document mis en fille d'attente pour importation qui sera disponible dans les plus brefs délai." #: views.py:419 #, python-format @@ -481,6 +470,7 @@ msgstr "Créer une nouvelle source de type:%s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "Supprimer la source: %s?" @@ -499,15 +489,15 @@ msgstr "Affichage sous forme d'image de la page de fichier" #: wizards.py:38 msgid "Step 1 of 3: Select document type" -msgstr "" +msgstr "Etape 1 sur 3: Sélectionner le type du document" #: wizards.py:39 msgid "Step 2 of 3: Enter document metadata" -msgstr "" +msgstr "Etape 2 sur 3: Entrer les metadonnées" #: wizards.py:40 msgid "Step 3 of 3: Select tags" -msgstr "" +msgstr "Etape 3 sur 3: Sélectionner les tags" #: wizards.py:66 msgid "Next step" @@ -599,11 +589,9 @@ msgstr "Assistant d'envoi de document" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.mo index 2a88e2994a9319592c58cc8193abde363f2e9d62..902f61a8c6a063e9fad91028874c1f46f6567f7b 100644 GIT binary patch delta 45 zcmX@WeSmwzTPAKpLtP_d1p^~1Q?toGn3hal$sEPwlbDxYnwXwyrI1m&nTcf|BLG}D B4+Q`K delta 45 zcmX@WeSmwzTPAJ;6I~;71w#`nL(|DWn3nMPB<7`;CZ?xaDP)vRp3NM+nVDrTBLG=K B4*UQB diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po index a917cd0b80..1ffec0bb11 100644 --- a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Dezső József , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -305,6 +305,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -407,6 +408,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -421,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -448,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -463,6 +467,7 @@ msgstr "" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -581,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/id/LC_MESSAGES/django.mo index 082d94d50d8e9163ec9faeb255ecea860d9c2dfd..eb8f82deb93545e9c8a2b918f10fc8c1b66c3b29 100644 GIT binary patch delta 45 zcmbQhH-T@%ab|8qLtP_d1p^~1Q?tpJn3qm&VTt1LNz6+xO-xU?QE B4u1du delta 45 zcmbQhH-T@%ab|7<6I~;71w#`nL(|EZn3wYSB<7`;CZ?xaDP*QhE@O$_e2>M52>?M0 B4t4+l diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po index 550af98087..acadcb0714 100644 --- a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Sehat , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -61,9 +61,7 @@ msgstr "Kembangkan berkas-berkas terkompresi" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-" -"dokumen individual" +msgstr "Unggah berkas terkompresi yang mengandung berkas-berkas sebagai dokumen-dokumen individual" #: forms.py:67 views.py:432 msgid "Staging file" @@ -307,6 +305,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -409,6 +408,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -450,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -465,6 +467,7 @@ msgstr "Membuat sumber baru dengan jenis: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -583,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/it/LC_MESSAGES/django.mo index 0806762a8299ac1545044bc2386173a8f5dd0d94..f6706e49dfaf5b7a573f77da23b858d092afd90b 100644 GIT binary patch literal 9560 zcmcJUdyE~|UB^!#fpkL>NFRg*l9Q#zPU?HTk2sCjc2Z}(+idZ!xA8h{-8NX{oXmx-}$|NlObqx|9d@av3u4E$yA z7VzIZz6`#J_nT&nc>{O|)cX?nBj7v1>%n(}4}bx99r!G$tv>_a3Vsf}9sD!!XTY!f z@oR1{h9k`DK+S(WsC{n-Uk}cLKMCFk>iiAxey|UUj!%Ne!9N5w{~O?sgZ~YF61?fh zjJXl~eNglN1iTjfEAWlr-+(uR-vaq(UgnSHU(X-W^Cs|4@D5P)KLCoJOQ812LG7~x za-{inQ2hH1a1neS)V!~OUGQH)u5R9NQ#J2SP;@VV;^Qi)`qU{ zmYT2n{%?b#|Gz-dd(BT&=gxqdcQeQp%^e^rW{!dba1QK&p8%zQFN2cvtuRaU-U({m zVNi4(2gT=yK<#@8ghUgAcY(X$o59}#b-x!tNHSjmkAdF=C70V^?gzj*Q1|)>sPldk z6u&+Vz90NOQ2SknlIec;fDeJk!NcGcP~*>nY;C>(>i&NZ-U0qID7tm1?r|fi@!LV2 z`)05McEK+AK5zm2RZ#Q)6#VQp#{31i&HE0Q|0(b#kKY4z{w-Yg=fJmu(#yv{@$o|- zEHzJq%izaB-SZzo(eZUq`ulBA{JWmbMfW|R)~|uO_a>-y?*+B44{BWk>bwtw(!1xt zw}3DD@&5pI?hOpW3UeNmy@lY%zz>3w-z{u53(kVte+AUO8z5IVDJXgWqQ{Sd;@_u1 z$>DiW>%R<&&hLVfi3l-_+F)P7$EMgL2n`1lP_cKsbt_x~O!x@T;4&K=-@_gOFk ze+A?S^PiyB-;7cSZw1BwyFmGwIS^9KDNy@f@|b{k^Zp@l4tx&OysvotE_fgBZ$wy< z>p4*8_CV49=b-rW*P!I`58(U2e*zx>PyK9lzYl^Zc>g6(_VWTLz591i``(68I6A?@ zyq^Mf@6h8FQ1|*ZkI#TddH-!tdhkVX9sEA1ea;=ir-71*?DS#U+i8-W_$3+DkM2`H z(gi)3m-9cc-}xQ&>Di)*PkLl;BU+{x|NK0t`(2=k-uk)G|2PRgNPChdx*w&94|;~Q z^R&KR{3Bl|KAxd%(8TkLG)oiT5RZETkM9R#+Pi7ed(7D+H0k#ABi)qTr6a#U!(7}m z=CAbgahmv#7+w6k7VOa^YdvqH$$#lNO6Vy_NPD zt$sp&ATno5r$FhTu9(I=QpK`dSo+to}i`f7dZ@g5AD4)>Dn^wUfR{36*}KR zL;c+IkjEq7n*V*9N7=1(>pe8-+;N(jUCp!6tQ|#V5C&yn%iVEgXAd2zJ3gR}yNg*H z7dFjGdpStr&~9hBEr*c}v;JfhrKMZ8WDgywJNz`XVim=ku9=G-jB?gWGC1y%$ec|J1MlbDB?kCgS{l$ zGHW^tI~gZg5Jp@F9&jJ7Snbv|%SjaEW;q+_c4j$`f-;)k%%AE9bi?}Qev6`Bq_JwY z&9-Yk)uW*~tBuQe6q&Qpb}&gwFo{aN3T&`lM!Bc7?mKXlpWCo6PNJfoEHQ1<;dkPW z!=SLeC`xTH>Gz|e*q$WGZo`c3^umg81Y104&epP?JyfYfFUk5()ZD9hDdFkDm!rIh zv$SBddeu13#!+6zqO9(#wm;ZmgB+$nI5M?yYIlY)3NX#(!cEzZI3AI%2fIOPSI(|q zIBNS|R;5LRMTyXMqMj7CRuwJi!Hyn0;b%p7Bfg?ihQRjnYzIY}x`8aArQNUFiJuDc z(5!@U>HahuHF}^S{~|`36|rDyrBm&oQu28X%5N%k`w&!i~dGiO)RzUPScy)fs3UX++~ z*}&oja;fgrZ?|J>AkEOOeig>w+pJgj1HFe0$};E=o!3kQ?0$nk&NaZvsj+exly)ah z60x@o;EDg}2Qurd%y32i9rbHZ#V^}eq?vgq24tc;fI zmONqG?;J+8XXQ+CnN@R(uGxqXKYv>%xaY+_If*9HLnP3+T+!@qCsVwPjyQWPhFM-F zyV|ndto9~9*gjV499?^b3mzk&Q?EZTqVnqM7Di*%4i^^Rk1* zCF{A`=z{a`ZpMP2u_BdeeR|FPYMaHq+d!T67lR#hZ7&OVeTO)%*V+K92?Sy?t_T&a zNq_?tpY{s+>b(en8m~z7j)<6=bR}^nUC5N zCyqC7Hj`jc*Q0j+-bL3fpRP&mTQjL^E;@6vgNRriSI()9OD<-)cy=+ZLz%hg@-W|8tqbpoX@wq0zN1DRCYdWQ!eqqR`E6oqOh7k%x%AK*L3-8W1mD7v}^8S!;NgREp z*|@DXDVUlrC*$Ks<>kl!S9EWkf9Ft)x5{MMowcy@XvL|esf=vqk!XyI>#P@pIP5$$ z85EtZY{|}Sp5N-Y^cl`}lm#!@g}M3rI`i|Lg+)8Juyp*s&fL9ob4=_!f_IbzrsvI_ z=q%i8=NFgePrPN0XXac`l%1_SNQ)%E2t`BQ&+KwA8k6)y_S8u4-M)YCj{0vKjL`Tl zTzP=i>0pBY=xjy7XvwaXcvf=CBg3*BFC9C!v$NAJwRgN7UD1kTc~%5@oaM(xNcSg?>;$W z))H!saaKE*%+8MDQY1yQS9K=DKl|cyRneDO@^?$>>UO9#8c|-Q>KhE=NjivaI>{~v z-W$plm@|7vs$5u}q#c>0fnV1TNGg+r8ZLGTD^*^-{3?@1SsEjEir98qb$*fM1Km-T z0Ks}h2vTxvmWMGB+XhK;c;c9#sxcaH{v_RZOB=+E5yuw7aEm2ffszuO7KUA&(KVYB zoLN7vi^t3rg6!DNX?F5s`=|_~sk5rpnnA8D(TNxStffP~j?7d>!e>&Jfby-XBbS4; zFYcN82gkCWG$*ew!1;bsy(cH{J-r@}t0Iy}jWq{p#QmC~q#ASEtK=X6!V-Lm=TmzO zBZ#x1-_@1qWTQ+dA+;qMr`i$@H#%4Cq@>w#K>UbmzZ}DJic9kI^2KM{y+|Is*eRqA zcDFpvbRc>?ik^B3no;@wB(|0EwzH%sgho>F^kBis7(*13NO_cnlO%IhrwnFHN?kLY z>(^IhW2a_KnYrbJ>nr2T>Pr16#I)^T61z_`jtA}ci`cB=6Sh&r=10xh{Zgza*5f!I zRHrh&S{Qp@V{@h#C$XehRijjSUfyX)CS8l%8)jRT`b?ObPV@E&+pH9dUa_k~-5*M_ zM1G~8?5t%hina!EobQMxHTlWgjzs3~0a8e4*mD96vh3X(^erL=xZA=?5Lb!)^} z7qx9)Y*tFXpF~t_W+jQF!?8`WfvZ>@hxVG}fk~LU;|euwb?J<1ilP6|EcSsl)WAqMVf?Pf-Q7U)&uHYk_&n%q+H?E=bM_1XE zVqXWo>ejdo>V7VzBn~&Sfym^Qw#E4=6~s)Y9lczje73r&eldKTsrtn}Q7xFRL2lqw zy5tJ06Nx260-619*`ShR$x=zPjR-$vSh} zpSHNVw+Rl7lw8g07QrTGv@zid(xq@Xc%SQVN7=Yb{>TNA=(Rj2Ih+lsXhgu&DVuy} z<9lo6Hhsmbutcy#2WlTd^;*TO7_z8%TdQ8@7I*|zJ7#S}q01KvRlTu9E8S9B;9TeO zfuzazOwEx{GOAz}`6}3PKs>5)j5-WC@nv?w&sUuf{$ze=j>M_$uRcO6>^N}@DW__~=uWzJzW zBwtvJoSQtLGa{AFauaRoT)&|kZQ-oWws5ZB{1m*tbh@ZqN~Y{x{!|5YWz)4f@J+RJ zF|Ntk@Pvo-{{pTIj7L;%lU^?&fnYtXbqnhfvGLV%8~Vna;nQp8EBR9fyjLKuq(;kd zv-<*ypG~(ySWqW!uQqq@#451(B>mC2ps0@(>V4E}DZ@J!Z~{L`dS6?@RAu1%BC<4J zE$~rX|2IHs(Ehl<7aW(Vh_ecBI6xm_T$QaHqWZi}{6EWo)8r!=B1Pu(G8VZ&cyP&7 T)OGQ delta 1196 zcmX}qO-vI(6bJADDhLG;Xba`bL8=&Kr7egENCXQ;q?JGuzfM!S!svFl=}tisBZ-Ne zBx*)YykKJV=E(yWj~Wvbjq#=zjd~Do9=zZI{XYUs`sO#?`PzB2pGF`17QR$_9x#*^ zL?a?pz*q-tFGPj13X9<{xD)<{C2$Qkz=9&inqU(wg?*6vhat_2!&;bxJyzP=&BRTSj9D4_?7$Sd7&TxDQ6*BwRvP79pL;hqtSO4Ujf8AZ4!`(){y~HlBm{ zv0JEU+!EXaAHqX$1qQG``;JB>T!S>Q6cr7uhV;f!h%VL->CIzs6rSGfzYmcdwhU>V zClEjO0u^1&OSlVuhF-V|Y280?ffigxV*nQ6=`lD2+u(KB4xhp}{0NZ<=0niJbXqzo zrI+rMu8%gNY+&d{sYcBav@v}z^$2`ATV?-71N(0mIyt4c1`$9|%1d;lv}TOXSclju z^mS07+b%=U*>OiKh@fL_ltF7w%)4yRy~^{hnPVrNOvbd8epA+`OTAnl_txnv-cG&l z4SLjk*3=)$n~H6bvdpx;P|>WPS9CRxiIi!vggJ}(3GlS}KrRiRdw zyQa!#*`yNF(w^p*rDd|@Og@vcg|t|bR`&SXbhmFvfAewO;XkZz`=k1uKhYWPGNMO$ zq^mb_#0YnV!)4=VjR|vBy3(Bp&T~sW`&)WY(!dmq%j^dm7JO}l@cs2Bpc5; zt}8PR&mu7n-_8#jYKEsx3n|JWg*+`c(&Nq}jTy~b8h6E|ErrVG1fv(weXS?-Vr#GN O4;|3UAw#c+68`~Eamuj( diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po index 2977886ce9..445c620dae 100644 --- a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po @@ -1,44 +1,45 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Giovanni Tricarico , 2014 +# Marco Camplese , 2016 # Pierpaolo Baldan , 2011-2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-09-24 13:19+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" -msgstr "" +msgstr "Sorgenti" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" -msgstr "" +msgstr "Crea una sorgente documento" #: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" +msgstr "Sorgenti documento è il mezzo con cui i nuovi documenti alimentano Mayan EDMS, crea almeno una modulo web per poter caricare documenti da un browser." #: apps.py:65 msgid "Created" -msgstr "" +msgstr "Creato" #: apps.py:71 msgid "Thumbnail" @@ -46,11 +47,11 @@ msgstr "Miniatura" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "Appuntamento " +msgstr "Data e ora" #: apps.py:86 models.py:609 msgid "Message" -msgstr "" +msgstr "Messaggio" #: forms.py:29 msgid "Comment" @@ -78,27 +79,27 @@ msgstr "Default" #: links.py:26 msgid "New document" -msgstr "" +msgstr "Nuovo documento" #: links.py:35 msgid "Add new IMAP email" -msgstr "" +msgstr "Aggiungi nuova email IMAP" #: links.py:40 msgid "Add new POP3 email" -msgstr "" +msgstr "Aggiungi nuova Email POP3" #: links.py:45 msgid "Add new staging folder" -msgstr "" +msgstr "Aggiungi una nuova cartella di stage" #: links.py:50 msgid "Add new watch folder" -msgstr "" +msgstr "Aggiungi una nuova cartella monitorata" #: links.py:55 msgid "Add new webform source" -msgstr "" +msgstr "Aggiungi nuova sorgente webform" #: links.py:60 links.py:74 msgid "Delete" @@ -114,11 +115,11 @@ msgstr "Sorgente del documento" #: links.py:80 msgid "Upload new version" -msgstr "" +msgstr "Carica nuova versione" #: links.py:83 msgid "Logs" -msgstr "" +msgstr "Log" #: literals.py:10 literals.py:15 msgid "Always" @@ -134,27 +135,27 @@ msgstr "Chiedi all'utente" #: literals.py:27 models.py:252 msgid "Web form" -msgstr "" +msgstr "Form web" #: literals.py:28 models.py:232 msgid "Staging folder" -msgstr "" +msgstr "Cartella di stage" #: literals.py:29 models.py:597 msgid "Watch folder" -msgstr "" +msgstr "Cartella monitorata" #: literals.py:30 msgid "POP3 email" -msgstr "" +msgstr "Email POP3" #: literals.py:31 models.py:570 models.py:571 msgid "IMAP email" -msgstr "" +msgstr "Email IMAP" #: models.py:48 msgid "Label" -msgstr "etichetta" +msgstr "Etichetta" #: models.py:49 views.py:514 msgid "Enabled" @@ -162,41 +163,39 @@ msgstr "Abilitato" #: models.py:144 models.py:603 msgid "Source" -msgstr "" +msgstr "Sorgente" #: models.py:152 msgid "Interactive source" -msgstr "" +msgstr "Sorgente interattiva" #: models.py:153 msgid "Interactive sources" -msgstr "" +msgstr "Sorgenti interattive" #: models.py:161 models.py:578 msgid "Server side filesystem path." -msgstr "Path del server di filesystem" +msgstr "Path sul filesystem del server" #: models.py:162 models.py:579 msgid "Folder path" -msgstr "" +msgstr "Percorso cartella" #: models.py:165 msgid "Width value to be passed to the converter backend." -msgstr "" -"valore della larghezza da passare per le operazioni di conversione in backend" +msgstr "valore della larghezza da passare per le operazioni di conversione in backend" #: models.py:166 msgid "Preview width" -msgstr "" +msgstr "Larghezza anteprima" #: models.py:170 msgid "Height value to be passed to the converter backend." -msgstr "" -"valore dell'altezza da passare per le operazioni di conversione in backend" +msgstr "valore dell'altezza da passare per le operazioni di conversione in backend" #: models.py:171 msgid "Preview height" -msgstr "" +msgstr "Altezza anteprima" #: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." @@ -204,7 +203,7 @@ msgstr "Se espandere o meno degli archivi compressi." #: models.py:176 models.py:244 models.py:280 msgid "Uncompress" -msgstr "" +msgstr "Decomprimi" #: models.py:181 msgid "Delete the file after is has been successfully uploaded." @@ -212,7 +211,7 @@ msgstr "Cancella il file dopo essere stato caricato" #: models.py:183 msgid "Delete after upload" -msgstr "" +msgstr "Cancella dopo aver caricato" #: models.py:207 #, python-format @@ -222,31 +221,31 @@ msgstr "Impossibile ottenere lista dei file di gestione temporanea: %s" #: models.py:228 #, python-format msgid "Error deleting staging file; %s" -msgstr "" +msgstr "Errore cancellando il file di stage; %s" #: models.py:233 msgid "Staging folders" -msgstr "" +msgstr "Cartelle di stage" #: models.py:253 msgid "Web forms" -msgstr "" +msgstr "Form web" #: models.py:260 models.py:261 msgid "Out of process" -msgstr "" +msgstr "Fuori dal processo" #: models.py:267 msgid "Interval in seconds between checks for new documents." -msgstr "" +msgstr "Intervallo in secondi tra le ricerche dei nuovi documenti." #: models.py:268 msgid "Interval" -msgstr "" +msgstr "Intervallo" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" +msgstr "Assegna un tipo documento ai documenti caricati da questa sorgente." #: models.py:275 msgid "Document type" @@ -254,37 +253,37 @@ msgstr "Tipo documento " #: models.py:279 msgid "Whether to expand or not, compressed archives." -msgstr "" +msgstr "Determina se espandere o no gli archivi compressi." #: models.py:329 msgid "Interval source" -msgstr "" +msgstr "Intervallo sorgente" #: models.py:330 msgid "Interval sources" -msgstr "" +msgstr "Intervallo sorgenti" #: models.py:334 msgid "Host" -msgstr "" +msgstr "Host" #: models.py:335 msgid "SSL" -msgstr "" +msgstr "SSL" #: models.py:337 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" +msgstr "Le scelte tipiche sono 110 per POP3, 995 per POP3 su SSL, 143 per IMAP, 993 per IMAP su SSL." #: models.py:338 msgid "Port" -msgstr "" +msgstr "Porta" #: models.py:340 msgid "Username" -msgstr "" +msgstr "Nome utente" #: models.py:341 msgid "Password" @@ -295,94 +294,95 @@ msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "" +msgstr "Nome degli allegati che possono contenere i nomi dei tipi metadati e le coppie di valori che saranno assegnate al resto degli allegati caricati. Nota: Questo allegato sarà il primo degli allegati." #: models.py:349 msgid "Metadata attachment name" -msgstr "" +msgstr "Nome allegato metadati" #: models.py:353 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" +msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare l'oggetto della mail." #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" -msgstr "" +msgstr "Tipo metadato oggetto" #: models.py:360 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" +msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare il mittente della mail." #: models.py:363 msgid "From metadata type" -msgstr "" +msgstr "Tipo metadato mittente" #: models.py:367 msgid "Store the body of the email as a text document." -msgstr "" +msgstr "Salva il contenuto della mail in un documento di testo" #: models.py:368 msgid "Store email body" -msgstr "" +msgstr "Salva il contenuto della mail" #: models.py:377 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" +msgstr "Il tipo metadato \"oggetto\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" #: models.py:391 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" +msgstr "Il tipo metadato \"mittente\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" #: models.py:441 #, python-format msgid "attachment-%i" -msgstr "" +msgstr "allegato-%i" #: models.py:480 msgid "Email source" -msgstr "" +msgstr "Email sorgente" #: models.py:481 msgid "Email sources" -msgstr "" +msgstr "Email sorgenti" #: models.py:488 msgid "Timeout" -msgstr "" +msgstr "Timeout" #: models.py:525 models.py:526 msgid "POP email" -msgstr "" +msgstr "Email POP" #: models.py:534 msgid "IMAP Mailbox from which to check for messages." -msgstr "" +msgstr "Casella di posta IMAP dove controllare i messaggi." #: models.py:535 msgid "Mailbox" -msgstr "" +msgstr "Casella" #: models.py:598 msgid "Watch folders" -msgstr "" +msgstr "Cartelle monitorate" #: models.py:615 msgid "Log entry" -msgstr "" +msgstr "Elementi log" #: models.py:616 msgid "Log entries" -msgstr "" +msgstr "Elementi log" #: permissions.py:7 msgid "Sources setup" @@ -406,58 +406,61 @@ msgstr "Visualizza sorgenti documento esistente" #: permissions.py:21 msgid "Delete staging files" -msgstr "" +msgstr "Cancella i file temporanei" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" -msgstr "" +msgstr "Errore processando la sorgente: %s" #: templates/sources/upload_multiform_subtemplate.html:35 msgid "Clear" -msgstr "" +msgstr "Pulisci" #: views.py:64 #, python-format msgid "Log entries for source: %s" -msgstr "" +msgstr "Log per la sorgente: %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Nessuna fonte interattiva dei documenti è stata definita o non ne sono state attivate." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" -msgstr "" +msgstr "Proprietà documento" #: views.py:163 msgid "Files in staging path" -msgstr "" +msgstr "File nel percorso di stage" #: views.py:262 msgid "New document queued for uploaded and will be available shortly." -msgstr "" +msgstr "Il nuovo documento pronto in coda per il carico e sarà disponibile a breve." #: views.py:302 #, python-format msgid "Upload a local document from source: %s" -msgstr "" +msgstr "Carica un documento locale dalla sorgente: %s" #: views.py:327 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." -msgstr "" +msgstr "Il documento \"%s\" è bloccato per il caricamento di nuove versioni." #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." -msgstr "" +msgid "" +"New document version queued for uploaded and will be available shortly." +msgstr "La nuova versione del documento è in coda per il caricamento e sarà disponibile a breve." #: views.py:419 #, python-format msgid "Upload a new version from source: %s" -msgstr "" +msgstr "Carica la nuova versione dalla sorgente: %s" #: views.py:460 #, python-format @@ -466,13 +469,14 @@ msgstr "Crea nuovo tipo di sorgente:%s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" -msgstr "" +msgstr "Cancellare la sorgente: %s?" #: views.py:499 #, python-format msgid "Edit source: %s" -msgstr "" +msgstr "Modifica sorgente: %s" #: views.py:510 msgid "Type" @@ -480,19 +484,19 @@ msgstr "Tipo" #: widgets.py:26 msgid "Staging file page image" -msgstr "" +msgstr "Immagine pagina file di stage" #: wizards.py:38 msgid "Step 1 of 3: Select document type" -msgstr "" +msgstr "Passo 1 di 3: Seleziona il tipo documento" #: wizards.py:39 msgid "Step 2 of 3: Enter document metadata" -msgstr "" +msgstr "Passo 2 di 3: Inserisci i metadati del documento" #: wizards.py:40 msgid "Step 3 of 3: Select tags" -msgstr "" +msgstr "Passo 3 di 3: Seleziona i tag" #: wizards.py:66 msgid "Next step" @@ -500,7 +504,7 @@ msgstr "Prossimo passo " #: wizards.py:68 msgid "Document upload wizard" -msgstr "" +msgstr "Procedura guidata carico documenti" #~ msgid "Staging file delete successfully." #~ msgstr "Staging file delete successfully." @@ -584,11 +588,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.mo index 6d2d801723fe7fea2e13c11e37e59477dc4831e3..7eec5fe13c130cce2d20027598b0a4ee6e48ac83 100644 GIT binary patch delta 1905 zcmZXUTWl0n7=TY{m)-8RTq?H;wFjtBpj&&PT*@VEYt`1a5~ygvD6`w+cHP~X&CG0T zW8x-07+;Km2^!)hgpfddBE0a@L=!?xh>7tQMU9uhn^-!|2qQOF*21Nu#kQjfv6Y8j9(>y&DOH{nwF6O6%M;X(K}jKX~prPjeg zxE?+QTj29h?!OM};XC2_62x9bU1qYD8&{zO@ey1BW87_o%@7}ID_jjbpcov0^4>^z zKMfPCv#=L>Fb*$5N#F{+2VRG`P&Z)$|LQv?64{SX9Q_W(!JkkbT*9IO#-Kd6I%F#p z2iu@jWG9rO9e`5F6vTvj8gePaAPE(r*n0ui<6phPL>!-nZSV~!hUee_`~XS@alG6I zTc9}H&ya*euoHT)2cC!G=yNznJ8wa0$vKQlKyz?8yap@dOg?48r8ZH&W|)K$$iuJ$ z7NFce3&rq-kXN8oc5GJ&59(|DJT)1 zg@f=M#Fn}ZWpEI3sUr-M(8)&XFAnnI z#tf7mz67OYFGDeK9*V(BPz+s$E8%-k0{9q;Gct_oDJO?LfQGyJahj zPP7B9NES=b|H?)-lBgWGZK!-Y^CFSAqEeCj!%b<6M&+PxM@1e$<&)iwN|ogQAfKjG zR)iMF`M)FGKzckcQZ8xD-Li{?R7ph6i5$8uD8;LOa#AsAm;87{`eaB=PHNlC=;5){ zVQq?5uAowd8Ee*4DK8(KsGV48=}9M3E*jg{o>O)+Cb(F;FFNQN%Qut354ATE4>^TN zXE9xoLf>rR50@N$kF zT#IasnzVk_af`u#p7EP`{=9sLubEZ6Fsy#?nd!T*CbOt)+Hji0WUK?XCq@H#iTU(YLoQfTd zr?AKiR^AV8#r}wlS*4N{d{KYoe#y$`jeR=t=&I^#Mpw&kbh+A);E_aI S!xJVgO(+*~#trg`5B~ua%{s&Y delta 1044 zcmYk)O=uHA6u|MRCf$6;eyC9!yU{jSY&4s+Sc9LnsKpRtDW&*9SVJhKA<-my5<)H( zJa}+WPilpt1x4`Gi^m=mPkQsBqCHs;B6`t_{}&?ku`|EPZg$?h*?G{r9IAipblg=$ zl-5H_w<$G@H#X1_*^NrI<2iKUG#)`44P3w-xP)O`K{tMBJ^zmK{x95$e{lr697=6c zs;<%u{M@*NTxyPPGhRVSa1-Ul+sLJ!&?WI1dhioE@f%9wA1(j1o;!Fb3lAc>RS2cf z9yG|W4lJ4`2kINka^iLzxmly96znXrxloW~Blhts%(boZ>PyYmC$RBoX$Iw z`l0iUuC^a_W(wB}72R!Q^_&sb_l>B2ZH(%$%hV@bYu@-!EOEfJhEmqBKI9Ht@nkGv znF%XpS$pGzCv8`2vB`>Esut~9xsoy`%9jh3S{bW$WwxxJy7R%bU7ERO&lFN-shG>8 zwcB$+*F1yzmFKEH<(<%r-rst`mvv;y, 2016 # Lucas Weel , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-09 15:57+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,8 +25,9 @@ msgid "Sources" msgstr "Bronnen" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" -msgstr "" +msgstr "Maak een documentbron aan" #: apps.py:55 msgid "" @@ -37,11 +38,11 @@ msgstr "" #: apps.py:65 msgid "Created" -msgstr "" +msgstr "Aangemaakt" #: apps.py:71 msgid "Thumbnail" -msgstr "" +msgstr "Thumbnail" #: apps.py:81 models.py:606 msgid "Date time" @@ -49,7 +50,7 @@ msgstr "Datum en tijd" #: apps.py:86 models.py:609 msgid "Message" -msgstr "" +msgstr "Bericht" #: forms.py:29 msgid "Comment" @@ -61,8 +62,7 @@ msgstr "Uitpakken gecomprimeerde bestanden" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Upload een gecomprimeerd archief van bestanden als individuele documenten" +msgstr "Upload een gecomprimeerd archief van bestanden als individuele documenten" #: forms.py:67 views.py:432 msgid "Staging file" @@ -78,11 +78,11 @@ msgstr "Verstekwaarde" #: links.py:26 msgid "New document" -msgstr "" +msgstr "Nieuw document" #: links.py:35 msgid "Add new IMAP email" -msgstr "" +msgstr "Voeg nieuwe IMAP-email toe." #: links.py:40 msgid "Add new POP3 email" @@ -114,11 +114,11 @@ msgstr "Documentbronnen" #: links.py:80 msgid "Upload new version" -msgstr "" +msgstr "Nieuwe versie uploaden" #: links.py:83 msgid "Logs" -msgstr "" +msgstr "Logs" #: literals.py:10 literals.py:15 msgid "Always" @@ -134,7 +134,7 @@ msgstr "Vraag gebruiker" #: literals.py:27 models.py:252 msgid "Web form" -msgstr "" +msgstr "Webformulier" #: literals.py:28 models.py:232 msgid "Staging folder" @@ -154,7 +154,7 @@ msgstr "IMAP e-mail" #: models.py:48 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:49 views.py:514 msgid "Enabled" @@ -162,15 +162,15 @@ msgstr "Ingeschakeld" #: models.py:144 models.py:603 msgid "Source" -msgstr "" +msgstr "BronB" #: models.py:152 msgid "Interactive source" -msgstr "" +msgstr "Interactieve bro" #: models.py:153 msgid "Interactive sources" -msgstr "" +msgstr "Interactieve bronnen" #: models.py:161 models.py:578 msgid "Server side filesystem path." @@ -178,7 +178,7 @@ msgstr "pad naar filesysteem server" #: models.py:162 models.py:579 msgid "Folder path" -msgstr "" +msgstr "Mappad" #: models.py:165 msgid "Width value to be passed to the converter backend." @@ -202,7 +202,7 @@ msgstr "Keuze om te expanderen of uitpakken van archief. (TODO: review this)" #: models.py:176 models.py:244 models.py:280 msgid "Uncompress" -msgstr "" +msgstr "Uitpakken" #: models.py:181 msgid "Delete the file after is has been successfully uploaded." @@ -215,9 +215,7 @@ msgstr "" #: models.py:207 #, python-format msgid "Unable get list of staging files: %s" -msgstr "" -"Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. " -"Foutmelding: %s" +msgstr "Het is niet mogelijk om een lijst met tijdelijke bestanden aan te maken. Foutmelding: %s" #: models.py:228 #, python-format @@ -246,8 +244,7 @@ msgstr "" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Wijs een documentsoort toe voor documenten die worden geüpload van deze bron." +msgstr "Wijs een documentsoort toe voor documenten die worden geüpload van deze bron." #: models.py:275 msgid "Document type" @@ -309,6 +306,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -379,11 +377,11 @@ msgstr "" #: models.py:615 msgid "Log entry" -msgstr "" +msgstr "Loginvoer" #: models.py:616 msgid "Log entries" -msgstr "" +msgstr "Loginvoer" #: permissions.py:7 msgid "Sources setup" @@ -411,6 +409,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -425,11 +424,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -452,7 +452,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,6 +468,7 @@ msgstr "Aanmaken van nieuw documentbron van type: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -477,7 +479,7 @@ msgstr "" #: views.py:510 msgid "Type" -msgstr "" +msgstr "Type" #: widgets.py:26 msgid "Staging file page image" @@ -585,11 +587,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.mo index f31f12873e4ea79431875b2427ebade0d9c0a737..873139386b92ff7c38d949be17a80bfbeae6c5e4 100644 GIT binary patch literal 1855 zcmZ9MO>7%Q6vqcz3N_`cP$(48AV^7sHeTClRc+!zNgYu&4p!q3353MNJ8{Nd?<_O3 z-LBPBL@%7UAXG(y1L6P@2NVvdqNl{-(lZAR++a}W>v7B9-{dvFr`86PETHpqLQicwC4wkz01bc6n;0Ve`7zld)s-MhYi+EHiF(YFd)(b?)*+ z27JPfc0+cNbe!r*c2Ta2G;&}h9Yozq$qrA9PNZ>4+VL8h8B1vrX%X^F^@RypEmV%x zVzCyQ@*D33I1v6E)3(34Jt!ihbl%Kyzc(YCC)k@nVNp(56#d{*|-pn@Sft8~m7 zMt9)VyA*ow>@5YnE^-m`+Qs^E;fhSOabDfFRp`B$wyoFH0WUP(ZhFJ&!-Pi#4tUuw zo%Kp3uUz4NIXH9H^Jjb?iry7@RgtTMdVYoUN|j({<~1LquqdqannuJn5>A_duj-DI zUA`(zt1r4bvt7mKvgz!A{6@Qn%%)qqcOK{Cb}HJ^Yf8}zctc0ZZt%$s=aQgU%(86S zk#V&yuhD^`(N-9xO|eJ0dNS6n$Q#~ zp5?6#VXSo3mF9wXZmdTh*QN1laZ86PZU_9_nsWQG20V!hjVLuD@)oq|*?`B%P_)&` zEH-JUIvH21CH^}1IkqQC{`qQ|pFTbOIai&bpOdug&y{?B{rYg7bo?otDd9|cYPP`M z6`Acz*2tac@O1EF?oiTLbp^YusRe}TvlW-^Y@0rhb%uV)6F#_QcDBR8rVh|e*wv=5 z76J>L5WJg+OQXc6x8C_ECFlS3T z%lA#OCETptn@ODWuF+lgmaxbO?sXUC=~LgW=4(nKamsld@KB>X(!f7NCc?ojzSnZG nyjQVuk15estgeugOAV@w?9pj`iBhQ!Re1LX&(Ln2-J9%RL9N$t delta 622 zcmXYuyHCPU6vi)5Kmo0yLQFI%n~RAh_y|T97ZOnkF!@Nlgo+K&652|fFdA2v#>9Vs z*}=GxI2fEv)WPUrOdK5C++F-m=}FK1-LI$jJZ|rXJE8VxRJdfYarhLx3!jGXda%Hr z!2tLI4uJ1q5c~q^yB}8vy^IY)iy*}(K{}TJhrk(702kc&a$mRE8a93eGGG|oboDkE zf!+tHa2=!qM<69S0UuEO9Hc^7yo`bckiI(rslkS;FF?w7, 2012-2013 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-03-23 13:44+0000\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -115,7 +115,7 @@ msgstr "" #: links.py:80 msgid "Upload new version" -msgstr "" +msgstr "Prześlij nową wersję" #: links.py:83 msgid "Logs" @@ -307,6 +307,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -409,6 +410,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -423,13 +425,14 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" -msgstr "" +msgstr "Właściwości dokumentu" #: views.py:163 msgid "Files in staging path" @@ -450,7 +453,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -465,6 +469,7 @@ msgstr "Utwórz nowe typ źródło:%s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -483,23 +488,23 @@ msgstr "" #: wizards.py:38 msgid "Step 1 of 3: Select document type" -msgstr "" +msgstr "Krok 1 z 3: Wybierz typ dokumentu" #: wizards.py:39 msgid "Step 2 of 3: Enter document metadata" -msgstr "" +msgstr "Krok 2 z 3: Wprowadź metadane dokumentu" #: wizards.py:40 msgid "Step 3 of 3: Select tags" -msgstr "" +msgstr "Krok 3 z 3: Wybierz tagi" #: wizards.py:66 msgid "Next step" -msgstr "" +msgstr "Następny krok" #: wizards.py:68 msgid "Document upload wizard" -msgstr "" +msgstr "Kreator przesyłania dokumentu" #~ msgid "Staging file delete successfully." #~ msgstr "Staging file delete successfully." @@ -583,11 +588,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.mo index e6bbe3c179eaf75992d20323973790d825f53e04..3c42f755c6e87a0fae304047054af958c92728e1 100644 GIT binary patch delta 44 zcmdldyia&TG%L5Ep{|j!f`O5hsoCT-)}@mr*rK?767$ka6Vp?z6bd#Mu=z0q03jI+ A`Tzg` delta 45 zcmdldyia&TG%L4(iLQ~kf}x3(q3Pr_)}=f?iFxUziRr0U3I!#Tx!9sN7qR&;0{}C@ B4Q2oU diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po index e1a9e84d6d..f51f73f634 100644 --- a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po @@ -1,25 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 -# Manuela Silva , 2015 +# Manuela Silva , 2015 # Vítor Figueiró , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -27,6 +26,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -63,9 +63,7 @@ msgstr "Expandir ficheiros comprimidos" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Enviar os ficheiros contidos num ficheiro comprimido como documentos " -"individuais" +msgstr "Enviar os ficheiros contidos num ficheiro comprimido como documentos individuais" #: forms.py:67 views.py:432 msgid "Staging file" @@ -309,6 +307,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -411,6 +410,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -425,11 +425,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -452,7 +453,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,6 +469,7 @@ msgstr "Criar nova fonte do tipo: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -585,11 +588,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.mo index 1bb9207c610bb47c29af31b64f15b2c3a6a6b5c8..56c4810ca733ef12b4aa9b645f5b55d541e8d855 100644 GIT binary patch literal 9719 zcmcJUZH!#kS;vndfo4sUl9UpfHaTo#Vz-{z7spOAPMoam-NfLvH}=|TL)&m>=I+i- zX6_x|duLyg4}3sXTLCIUN=ZvqCA_pmX^>E<6eLt$RuNyQgj9hFQcx+P>I?7z1VTgz ze*bgsy)$cXTBzvNp84PN{+#FSJkQ;~z4^Ll4bK(IJ1D>PgU0+Cc=(6;;rYl7#(WU` zD0nmYjS^o6-$wn$DP!IW9spHufj{7djA@Y^7N=5>BF{!RRdp0|N_fVYF9{{$#{9tX8f25Oy6 zkS)zGgW}&Oz$4)2K#lt<*aZIpR{fTDXI6d#vBo##9#x;_NzJkNsS>t{gi z^EvSC;47f`_hnG~yatNyua)>MQ2hTF@K3<~EUI4Hq&}N@JTQO znQC4u+y4<1{r?V%-hDqB_MHMX?k12Un%hBC%p3;S!C9~kJ_kzwUI!)TTVa;yy#v&| zyFk%(6cnFNf?D@+5E4xc{v@~!-U^D0mmR1*-pfkfqJ5pw9ml@OJR;K+&yDb&fZK>c0)t zzITERun9K7_k;7`FM=BXMevn<#{4;$QvVQ#7oYyE#G5&!>}CcO9m}BlGf;f|7zhdG zxJK(25jca2>qGJOT-JbyYGtcuQ`TZd%K7I)lU;YLZUEct8 z?tcYY%G?Su;>QtC^gjwpFWv`goo7JF<(I$~_!4*>_;qj&{5B}Qypu&V{t$>tnieQ| zodp-b%b?`_94Pu<0%bpcRJOkgYTvJv{r?GSpBvd+>)rxN5AFoT#|HTO;1Z~HUI(S$ z`*1Q#;9I~)!N)+gzX(1Fz5c(^ z^>2btQNR9OfxlNk$?X|X{Q3p33w{K=6Z|JodT=w9W$+I0FgO5ZkDmmk2Y(8RzpsHz zF<%EI$EgEBUhe=!?<^>JJOmyB9|i9Np8@X$zW{2Te+Kt~nj<@Xgz_*&cZc{T+p3!fv>J+_h_IW{X~AyJ=@Mh?2rjYuN(_tA=u#S?G3c5^dTu%L^+u8o0P$ zH?5psIdWA~Ubyu*S!elvH_Gafo37~eu4#x;fP_ira9G*TxL$C1D(#C$|6@plZ%zRmK{1_b@FnF zyqcuGFxsYT6`!i!t~srRi+B*3)6tq6^$V~c6{-rXTPvchq_k?gW~*{+&AzxF<<($` zX^n<*CC=D$xot;LV)Id_6Xp5ZsNdhNnbDk_7zjtO`Ge+kCF|(}K^@xtwDVNOy}(Ne zPY2$JvOG?coW-hH!z>*}SrLn}sx2&kZG&|gOo4D@YU9Li_F@!ZlFPXtvKFyDB3*Xd zF0qTJmoFZ+ol;hXMTB{Q&^DvC6t+?oO=!c8Hay`q5MGNf56a+dJ4-iFq=^&A62`Qb z^ETtBUDh>=-MH{S^+L5CsH?1qk!Dd=P&VwU(3OZPR?9LBtSb!=MMPhz+$1(|2t#uIJ{g zYe#)^HeI)PflR79@$Od~8%W)?t+(8i=QhjXd|>HeT~WAB&wI_pVfW|w@vZ?*PV^N$ zSJ=(C-xqre7bm&r^)As^Er2N?Z^%YELl!Ce)5WfYC1he)7yxuV&hPNuklj(B^_ zdudkmx3%PWvC5l#Z|iJfd_^=g=TekotW{V0P!5T%dAHb&*5U+ur7&p{P4q;;K5HkV z-gd;f;Jl16>SBydbAIF*UD~JNqATyYi7Rgf3))Qa94nmItYpzf%#nNE)avSH+{HXE zUOa0q;tM)*X1nE&)Zgefwz;3eIcf)r4D&+7N{s$8zALxWy8Nbt{xrXj`{bkclN>=? zWT=bH<8HW^@@?cZ@ZN{caGM9n%PQA$RE&n^Vig|9l}%QdydK$j!0)&{#1Qo`Uu8vf z!OqDJjvQxKXC^K+3BS*ca6Vv=jLX; zDNC6T+xzZ2TGwnU!J@8*?cCi*e6xJI290a=pr*Ox&B?Au+|_Y#PSw5S?<{|xT}rB} z%v|#E8Z4_?_nB4qGh{j$tC+TvKcpDO~&n)rdNVv-Rq z>-4xTxkukn7w;;mVu26 zct=U#s&RAo*!d%^*?ZnI%QJP>!T=-?7@?ndphnPvIl!bF>KAuY;JBg3vCjwMO#{6 zCQEad#c4J(P!!sTx`TYCUoJQ^ES@-dVdl`(@|oquF?Z&gvs0(I)rl$^va^e2QIBHHSQgc)23@t)>yVD-*VIaXl(~LmiGVk6*<|Re z`2+LEZFqg)U}8_$xkJaNF!dqnP*l2_ZknT~w&Mo0PIsf}J>5&P^P8#NdC_j{yuj6y z;(0S?2?NWeDn&=adnJQ$2PrzjfB{$Q2HHGOEG#EMvbT4q+{{EL(;S=PCq#KcOhfKB zG1Y0|Y6SNRy0`N}7Q2Z-e!!a8uhf9sd%&HfXxXep+4@NBj=UfrX<}*?i2T~4*b{xt zF~j-mQ|APV8?h5BMFZ)M!gvwu_iLK7@qlI}mdHM=e+uffcu9F6jI)gwC6&|=(XBWZ z0+G}k3<&)aq-gaXRI`(AYKX1eVXG|PthjE5AkE@dr_a$$6p&SiDX|~3g9EGv?7iy( z*DiFq?8+$K;K*Zkr{pr_l4;dnFD|k9`(MhIWzjnPl50{vO0b+ZO|@{?R)-j;pXjFY zPnf#%f+YndxYT^Fhvjk=tK_$Lz95%~iy9KYcOAme>1y7R`|QEay&7#U&6glELKBsQEE*6cppFx25zM&GY(p$fR;W>)H(?il^I=f6z9EDmNutM8J=G;Rxt@j_Ue4~M?HpRSt=(K;HIaVG8Rdpvt4#2DJO2d1yVX-Jq)xp>Pv^-hXY z!0|2zjtofM$dF-lh`xDoNwg)Esyb9pl^%-u#mQcp*EJ1pdJ~{AkG5SIJa}7 zq~jo+>#x?htE%Mn3T#VVtDU3>7ctyuwj1ZeG}(E1BkD`oZ4$_cwRQJ-w}-ESQS}Dj z^NK6k&gZvcoSn2CjzZ!AAA{2Zh--EA-j=o#WgTTqs72$|z1xAj$;%UAbNDsW4g}{pL z$R9=7aG3Ia*%FZv&Uj6z_N%=g-vV?OAWNu0Q%RN5%y>I3eGE}bvKEV7o_FGz@6Ppo zLdUC{OOI>LC<90JQQVyu_>%9}E;}cq1L6UiA$GS4S6tM2oxO4H#RY^@Zi>V|`I^OHe@J^sX)Coeq0|06kT9T-V|0RGL_OGCYo~WavT|wv|yoiJy)EFA1OZ#5Fp9l z`e3yRgvOjBx>z9GAP!Vqrg&JCg^vp3nTIQ$d%o%d!#OmoNXXfK=|%mG>2HSG`$0k8kuy=Eq0h&sDbWc0nTGF<}&IwtiW6hp#$TXfiGbZ zp1>SDoBI76GK85yjq@ey{vWZ(B#fD*kxj=xScMCz8v?8OpQX&teT8 zK_|Y4TG(f(;9W+Idlj{SYpMS0xP$9IaX0gu3TB~gMsNV1$5nVE)qe;1nEQNb;!H-> z4)Rg=6{8|ijt^ip>L|CNBDo*6fJ3PJ!l($vF`LLq5jEDzuO?2l3Yp0j@N09r~~tH)9-wIE8Pe z8S?{bXQRYhoBZljVhoeTA^L_P08^(QK6w9p7* z7fzsZ;R+7mHPnNc(m6VjD_#mD|<=PCE;a8Za z_kWHCn>2TkyfK-qMj>+J2Hc2`Vh`#M&?zJrO*OTKs_5xH4Zc+Nq#C1$!HqGVefF{Iq#nK#!hc!C=|8-Wu99e8yboXkJ*b^r|m#?mA#+s&KR2*iP-OQ zO6`13neBDd+YcP|%k;pY4Xi4lo^-Tx(HA>rIwIqd`1G&NC)4ag-r)3^g3amn+oFyt zf3+{T)f=d;3)J}h)qa0g=RRL|WIQ?=jSc&nLt~LTZ_pp8_4%uO!GJdys0##ayQ|pQ z9qWt4$70^@*k~vojoDXR{m#9i;loEmhk0aV?CG7|_AghjJy^WS=9iRMN6F3XrkHl{ z&6Mu?iI*+vh2?lb-eVs;AsmuRdVkU)^9!OFwrtg`&qo-f+a*AB)E$ a(U|EtI@}+ccCI~{W+&FYI(?+4d4x$fQo 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 def5055b7f..043157c177 100644 --- a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po @@ -1,24 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Aline Freitas , 2016 # Emerson Soares , 2011 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -26,15 +26,16 @@ msgid "Sources" msgstr "Fontes" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" -msgstr "" +msgstr "Criar uma nova fonte de documentos" #: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" +msgstr "Fontes de documentos são a forma como os novos documentos são alimentados ao Mayan EDMS, crie pelo menos uma fonte de formulário da web para poder carregar documentos a partir de um navegador." #: apps.py:65 msgid "Created" @@ -50,7 +51,7 @@ msgstr "hora, data" #: apps.py:86 models.py:609 msgid "Message" -msgstr "" +msgstr "Mensagem" #: forms.py:29 msgid "Comment" @@ -62,8 +63,7 @@ msgstr "Expandir arquivos compactados" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Upload de um arquivo compactado contendo arquivos como documentos individuais" +msgstr "Upload de um arquivo compactado contendo arquivos como documentos individuais" #: forms.py:67 views.py:432 msgid "Staging file" @@ -79,7 +79,7 @@ msgstr "Padrão" #: links.py:26 msgid "New document" -msgstr "" +msgstr "Novo documento" #: links.py:35 msgid "Add new IMAP email" @@ -119,7 +119,7 @@ msgstr "Upload de uma nova versão" #: links.py:83 msgid "Logs" -msgstr "" +msgstr "Logs" #: literals.py:10 literals.py:15 msgid "Always" @@ -221,11 +221,11 @@ msgstr "Unable get list of staging files: %s" #: models.py:228 #, python-format msgid "Error deleting staging file; %s" -msgstr "" +msgstr "Error removendo arquivo de teste; %s" #: models.py:233 msgid "Staging folders" -msgstr "" +msgstr "Pastas de teste" #: models.py:253 msgid "Web forms" @@ -245,8 +245,7 @@ msgstr "intervalo" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Atribuir um tipo de documento para documentos enviados a partir desta fonte." +msgstr "Atribuir um tipo de documento para documentos enviados a partir desta fonte." #: models.py:275 msgid "Document type" @@ -276,9 +275,7 @@ msgstr "SSL" msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." -msgstr "" -"Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, " -"993 para IMAP sobre SSL." +msgstr "Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." #: models.py:338 msgid "Port" @@ -297,58 +294,59 @@ msgid "" "Name of the attachment that will contains the metadata type names and value " "pairs to be assigned to the rest of the downloaded attachments. Note: This " "attachment has to be the first attachment." -msgstr "" +msgstr "Nome do anexo que contém os nomes de tipo de metadados e os pares de valores a serem atribuídos ao restante dos anexos transferidos. Nota: Este anexo tem de ser o primeiro anexo." #: models.py:349 msgid "Metadata attachment name" -msgstr "" +msgstr "Nome do metadado anexado" #: models.py:353 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." -msgstr "" +msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o assunto do e-mail." #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" -msgstr "" +msgstr "Tipo de metadado do assunto" #: models.py:360 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." -msgstr "" +msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o valor \"de\" do e-mail." #: models.py:363 msgid "From metadata type" -msgstr "" +msgstr "Tipo de documento do remetente" #: models.py:367 msgid "Store the body of the email as a text document." -msgstr "" +msgstr "Armazenar o corpo do e-mail como um documento de texto." #: models.py:368 msgid "Store email body" -msgstr "" +msgstr "Armazenar o corpo do e-mail" #: models.py:377 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" +msgstr "Tipo de metadado do assunto \"%(metadata_type)s\" não é válido para o documento do tipo: %(document_type)s" #: models.py:391 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" -msgstr "" +msgstr "Tipo de metadados do campo \"de\" \"%(metadata_type)s\" não é válido para o tipo de documento: %(document_type)s" #: models.py:441 #, python-format msgid "attachment-%i" -msgstr "" +msgstr "anexo-%i" #: models.py:480 msgid "Email source" @@ -368,7 +366,7 @@ msgstr "E-mail POP3" #: models.py:534 msgid "IMAP Mailbox from which to check for messages." -msgstr "" +msgstr "Pasta de email IMAP de onde checar por mensagens." #: models.py:535 msgid "Mailbox" @@ -380,7 +378,7 @@ msgstr "Pastas Temporárias" #: models.py:615 msgid "Log entry" -msgstr "" +msgstr "Entrada de registro" #: models.py:616 msgid "Log entries" @@ -408,33 +406,33 @@ msgstr "Ver fontes de documentos existentes" #: permissions.py:21 msgid "Delete staging files" -msgstr "" +msgstr "Apagar arquivos temporários" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" -msgstr "" +msgstr "Erro processando fonte: %s" #: templates/sources/upload_multiform_subtemplate.html:35 msgid "Clear" -msgstr "" +msgstr "Limpar" #: views.py:64 #, python-format msgid "Log entries for source: %s" -msgstr "" +msgstr "Registrar entradas para fonte: %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" -"Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. " -"Criar uma antes de prosseguir." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Nenhuma fonte interativa de documentos fora definida ou nenhum foi ativada. Criar uma antes de prosseguir." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" -msgstr "" +msgstr "Propriedades do documento" #: views.py:163 msgid "Files in staging path" @@ -452,13 +450,12 @@ msgstr "Carregar um documento no local de origem:%s " #: views.py:327 #, python-format msgid "Document \"%s\" is blocked from uploading new versions." -msgstr "" +msgstr "Documento \"%s\" está bloqueado para carregar novas versões." #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." -msgstr "" -"Nova versão do documento na fila para carregados e estará disponível em " -"breve." +msgid "" +"New document version queued for uploaded and will be available shortly." +msgstr "Nova versão do documento na fila para carregados e estará disponível em breve." #: views.py:419 #, python-format @@ -472,13 +469,14 @@ msgstr "Criar nova fonte do tipo: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" -msgstr "" +msgstr "Apagar a fonte: %s?" #: views.py:499 #, python-format msgid "Edit source: %s" -msgstr "" +msgstr "Editar fonte: %s" #: views.py:510 msgid "Type" @@ -490,15 +488,15 @@ msgstr "Imagem da página do arquivo temporário" #: wizards.py:38 msgid "Step 1 of 3: Select document type" -msgstr "" +msgstr "Passo 1 de 3: Selecione o tipo de documento" #: wizards.py:39 msgid "Step 2 of 3: Enter document metadata" -msgstr "" +msgstr "Passo 2 de 3: Insira metadados do documento" #: wizards.py:40 msgid "Step 3 of 3: Select tags" -msgstr "" +msgstr "Passo 3 de 3: Selecione etiquetas" #: wizards.py:66 msgid "Next step" @@ -506,7 +504,7 @@ msgstr "Próximo passo" #: wizards.py:68 msgid "Document upload wizard" -msgstr "" +msgstr "Assistente de upload de documentos" #~ msgid "Staging file delete successfully." #~ msgstr "Staging file delete successfully." @@ -590,11 +588,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.mo index 1e73170a0803d7006de91e31eacd8c7bd3204199..81a74e86cc76fd3d671c42e11f654ebbd8574e93 100644 GIT binary patch delta 878 zcmZ9}O=uHA6u|Mx$EM9!8`IWmZR1KsED|wETho9DQiVXoA}M}cWLnmAAzy^;K|ymU z6a`Ua5iA}R1VO0e;zgtoF^Yl*kJ_7OMK5}&_?KBtL61@s81ZsrtYZM5VJ|+%9^Ak^_y))D3kK2W`};nM^4$;)<0xiv5@T4ws8UUJ zor#|Zw{QsWqI~dp`}s@E@Vku${@nIA%7%VEmc;vzKU9Y>f-@-ZPa&6@I7|MnQl#$QpG4B{7Xs$sLpg*02vB;Vx|94t$4lw3{gFzaodEe&G~u z;XGz|DT&|2<^d*8nHDU!Z&03fBa@oPMdQxqOUsposuNL!MNC8(ACniE?GIVQM+{Zj5`t77@O6OHaly!S!-yOuiCF3+PbVd_Z_QIvRdB* jUQh6(V=pdQPJ6}u(Q`hsSgYEd2kjMAwCk;WugCKT9|LSx delta 699 zcmX}pIZH!95Ww-xX*{FxHXaerCg4jv(+Gl~BA!GA3web{AVd&T$3oF2)uLjdjg26J zpkN~+iV8M%cKQLtPAl>HPY4+@`+Em@GdufJ{OC!%dhFYZs3NP$ce07Rw6G9kR;8Rc zjxLIVkFt{^Y`}Yz z9lv2ceqb+_vV9MRQ5sl6X)umbIDvI|fc(@Ii!^eNQs)y3@DD4fuL`JAge@qe>cI{i z!Z5C(H1v$k_=T-lPgOakVzPvkBXpDUEr|+}8mXdkpDPQ&*fSx=nh6=Jgfvk}N|)41 z1yfUH>1#PI2?mmy1QSn9LdKe{Pps3<`2{l`UDaOOi~h9@oQ3V3mfW^>f1t}}w1Wr-hkPr`a}%Sw-#M#Ko!73xSmf?7Vn)xBSyqeQ Kb4}}C*WW+V!c6G^ 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 42d5a0e036..3ce1f3146d 100644 --- a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Abalaru Paul , 2013 @@ -10,23 +10,22 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:11+0000\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" +"PO-Revision-Date: 2016-04-17 13:16+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -43,11 +42,11 @@ msgstr "" #: apps.py:71 msgid "Thumbnail" -msgstr "" +msgstr "Iconiță" #: apps.py:81 models.py:606 msgid "Date time" -msgstr "" +msgstr "Data și ora" #: apps.py:86 models.py:609 msgid "Message" @@ -63,9 +62,7 @@ msgstr "Dezarhivare fișiere comprimate" #: forms.py:46 msgid "Upload a compressed file's contained files as individual documents" -msgstr "" -"Încărcați fișiere de fișier comprimat care sunt incluse ca documente " -"individuale" +msgstr "Încărcați fișiere de fișier comprimat care sunt incluse ca documente individuale" #: forms.py:67 views.py:432 msgid "Staging file" @@ -105,7 +102,7 @@ msgstr "" #: links.py:60 links.py:74 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:64 msgid "Edit" @@ -157,7 +154,7 @@ msgstr "" #: models.py:48 msgid "Label" -msgstr "" +msgstr "Etichetă" #: models.py:49 views.py:514 msgid "Enabled" @@ -309,6 +306,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -411,6 +409,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -425,11 +424,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -452,7 +452,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -467,6 +468,7 @@ msgstr "Creați o nouă sursă de tipul:% s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -477,7 +479,7 @@ msgstr "" #: views.py:510 msgid "Type" -msgstr "" +msgstr "Tip" #: widgets.py:26 msgid "Staging file page image" @@ -585,11 +587,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.mo index a24ef50a050b7992e060b6d95159a77775e29168..187874981df3eb97cf957e90cb9c18dae53461a2 100644 GIT binary patch literal 7565 zcmbuDYm8l0700)LfCDI^fC$P)ZK1YzUVTueotDy0q0%V>Go|qZF=ytUnYr{nhI7vC zvRxzUSLcCT=Yq9Tz|aS82-$A+%5(G05@Yx?%eZ|3Tm@baZUMgph9H0DyWBnn{wRHa1(e>Of}aDAg4cq-0+)mDrv2A4 z>6N@M1P_5L!7ISugV%t61}_3X1g{1!WD%beqn?TvK29*8>K*^WE%fN@h#o&`^ z{}kBD`#G=${5yCR_%Bd)UQQ=d84E527l87^w?OIh!7qXjfebPGK+X3ID7&5mCI1R| zIrus#x#Qr2;Lp?dg(&0EECn^+?V$8*06z_G0_BGXzze~xpyF2o<=1_n=KCHfx#vJP zAE@!i!Owtifj5D_1HT4-04k0*AS}C;lbD;e7Cs1~O z0Dc*i5j>h3LG>>JoqjOG`)W{rFMyrkA&@`wTW(ju$#+1F{|81d0RIg>3Em7j#E&<) zi4W(%CE(lOYVfkp8gnanH>h>*1|@e8l%21q{b#_h^Zpx9aeW_@o<#_K74*QH!6(40 zKVi(z!0UMbC8X#C-vJf(D?d-Hz=fdf%7YugN5N&_uR-bg5R@P0Lt5F>1}+5GgX#~! z_29Qb`R^C$_xHdI?^iHL`d5HCa3kpA3X1PlLh9sm`eJ0XMSzZaDM$3WTlD5!Njnc^Fuc=$Fb9{vH8eIJ0D?^2v4`RhUXb1gUz z97*wM@K)ZBfp>#{1+~swajM4qpzPlcir;&{2f+OxOEiB2cY_zQn6>&2x_E-B1Mh?V z;58U0zCQ>OVzV#B=fTaqPk{3K#S|~aqZd@(?*IwAs})N?U0RRUT)h9qnRI~`OcytR06uxpcs?He;N@IQy<$RP?`)b;oI;;+lVlg&l$R#Q}qQcqD+Arb_oz-Hz2TyeyPkvAfgJ69-P$#>i& zH#!N&6c@{$?PFdsYlljOv4F246vINZp1WCJ%4dn-m=}$jyZqe9Xk@o}`LbIb3mx;^ z0G29`4wZ`A2m|ti-q2RRm~Az8mBPqu=v~u?A9MM^()Pp!iPIT2H0lp+l?QEsxxEoT zY)!=d0`g`<5pCX3l-uT~Yo4PkO!}~^_MpIqKK5kAplDnqa#Ilk=9&@hR;@!ca_*{r+99FP^d@GTO+HKKUQZ=nwnv1*A2XXu7*t z^@npsLLehcMZe*TpM<(bLVX?dSq)K8T>UI@Z8d%O^x4FBJT0z15~lGIRO%}Qk?9Nk zZ8;1bb@8mdj_0xjxxas->GuN`W5ZlF$;faAt0*`Uw3>d$oD{+;;_awBX8Ie5SATIF zYII8TB;3PUzi5@wyE>Q3zFY85KqGs_-HCPdvfzfhduqYM{ zP@qcX$P6gSHakDs5uYT^k;Ba2m@c6U^5$YS9n5A|W=ZvGPnsY%hvIwWxp29Rv6QP^ zF`L_#%a*--&D5~2LcGJXVXjn6@}PlN={yZ0W-~RS=uuqnSGfG`n5*1vrjOa;MU=4N z#LZjMie#z}q1iI(lb(SplAk2IqgT|pBrg~mCCf;^^GUM8Mm?F%Z#?6 zF5B7Ou`JWkk?CA)+dI3KF3YqpX>Ug`b02({&zt1hJ8k=tu8yS(+qqgcdSR3q2)tsL z_o7nJ1v~PkR!U=Th;PM_GQ}w~;CqEGdtaF%%BFD3XcUcgwY80pkGDn|nH%=Ex8kL? zpcHyRt`xKtw0mUyY$0sRr%Kv_a@&HI-VMDy_4RhNwzsT>O>&7?+GQh(N84B)daa;x zc>(#=y?J1LW_evsGYj8=s4(Z1^C*yM#Mbq(A zWp{iA(X(_iP@RmL^V=eeo{9KaWhY~f^E4TssqC#hVbONNR-Semj>XfwS02*~6Q1SU zR6NmY;^*D;>URd4_{Yq5rZ)Ekt2r5;(!!>hhBYS3YEm_)VY3FE)lw>Z<5ROt`M<}@ zetbRQDq`JO7CLR>?>oOwFso($oz6i-;1yP>;OxO?a>%5*SYdp+>Wdk#E|vuLbUfMU z@e?@mWYfrxw?5lEs`5CKpNda^)J%lzC5SW~pK`&3QnP&r51(xcH7lQkRv%Z+W>Owm z)(@k(Psc|pd#m)`jSt}}ZadIW4z0YefQyTB%-(7t+eAENiNi@3fiq(LB3s$xIO`@* zh>lB<)r2^ohZ%HF_}HXgriuNG*-7wsGh|Xv=$7e@$as)sgb|p2B!lm#k-!2x{IbY2 z+h+WF2yIFhv^Cn{NHBWOG5d zk19uGLRu>n2ntE%2}~1pkFGZHs|nRj{DLe|rGy70Fl|bico5nUDrSS=3FTbk&9a1W z{Uq^1au}~1s653yXrpRQISmRdMGZZv`-vW6n$^)kI-jZ%7=4;9p}sphq%b-6ZD@ov)kOns8dUKP1% z{?+0lN*q>L=}foU!#t+DNmKT_itjkcsJc(n6ilNvR|MwFU^x%rr262EX-6aFG&{K> zlN1{^4b_q<9I!trhn2l^m78e>62qFS5>9Fbrzv!4sy6;MIzJuttBC|sZfUsU_5#%1 zS=rT`KM2U+>e+;%3j3*tCVtJ;Bn)zSc3wIC)T*bdgrSB~fa#UDU2(D0SGj!Vvt56Zc`#NQ)PB3>9VUs{e*Wy&y zJd6;zk2v?vQ00yrhr}V8O6-0-fiW*L!6}M6+nosD_At48vc3^$v#6a(wP`1ZR6^+z zpQuna9Z8xu3Ac$?osZnnGU0_r@e#H{UWa>Frq9z9W=B0bvFa)Ru^Y>un0T2Epa zfumyA_X*tOD!2~F`o2qCBmH=AsmGxjZ=UCDkyNRw4cZNHmn?KO)R7j$Pr8jv+fy?Q zC-gs2uF_R?B(6%d;NksPrzJ>BWxvYInS^>S5!nP&cfe0~+;>DoI88m$2PJGe$-<;i zj&P@T*Hu5Iqi8l^=uB$%5!D+O1 z5h0Nv9z2Pph)dk#K|(Tdd65v_2>ti-qi`~- zTY&Si5f7n0zk^}sH?Qev%0FWYM-kp+T#2Kx2gl$^Y{BcODg1`|-Y?XxsVy<49_vv9 z*oB?NG?Nf7moSJtORl zzi{x+%6QbwY0&^eR1HwGsF@lpoT$pdJHJ;$tLf6BC%c-;7W+l_&B(`s4F$Pu*6DI( zQ{miDYua@zHttHENp6Je z3XONwyX!rcec_0NDzoyZ(w1eB>GC{MQ+tV#``#n3-@E1AG~QY7ruV?R?cE*>O`b-g c0S!;yS0|-=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" +"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:37 links.py:31 models.py:145 views.py:521 msgid "Sources" msgstr "Источники" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" -msgstr "" +msgstr "Создать источник документов" #: apps.py:55 msgid "" "Document sources are the way in which new documents are feed to Mayan EDMS, " "create at least a web form source to be able to upload documents from a " "browser." -msgstr "" +msgstr "Источники документов - это способы получения Mayan EDMS новых документов. Как минимум, чтобы можно было загружать документы из браузера, создайте веб-форму." #: apps.py:65 msgid "Created" -msgstr "" +msgstr "Создано" #: apps.py:71 msgid "Thumbnail" -msgstr "" +msgstr "Миниатюра" #: apps.py:81 models.py:606 msgid "Date time" @@ -50,7 +49,7 @@ msgstr "Дата и время" #: apps.py:86 models.py:609 msgid "Message" -msgstr "" +msgstr "Сообщение" #: forms.py:29 msgid "Comment" @@ -78,7 +77,7 @@ msgstr "Умолчание" #: links.py:26 msgid "New document" -msgstr "" +msgstr "Новый документ" #: links.py:35 msgid "Add new IMAP email" @@ -102,7 +101,7 @@ msgstr "" #: links.py:60 links.py:74 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:64 msgid "Edit" @@ -114,11 +113,11 @@ msgstr "Источники документов" #: links.py:80 msgid "Upload new version" -msgstr "" +msgstr "Загрузить новую версию" #: links.py:83 msgid "Logs" -msgstr "" +msgstr "Журналы" #: literals.py:10 literals.py:15 msgid "Always" @@ -134,15 +133,15 @@ msgstr "Спросить пользователя" #: literals.py:27 models.py:252 msgid "Web form" -msgstr "" +msgstr "Веб-форма" #: literals.py:28 models.py:232 msgid "Staging folder" -msgstr "" +msgstr "Промежуточная папка" #: literals.py:29 models.py:597 msgid "Watch folder" -msgstr "" +msgstr "Наблюдаемая папка" #: literals.py:30 msgid "POP3 email" @@ -154,7 +153,7 @@ msgstr "почтовый ящик IMAP" #: models.py:48 msgid "Label" -msgstr "" +msgstr "Надпись" #: models.py:49 views.py:514 msgid "Enabled" @@ -162,15 +161,15 @@ msgstr "Доступно" #: models.py:144 models.py:603 msgid "Source" -msgstr "" +msgstr "Источник" #: models.py:152 msgid "Interactive source" -msgstr "" +msgstr "Интерактивный источник" #: models.py:153 msgid "Interactive sources" -msgstr "" +msgstr "Интерактивные источники" #: models.py:161 models.py:578 msgid "Server side filesystem path." @@ -178,7 +177,7 @@ msgstr "Путь на сервере" #: models.py:162 models.py:579 msgid "Folder path" -msgstr "" +msgstr "Путь к папке" #: models.py:165 msgid "Width value to be passed to the converter backend." @@ -186,7 +185,7 @@ msgstr "Ширина после обработки." #: models.py:166 msgid "Preview width" -msgstr "" +msgstr "Ширина предпросмотра" #: models.py:170 msgid "Height value to be passed to the converter backend." @@ -194,7 +193,7 @@ msgstr "Высота после обработки." #: models.py:171 msgid "Preview height" -msgstr "" +msgstr "Высота предпросмотра" #: models.py:175 models.py:243 msgid "Whether to expand or not compressed archives." @@ -202,7 +201,7 @@ msgstr "Независимо от того распакованы или нет #: models.py:176 models.py:244 models.py:280 msgid "Uncompress" -msgstr "" +msgstr "Распаковать" #: models.py:181 msgid "Delete the file after is has been successfully uploaded." @@ -210,7 +209,7 @@ msgstr "Удалить файл после загрузки." #: models.py:183 msgid "Delete after upload" -msgstr "" +msgstr "Удалить после загрузки" #: models.py:207 #, python-format @@ -220,15 +219,15 @@ msgstr "Не удалось получить список промежуточн #: models.py:228 #, python-format msgid "Error deleting staging file; %s" -msgstr "" +msgstr "Ошибка удаления промежуточного файла; %s" #: models.py:233 msgid "Staging folders" -msgstr "" +msgstr "Промежуточные папки" #: models.py:253 msgid "Web forms" -msgstr "" +msgstr "Веб-формы" #: models.py:260 models.py:261 msgid "Out of process" @@ -236,16 +235,15 @@ msgstr "" #: models.py:267 msgid "Interval in seconds between checks for new documents." -msgstr "" +msgstr "Временной интервал проверки на наличие новых документов." #: models.py:268 msgid "Interval" -msgstr "" +msgstr "Интервал" #: models.py:273 msgid "Assign a document type to documents uploaded from this source." -msgstr "" -"Назначить тип документов для документов, загружаемых из этого источника." +msgstr "Назначить тип документов для документов, загружаемых из этого источника." #: models.py:275 msgid "Document type" @@ -265,7 +263,7 @@ msgstr "" #: models.py:334 msgid "Host" -msgstr "" +msgstr "Хост" #: models.py:335 msgid "SSL" @@ -279,15 +277,15 @@ msgstr "" #: models.py:338 msgid "Port" -msgstr "" +msgstr "Порт" #: models.py:340 msgid "Username" -msgstr "" +msgstr "Имя пользователя" #: models.py:341 msgid "Password" -msgstr "" +msgstr "Пароль" #: models.py:345 msgid "" @@ -307,6 +305,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -357,7 +356,7 @@ msgstr "" #: models.py:488 msgid "Timeout" -msgstr "" +msgstr "Таймаут" #: models.py:525 models.py:526 msgid "POP email" @@ -365,7 +364,7 @@ msgstr "POP email" #: models.py:534 msgid "IMAP Mailbox from which to check for messages." -msgstr "" +msgstr "IMAP ящик в котором проверять сообщения." #: models.py:535 msgid "Mailbox" @@ -377,11 +376,11 @@ msgstr "" #: models.py:615 msgid "Log entry" -msgstr "" +msgstr "Запись журнала" #: models.py:616 msgid "Log entries" -msgstr "" +msgstr "Записи журнала" #: permissions.py:7 msgid "Sources setup" @@ -409,27 +408,29 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" -msgstr "" +msgstr "Ошибка обработки источника: %s" #: templates/sources/upload_multiform_subtemplate.html:35 msgid "Clear" -msgstr "" +msgstr "Очистить" #: views.py:64 #, python-format msgid "Log entries for source: %s" -msgstr "" +msgstr "Записи журнала для источника: %s" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." -msgstr "" +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." +msgstr "Интерактивные источники документов не были определены или включены, создайте один для продолжения." #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" -msgstr "" +msgstr "Свойства документа" #: views.py:163 msgid "Files in staging path" @@ -450,13 +451,14 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 #, python-format msgid "Upload a new version from source: %s" -msgstr "" +msgstr "Загрузка новой версии из источника %s" #: views.py:460 #, python-format @@ -465,6 +467,7 @@ msgstr "Создать новый источник типа: %s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -475,7 +478,7 @@ msgstr "" #: views.py:510 msgid "Type" -msgstr "" +msgstr "Тип" #: widgets.py:26 msgid "Staging file page image" @@ -483,15 +486,15 @@ msgstr "" #: wizards.py:38 msgid "Step 1 of 3: Select document type" -msgstr "" +msgstr "Шаг 1 из 3: Выбор типа документа" #: wizards.py:39 msgid "Step 2 of 3: Enter document metadata" -msgstr "" +msgstr "Шаг 2 из 3: Заполните метаданные документа" #: wizards.py:40 msgid "Step 3 of 3: Select tags" -msgstr "" +msgstr "Шаг 3 из 3%: выберите метки" #: wizards.py:66 msgid "Next step" @@ -499,7 +502,7 @@ msgstr "Далее" #: wizards.py:68 msgid "Document upload wizard" -msgstr "" +msgstr "Мастер загрузки документов" #~ msgid "Staging file delete successfully." #~ msgstr "Staging file delete successfully." @@ -583,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.mo index 417b883d0c38d79892135877a3df6c22494e0e4f..150b9feeda2f38c3f6a7279f4e89d3ad2a28b477 100644 GIT binary patch delta 226 zcmeBW-NagdPl#nI0}!wRu?!Hq05Lld=KwJXbO14k-wDLLKs*tML2Bm%F((i&1>!4= z3=HdmGzSp3FhSJy0%RZj2hxjxG*B4>kYZp4Vklr@V4avL$Lf=ql$tZKEt1>N zP}j&}}`K$;)OuLaUTX)pjX8JH(F%1vAv!EIooYhe~ E0A`>MQ2+n{ delta 48 zcmaFB^MGeVI5W3_iLQ~kf}x3(q3Pr#=FR**iFxUziRr0U3T2t`VSbZESfV%Avpi%3 E0Ba);MF0Q* 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 a7addf7b6e..252393531c 100644 --- a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Trung Phan Minh , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -25,6 +24,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -305,6 +305,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -407,6 +408,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -421,11 +423,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -448,7 +451,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -463,6 +467,7 @@ msgstr "" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -581,11 +586,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.mo index 3b8aa0ab545f53192101cce7faef21d430d670dd..0f42b2b457a9cbb4ea87d8e3aa0c12ea3a9052bf 100644 GIT binary patch delta 48 zcmdljuv=imM;2~FLtP_d1p^~1Q?to`Sk_M7$r{D)lbDxYnwXwyrBIa-@9ei(h)t6T E0FO@(q5uE@ delta 48 zcmdljuv=imM;2}a6I~;71w#`nL(|EBSl06UB<7`;CZ?xaDO6>|JNr#u!5Y0;m`#HT E0E$8nmH+?% diff --git a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po index be9c379564..fe5203d4a6 100644 --- a/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:56-0400\n" "PO-Revision-Date: 2016-03-21 21:11+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 links.py:31 models.py:145 views.py:521 @@ -26,6 +25,7 @@ msgid "Sources" msgstr "" #: apps.py:53 +#| msgid "Create new document sources" msgid "Create a document source" msgstr "" @@ -306,6 +306,7 @@ msgid "" msgstr "" #: models.py:356 +#| msgid "Current metadata" msgid "Subject metadata type" msgstr "" @@ -408,6 +409,7 @@ msgstr "" #: tasks.py:31 #, python-format +#| msgid "Error creating source; %s" msgid "Error processing source: %s" msgstr "" @@ -422,11 +424,12 @@ msgstr "" #: views.py:129 wizards.py:49 msgid "" -"No interactive document sources have been defined or none have been enabled, " -"create one before proceeding." +"No interactive document sources have been defined or none have been enabled," +" create one before proceeding." msgstr "" #: views.py:155 views.py:173 +#| msgid "Document sources" msgid "Document properties" msgstr "" @@ -449,7 +452,8 @@ msgid "Document \"%s\" is blocked from uploading new versions." msgstr "" #: views.py:381 -msgid "New document version queued for uploaded and will be available shortly." +msgid "" +"New document version queued for uploaded and will be available shortly." msgstr "" #: views.py:419 @@ -464,6 +468,7 @@ msgstr "新建数据源类型:%s" #: views.py:480 #, python-format +#| msgid "Delete document sources" msgid "Delete the source: %s?" msgstr "" @@ -582,11 +587,9 @@ msgstr "" #~ msgstr "Error deleting source transformation; %(error)s" #~ msgid "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgstr "" -#~ "Are you sure you wish to delete source transformation \"%(transformation)s" -#~ "\"" +#~ "Are you sure you wish to delete source transformation \"%(transformation)s\"" #~ msgid "Source transformation created successfully" #~ msgstr "Source transformation created successfully" diff --git a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.mo index c9fda9caf22dc82875142db1690fa09738f7669a..672822fbeed066ed3f76c90e014a049f160b22bf 100644 GIT binary patch delta 42 ycmX@ha+YPnDsDqVT_a-!10yR_^NCv*PEKZw;_*q$OD|1KPqk7=ESkKBaUuXKaSnO_ delta 42 ycmX@ha+YPnDsBT4T_bY^LlY}Q(}`Ob^7tg?rI#kAr&=i_7EKOijGnxgaRLA<=MHcH diff --git a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po index d694afce6d..a3f0cc2abf 100644 --- a/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/ar/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mohammed ALDOUB , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.mo index c73ad0578fce7c4d2f7848cba7c95df9403425a5..26274c7e27c549c87e7c8307e48a9eb83434930f 100644 GIT binary patch delta 42 ycmZo_$|(kJg{bOHbqAPtfL delta 42 ycmZo7|M3sa6U}>60TEqbDC=bOZnsM-7Mo diff --git a/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po index 18955fe21e..0f4cea307c 100644 --- a/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/bg/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Iliya Georgiev , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.mo index 67b658baac215df9476e8dcbc1f4c70f9b114911..d88811ab0a51555d9c7c0176aa78f43846f7bc7b 100644 GIT binary patch delta 45 zcmcb|a*t)gDsDqVT_a-!10yR_^NCycO>Sn4;`d3+OD|1KPqk7=Dvoz@oP39|2>@cz B577Vs delta 45 zcmcb|a*t)gDsBT4T_bY^LlY}Q(}`R6@%tp^rI#kAr&=i_6~{X{PA+1Mo_v?F5ddK1 B55xcf diff --git a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po index 068f6616ca..eb470c7b54 100644 --- a/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/bs_BA/LC_MESSAGES/django.po @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # www.ping.ba , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.mo index 1a937e5d34710fcdd537b1213ceb9c277055ae5e..34f06b0ae1be529bee09eeb53dd45fa72d06d81f 100644 GIT binary patch delta 42 ycmey&{F!;eDsDqVT_a-!10yR_^NCv*PEKZw;_*q$OD|1KPqk7=Nu0cg(HsCaunt@R delta 42 ycmey&{F!;eDsBT4T_bY^LlY}Q(}`Ob^7tg?rI#kAr&=kbBu)-xjGnxg(F_1K?haA_ diff --git a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po index 1b0c17ed4c..ec47a54150 100644 --- a/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/da/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mads L. Nielsen , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.mo index 760577daff137c0522d1299491d5a27581291852..2656da7e0b49bf3916b524549dcda893c55cb9da 100644 GIT binary patch delta 48 zcmcc5eV==S4l}o*p{|j!f`O5hsrh7c<^z-2S)%xT67$ka6Vp?z6jD;-U0gROu+%dG E09DTpH2?qr delta 48 zcmcc5eV==S4l}obiLQ~kf}x3(q3L9E<^%jbiFxUziRr0U3Mr}aF0PZmF-LDsWT|5W E0AooHCjbBd diff --git a/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po index 1e2d1eaf2e..0e1eb1f3f8 100644 --- a/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/de_DE/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Berny , 2015 # Mathias Behrle , 2014 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/en/LC_MESSAGES/django.mo index e49bff386e1445d32a32c6b19e6f5dd7ca61bdc3..f1fa87dd04bc6a5a99a76fe46258c1c1988302f2 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|`NZju0Z`NjM*si- delta 21 ccmeyx^owai54VAdu93Ndp^25D>BQ-e0Z|VJN&o-= diff --git a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po index d1806b8449..56b621f2bb 100644 --- a/mayan/apps/statistics/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/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: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-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/statistics/locale/es/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/es/LC_MESSAGES/django.mo index f8d370288374980a2653137dfcb0b77a9d3e7ea5..fa9d1583beb9e1dd587619183b0aa4881e0818e2 100644 GIT binary patch delta 45 zcmeC+>EPL*!^~}HsB2`bU|?irYChSVdC}x&%uzf(iFxUziRr0U3aQ1L?O9GT0stOk B4VC}^ delta 45 zcmeC+>EPL*!^~}9qHAQXU}$1xXgb-Pc@d9KVqSV_VtT5TLTd5k8_dz09av5<0st5# B4U7N) diff --git a/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po index 776fb23018..01e6577cec 100644 --- a/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Lory977 , 2015 # Roberto Rosario, 2014 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:23+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.mo index d0a4ad04e7d4b699301776fd790cbc954e9aa178..d65858ad2734d71bb7b2ed2f450880229ff79317 100644 GIT binary patch delta 44 zcmX@bc8YC710%Pgp{|j!f`O5hsrlq?#zm8@n4)-m67$ka6Vp?z6w(qWPiEQ<04u@{ A6951J delta 44 zcmX@bc8YC710%PAiLQ~kf}x3(q3Psq#zj0niFxUziRr0U3TcUxb(o?jPhr{y04@^_ A2><{9 diff --git a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po index 13809bcce9..267d8a8785 100644 --- a/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Mehdi Amani , 2014 # Mohammad Dashtizadeh , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/fr/LC_MESSAGES/django.mo index 7be0f683f3bf3f0db2046f38f0fd3104f6fad090..2245b130366a85cc8c87225094546da90e366fec 100644 GIT binary patch delta 45 zcmX@XbAo4s4l}o*p{|j!f`O5hsrh7c<|C6iSfY4*67$ka6Vp?z6w-<|C$c, 2012 # Thierry Schott , 2016 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Thierry Schott \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/hu/LC_MESSAGES/django.mo index b599eac864265f658edf5fd051ca57b409916814..291819e27cdeafd639617089869951d5a35e0e03 100644 GIT binary patch delta 42 ycmeyt{DXPIDsDqVT_a-!10yR_^NCxROip8r;_*q$OD|1KPqk9WD4o2Y(GmbTPY#Iy delta 42 ycmeyt{DXPIDsBT4T_bY^LlY}Q(}`P`@c1O=rI#kAr&=jwlunLdjGlae(E, 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.mo index 1e4b479054cc3d1eefdba072d08ff1fa2ae6b520..a4c41cc528b2b016b2cd108f39e1ebece05be092 100644 GIT binary patch delta 42 ycmZ3)vWR8E5pF|6T_a-!10yR_^NHt|PHtq3;_*q$OD|1KPqk9WOqqO((E|V`ZVpKR delta 42 ycmZ3)vWR8E5pDw$T_bY^LlY}Q(~0Mo^7tg?rI#kAr&=jwrc5qojGla((H#IKMh-s! diff --git a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po index d05a9c42a3..1cf0504186 100644 --- a/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Sehat , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/it/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/it/LC_MESSAGES/django.mo index 676c7ebfe8fb18583d98a19dd3c26613a21ca579..6676cb110e956c7dcca73366fefa9e96383637b0 100644 GIT binary patch delta 389 zcmZ9_Jxjwt7zglcn~0

7YfB`Zx%6XlWXy7(@hJ0_~vHK^@AGp79_rrAa|t+yp0u zLpK*kR|QAEg*b=^&f?++@E@oSF890tJuml~KPy~5oZe*^d&@GWGsey}#wOqeoPjrx z;3J%dFK`Zi!L)x8hXto#5jxO-2cvulXOWL#0bY&rEll@4=^(v4<6#Vb!gSI1y_5OK z`#9`tG(r$QElmKr8_@JHC$u> delta 332 zcmZqUxx+nSOZ`el28Me~3=FIc3=ADC3=F(Lx(`T;0_izGS_VjO0@6Z2`aF=92hxv# zG)O%YkWc~A96(wSNb3S=E+B0Wq}hSA7mx<&4+7FWKsp~tO91H_AT0)@r?LVm5MvEc zfDK3=2GSsdPHpyNe9XvgV4`beu3%_lWoSCtoLP>`Sl7r> zUS6g`NKs~TA`s^**rb=h*p^0--@s>q{-#I@eQK7gbu_Uv&1Zc%%V^(AKoYLIH Q, 2016 +# Marco Camplese , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-09-24 10:01+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:28 permissions.py:7 @@ -39,17 +39,17 @@ msgstr "Vista " #: links.py:19 msgid "Namespace details" -msgstr "Dettagli spazio nome " +msgstr "Dettagli spazio dei nomi " #: links.py:23 msgid "Namespace list" -msgstr "Lista spazio nome " +msgstr "Lista spazio dei nomi " #. Translators: 'Slug' refers to the URL valid ID of the statistic #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug #: models.py:14 msgid "Slug" -msgstr "lumaca " +msgstr "Titolo URL (Slug)" #: models.py:16 msgid "Date time" @@ -77,12 +77,12 @@ msgstr "Nessun dato ancora disponibile " #: views.py:17 msgid "Statistics namespaces" -msgstr "Statistiche spazio nome " +msgstr "Statistiche spazio dei nomi " #: views.py:33 #, python-format msgid "Namespace details for: %s" -msgstr "Dettagli spazio nome per: %s" +msgstr "Dettagli spazio dei nomi per: %s" #: views.py:53 #, python-format @@ -97,4 +97,4 @@ msgstr "Statistica \"%s\" non trovata." #: views.py:77 #, python-format msgid "Queue statistic \"%s\" to be updated?" -msgstr "Coda statistica \"%s\" da aggiornare? " +msgstr "Mettere in coda le statistiche \"%s\" da aggiornare? " diff --git a/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/nl_NL/LC_MESSAGES/django.mo index 10bcc3bd5f58f9c28504f09c8a782005132c0c24..a93b512aaa36ddd53c95ce55f64179a1e02d9b55 100644 GIT binary patch literal 1047 zcmZ9K&2G~`5XToOo1#ihC{0=p9MHy|I-A(Lk$0W6 z5+@!2i30~NJOW%f@Ce+vBHn>J2WH*0sTgVevv>bHvooIG*C#(RvPXo)4_d!mc;iRg5niQmb;kQe$1 z#x6TO(Zzp9yhHpzbo*b4H;CVeXNf;X`#*^;{-4qMU!v1ZP%;Y5&XGI2Nbcge8jj4} z+u7+u6mjTyaZi`S^@ObnE8GLY$`n~cq-gpgL`bButf3(y0f>Q+iD)MX2WZ*L9CKvb zX!67w*wa}6Gln(84n}!`tZ9X%!!m^F88Zz^ThinzDvx&z+m$#h9$=2-hHYiKi=pKk z5#PnkNUZ{>ivyvcwpMSJwz01>%j+hV5nst;!&^Fl($U(Jw`YQe*~3S_Z_WLH5`h{Q_O zgU5KdVnz$k;*=Ux4t4s3POCTt~pzUCm2o;$*nC)2G4?J%;9G0!i zBlmFMo%S+qL?(6SrLJs_QEEIoR0Q-?@}{xr&6VmK_1d^Wm9k%2)ykrxOCR*9dW-wk z>nB30B?vnrGiaB0TI+mqtaC~CFyl29>PV_MfW@}7$9E5)$W_`(@=PRrU1zDGwSMtw zma9u}__{o+U}_mEb4w-m9AoN=GH#mk6j0Gbb))e_Q3s2OiXleYj7M^4qX|2**A^mU yuSD3fne2{+i~gm8fj%){sW=`Y?2YD2qNQj9ts+z>cG(K{WVbiM@t9$cRQ~`j7!m*g delta 238 zcmbQvv7V*=o)F7a1|VPtVi_Pd0b*7l_5orLNC09^AWj5gE+EbZ;`xjW3}rx?7l_4} zAmS=O8Ys*Fq`+nYDF|>$EJ;-;$;?e<2rfx1$t*6(OfF^!D9X=DO)k;(oV=aUmD|8X z*T`JK(8S8nbTT`WEVqHNu92aFk)f4=>12H-asHtEq|~C4e1)L=;>4oN{K-X3$^1Tv rdFiEz>8Vx, 2016 # Lucas Weel , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-11-09 16:41+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:28 permissions.py:7 @@ -27,15 +27,15 @@ msgstr "Statistiek" #. statistic will be updated #: apps.py:43 msgid "Schedule" -msgstr "" +msgstr "Schema" #: links.py:11 msgid "Queue" -msgstr "" +msgstr "Wachtrij" #: links.py:15 msgid "View" -msgstr "" +msgstr "Bekijk" #: links.py:19 msgid "Namespace details" @@ -43,7 +43,7 @@ msgstr "" #: links.py:23 msgid "Namespace list" -msgstr "" +msgstr "Namespacelijst" #. Translators: 'Slug' refers to the URL valid ID of the statistic #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug @@ -57,7 +57,7 @@ msgstr "Datum en tijd" #: models.py:18 msgid "Data" -msgstr "" +msgstr "Gegevens" #: models.py:31 msgid "Statistics result" @@ -69,11 +69,11 @@ msgstr "" #: permissions.py:10 msgid "View statistics" -msgstr "" +msgstr "Bekijk statistieken" #: templates/statistics/backends/chartjs/line.html:19 msgid "No data available yet" -msgstr "" +msgstr "Nog geen gegevens beschikbaar" #: views.py:17 msgid "Statistics namespaces" @@ -87,12 +87,12 @@ msgstr "" #: views.py:53 #, python-format msgid "Results for: %s" -msgstr "" +msgstr "Resultaten voor: %s" #: views.py:60 views.py:85 #, python-format msgid "Statistic \"%s\" not found." -msgstr "" +msgstr "Statistiek \"%s\" niet gevonden" #: views.py:77 #, python-format diff --git a/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/pl/LC_MESSAGES/django.mo index 87f884787d935637483ebac3a1f81969294a4e9e..067786d37ae43ec661a21d2ec433c995df8b3574 100644 GIT binary patch delta 208 zcmdnUvz}+dminiR3=H>}7#LU>7#NNK2_7JQ5=hGc>1#k*0Z4xa(qcebgq4AT8%S#d zX#pT@4y4V2v!a!PjvnS(YMs7nxT_a-!10yR_^U3DSPRu2#*^}#-t0%LuMDh3}=B1Y= Qrl(pd6y$7}7#LU>7#NNL2_7JQ8c53k=^H>=0Z4xZ(qcebjFo|b8%XN{ zX#pT@38c+|v=@-(1JX@U`H4UpsD)uJkd_D1i-0s2kUj*YrGfNWAk7b?U$O#?1sU`c zC?Eu+x!4#Ogn_i|W>3b)jNAq$x<=*-h9*{qrjyN?omi7IQ, 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Wojciech Warczakowski \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Last-Translator: Wojtek Warczakowski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:24 links.py:28 permissions.py:7 msgid "Statistics" diff --git a/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/pt/LC_MESSAGES/django.mo index 240d3bb680c480127953ca3dcbb939dfbe7c2fef..45e6e7b5e4f5833a863964d4eb98da069c0f723e 100644 GIT binary patch delta 190 zcmX@eagJj`OX@C028Q!M%*w#P(8bKaAOoZ)0BIH=y%tCd1L;jbnhi)FgNmO8(n>)7 zB_PcUq`v}bNg&M()FcI@Wq~wMh`|C#3j%4IjW10YxeX07a4bIKAO(sL6tb0*JbisA7|%u6p#Oi#5^C@7iyjVXF^9P, 2015 +# Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Manuela Silva \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Last-Translator: Manuela Silva \n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.mo index 4c2ede101222a54f23c94c90c3d7b351779bf010..f84fc839f9f7d285c434f04144090818aa623646 100644 GIT binary patch literal 1576 zcmZXTOK%)S5XT2%AZ&nyM3HzZ6{84SX!aGr(HIACVoO%MiDNIma6s*u+TD(3r-$wy zKXT!~og3oBfro@RMB;!DH$W>PAtb~n2oe`Q09OwDYj*A3wOi``bywH3r{>}LnNI_Z z3z#oqevkPw=K3R8Fn$JSz+b>8!C%2=!9T(0!N0+0!2iID;F(8*;4$zr_zL(ccow_` zo(A6s#a{x7y#_1b$Dr7M0*e2y!Smn`py>Ywil0Bg9}(*zC~-c+{=rS%HGd6nwT=#7Q2{(8L*#c-2%wfH@z*I1zD)u_Jk zS{W;k*)2v&lE{APa{fIV@ zZ_zE-G0iPobzi6RG}rS!k7~8Oy}hcJAiBf*;-F@YQ&t;W>r2fcCw*5-M-FSb|6qBu zHeYG2wN}Qj)2P-fH%#U^L&gU=O830)Yk8`4wn%YLS;v0qz4mH&ZLB9jJ8Z+1EH;VG zx)EL5(f%m+h{{-%jkK^T4OflryNI&9Ji4XkA`Q1oa~WNy#{6Oh4V@TQ_BJu~j75v1 zozosW^eDynCS7Cogmg+wxw5Kk@pZJT!mltkLE8_$GSnM<0TTqFM7!K%g9p2;9ihrZ zN!xU->MJ|m5lizA9!U4AVf#xEa%_qBIWD|P)Zsr+`aR0w(A(e}1P;~`Jgx4)OJZ!W za>8pS*)bk6!?#RSbxOreosQKt{QuwIg6c}Gx-pa3pG2HbmHY*P)T|%BA4z<(h5gieVg3XlVmefu9Tb_wJWY& z)itA-DW8-an>w~zuIje2X?fy`M@mpnNEQV`KN=mY!3NzC>vES4Rr}1-3G+gS=Fxdi zMC_RQOfgdDiiJHcDfI;%us)YV*5P!>A~ws=2&7`v=d}4VBlDQd7xM4gEb3FLnESUx Fk}uJ#R-FI< diff --git a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po index ac157ef3b0..f0f3d14b3b 100644 --- a/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/pt_BR/LC_MESSAGES/django.po @@ -1,22 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Aline Freitas , 2016 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:24 links.py:28 permissions.py:7 @@ -27,62 +27,62 @@ msgstr "Estatísticas" #. statistic will be updated #: apps.py:43 msgid "Schedule" -msgstr "" +msgstr "Programação" #: links.py:11 msgid "Queue" -msgstr "" +msgstr "Programar" #: links.py:15 msgid "View" -msgstr "" +msgstr "Visualizar" #: links.py:19 msgid "Namespace details" -msgstr "" +msgstr "Detalhes da categoria" #: links.py:23 msgid "Namespace list" -msgstr "Lista de Namespace" +msgstr "Lista de categorias" #. Translators: 'Slug' refers to the URL valid ID of the statistic #. More info: https://docs.djangoproject.com/en/1.7/glossary/#term-slug #: models.py:14 msgid "Slug" -msgstr "Slug" +msgstr "Identificador" #: models.py:16 msgid "Date time" -msgstr "hora, data" +msgstr "Data e hora" #: models.py:18 msgid "Data" -msgstr "" +msgstr "Dados" #: models.py:31 msgid "Statistics result" -msgstr "" +msgstr "Resultado das estatísticas" #: models.py:32 msgid "Statistics results" -msgstr "" +msgstr "Resultados das estatísticas" #: permissions.py:10 msgid "View statistics" -msgstr "" +msgstr "Visualizar estatísticas" #: templates/statistics/backends/chartjs/line.html:19 msgid "No data available yet" -msgstr "" +msgstr "Não há dados disponíveis ainda" #: views.py:17 msgid "Statistics namespaces" -msgstr "Estatística do namespaces" +msgstr "Estatística de categorias" #: views.py:33 #, python-format msgid "Namespace details for: %s" -msgstr "Detalhes do namespace para: %s" +msgstr "Detalhes da categoria para: %s" #: views.py:53 #, python-format @@ -92,9 +92,9 @@ msgstr "Resultados para: %s" #: views.py:60 views.py:85 #, python-format msgid "Statistic \"%s\" not found." -msgstr "" +msgstr "Estatística \"%s\" não encontrada." #: views.py:77 #, python-format msgid "Queue statistic \"%s\" to be updated?" -msgstr "" +msgstr "Programar estatística \"%s\" para ser executada?" diff --git a/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/ro_RO/LC_MESSAGES/django.mo index 98406ca186bcc52ced951c83da840866716889dc..d6a402985a5b9dd9de12d75dc2d1e64816ef94f0 100644 GIT binary patch delta 482 zcmYk1ze)o^5XSdRj2MLw{~(CMyuiubMH2`jik6Z{B0+3qFWJO}co**WBHE;|wF$u@ zFCmuN*eH_9+Qw8ic>x<6zZHV{;J4rGEHgXv5PwT_h70jK2F-vqa17?aEzo)daqt9Y z!82F}1CRtmkOm`=0zcrxKo6knzNQ$PhmYW^@Nc;8pN=uM#8`)|BUnVjfun}O{-le? z(!*(?mQ90%z8rAH^&v>f3&9FL)sP|H=CaA%rl2dKSXpr;LnW)>L`Z=Mqo!gNDPort zc1tH2+cupHSx$Z{XIh(kgSrx!EaUSyo64v~s@18oBTtW@m18x?oF0H;A;k{@tZh$xIa pMKu|=d{4R(TfE$R)z_Q<=_g}}O|G#C=3{$xIq361P&i&$vR~Eibn5^B delta 222 zcmX@cwt*$+o)F7a1|VPpVi_RT0b*7lwgF-g2moR(APxlLAj0_CTbPbGk zjSLlx46O`IwGDuP%O|n8L^q@;F|Rl$u_V99N+BpeDYd91A4nG`7G>s7KFpZJ?~|C9 kUYeK=G^8j$KFEKv3RCptex^{K;F83W%;J*F, 2013 +# Stefaniu Criste , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-04-17 12:06+0000\n" +"Last-Translator: Stefaniu Criste \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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:28 permissions.py:7 msgid "Statistics" @@ -54,15 +53,15 @@ msgstr "" #: models.py:16 msgid "Date time" -msgstr "" +msgstr "Data și ora" #: models.py:18 msgid "Data" -msgstr "" +msgstr "Data" #: models.py:31 msgid "Statistics result" -msgstr "" +msgstr "Statistici rezultate" #: models.py:32 msgid "Statistics results" @@ -70,11 +69,11 @@ msgstr "" #: permissions.py:10 msgid "View statistics" -msgstr "" +msgstr "Afișare statistici" #: templates/statistics/backends/chartjs/line.html:19 msgid "No data available yet" -msgstr "" +msgstr "Nu sunt disponibile încă" #: views.py:17 msgid "Statistics namespaces" diff --git a/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/ru/LC_MESSAGES/django.mo index ecb0d1c36fa2af39836605f9d03e48b7e2ede455..279a3ac462d4b9d327684e9f8e6c9b67d3be8d9b 100644 GIT binary patch literal 1397 zcmZ{jOK%iM6oo4Zc`$kKP=b^wQf`opa8S*34}-yNw?P3TA!WeW0}FP=OnKZ}kNG*~9?U10JiHf#*a7ae+AzL z{{kD}PMF#aPJlz;IS?(xtC&2v7yINpy@JUDl5)U~cpZ~{!$vt!wtORTN?FApO*ZOj zaaQ%T>8rM;jKNG_$g4x=}}doOg|Er2$o@&b8#pOv6f=NWN=8bzAx*C$*TuP zj!LiLc@WBJJs)x1?KQ68HoVX}EsqU!+;LWCax!VBoha!B zbnJ3upP3CP%PUiHo~c-#PP3i~DCw756E? zBCKy6jfV|hmKol-U#Dx=Hc}@1#xPR+&6F_o_^8xPghvMHqr=bQsEamRJ;y^-I8JpG zI6OR75$>K_cI$4vxZ_sKO>x65lUpNqzxd3px`)LQhgUi59&r3I;*W~!#SIXtymI%; z9EiVk>*QA4gJP-t)o-tkO!vtB!pe0NUfC>i6Jc~0?wjHk+HlX6;;wMtVewOO6Q%BQ zZ?wDfugYJe`C~X@_iJp4O+baz?>7<`x*ULc~yO`{JFvZxjG(e cGz6F1tgVTE0N`@&0ssI2 delta 233 zcmey$wTrd>o)F7a1|VPtVi_Pd0b*7l_5orLNC09^AWj5gE+EbZVsR!0hB6>62E=_p zwg`}33Zxl`(D1*9OrC9xz`p(Haml_9t!u_Uv&Br~~~A)qKfD>b=9*K_giOmbYtx<-ZyMut`frjrwx#QB5rlTwRH@)d&eixZ17^Cvelh4A, 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2016-03-21 21:05+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-07-19 20:06+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:28 permissions.py:7 msgid "Statistics" @@ -29,15 +27,15 @@ msgstr "Статистика" #. statistic will be updated #: apps.py:43 msgid "Schedule" -msgstr "" +msgstr "Запланировать" #: links.py:11 msgid "Queue" -msgstr "" +msgstr "Очередь" #: links.py:15 msgid "View" -msgstr "" +msgstr "Просмотр" #: links.py:19 msgid "Namespace details" @@ -59,7 +57,7 @@ msgstr "Дата и время" #: models.py:18 msgid "Data" -msgstr "" +msgstr "Данные" #: models.py:31 msgid "Statistics result" @@ -71,30 +69,30 @@ msgstr "" #: permissions.py:10 msgid "View statistics" -msgstr "" +msgstr "Просмотр статистики" #: templates/statistics/backends/chartjs/line.html:19 msgid "No data available yet" -msgstr "" +msgstr "Данные пока недоступны" #: views.py:17 msgid "Statistics namespaces" -msgstr "" +msgstr "Статистика пространств имён" #: views.py:33 #, python-format msgid "Namespace details for: %s" -msgstr "" +msgstr "Детали пространства имён для: %s" #: views.py:53 #, python-format msgid "Results for: %s" -msgstr "" +msgstr "Результаты для: %s" #: views.py:60 views.py:85 #, python-format msgid "Statistic \"%s\" not found." -msgstr "" +msgstr "Статистика \"%s\" не найдена." #: views.py:77 #, python-format diff --git a/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/sl_SI/LC_MESSAGES/django.mo index a36b2e6370d1b842f52a21b92e32dba8bf0a44c2..96d10306fe358633af4602a16290470b7c594f4b 100644 GIT binary patch delta 45 zcmeBU>0_DD&TVL@Yh7|M3sa6WbIq|`slh-mP0suKD B4ub#y delta 45 zcmeBU>0_DD&TU|#YhexJm=^wPxiR4awzocLhR$X=a(Qirdgo*T`7Gz{twfeB##4lPegb__%rGULPiCSPPU0sulK B4%Gkv delta 45 zcmZo>X=a(Qirc_M*T`JK(8S8nY~t3<{62|!>7|M3sa6VQnekzMlhYZaCtqST1OP#> B4#@xj diff --git a/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po index a8b9b97c99..ca427b5d39 100644 --- a/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/vi_VN/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Trung Phan Minh , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.mo index 5a35d3ab303768a973f904bd897e0fccdf0fe6eb..f85e963756148f997ecefbb8d776499124f12d29 100644 GIT binary patch delta 45 zcmeyt{DXPIDsDqVT_a-!10yR_^NCy6PA+1M;`d3+OD|1KPqk90%7}ONn|zv47XWB_ B50(G` delta 45 zcmeyt{DXPIDsBT4T_bY^LlY}Qvx!^R^7|y_rI#kAr&=jgWyCxCO-^Kto_vN;2LNa# B4~hT) diff --git a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po index 760eefad71..ecc16c85c2 100644 --- a/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/statistics/locale/zh_CN/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Ford Guo , 2014 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:05+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:24 links.py:28 permissions.py:7 diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.mo index 34eced1ddb9e4f656d67d6cd3d3249c4365077eb..e0af7c8ebbeaae261d6b24eb7d9cd449d0bd34b2 100644 GIT binary patch delta 42 ycmZ3?vY2H;JGY^su92~VfsvJ|`NT=9CwnnQ@%SX>rI#kAr&=i_7ENBv*Z=?&RSl;A delta 42 ycmZ3?vY2H;JGX&}u93Ndp^25D*~Ce!d3+M{(n}N5Q>_#dizeGJMo(VCSPuXeDGi\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:10 msgid "Storage" diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.mo index 645eab1fc8434fea5fbecedc0b7a9f7b7e3dc1e6..6c8fcea159e6885feb5d80d9bc86a68fa34c561a 100644 GIT binary patch delta 42 ycmcc2e3^MdJGY^su92~VfsvJ|`NT=rI#kAr&=i_rB7bQs0#oiXbrId delta 42 ycmcc2e3^MdJGX&}u93Ndp^25D*~CffczhD`(n}N5Q>_$|(kI(9Mo(VOr~?2b?G2~^ diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po index 77cdb0cdb2..d9cbff3beb 100644 --- a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.mo index 8e575d5360d4a8f270a5c87b73ecfc92ecec9ae0..b16699b58a3b9a7a42e3011262e575cca362884d 100644 GIT binary patch delta 45 zcmdnRvWsOxJGY^su92~VfsvJ|`NT;lCTB55@%tp^rI#kAr&=i_6~{X{PCm?74ggEg B4-fzV delta 45 zcmdnRvWsOxJGX&}u93Ndp^25D*~CdF__$|isPLeCr2_yPd>s}1^`Qs B4+H=J 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 8aa42b61f7..1ab354e68d 100644 --- a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:10 msgid "Storage" diff --git a/mayan/apps/storage/locale/da/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/da/LC_MESSAGES/django.mo index 43fcf55ebc5e55726c0e70e6e5f2138d737a05b9..1588f0b80b183f6d1ca7e7ef7dc7c421e13cf402 100644 GIT binary patch delta 42 ycmcb>e1UmFJGY^su92~VfsvJ|`NT=9CwnnQ@%SX>rI#kAr&=kbBu-w;s0#og*$tim delta 42 ycmcb>e1UmFJGX&}u93Ndp^25D*~Ce!d3+M{(n}N5Q>_$I5+~a*Mo(VCr~?2abq$pO diff --git a/mayan/apps/storage/locale/da/LC_MESSAGES/django.po b/mayan/apps/storage/locale/da/LC_MESSAGES/django.po index 01d5b0191e..22e6558343 100644 --- a/mayan/apps/storage/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/da/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.mo index 2fc5c78f524dd0fb13465e90f4d76464b4394902..4d77c4d6c2b7e62aa85a6484f573f64516816175 100644 GIT binary patch delta 45 zcmbQnGL2=za&ALIT_a-!10yR_^NE`dOm1R~;`d3+OD|1KPqk7=NsV`LoqU_o8URS% B4(, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Mathias Behrle \n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/en/LC_MESSAGES/django.mo index 105563c9814adfed288f55414a05b95629d49b04..f1fa87dd04bc6a5a99a76fe46258c1c1988302f2 100644 GIT binary patch delta 21 ccmeyx^owai54WMAu92~VfsvJ|`NZju0Z`NjM*si- delta 21 ccmeyx^owai54VAdu93Ndp^25D*~ICO0Z|hNO8@`> diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po index 42f6fcf7cf..5619954167 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: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/es/LC_MESSAGES/django.mo index 86c9b3dbe9818dc9f708cec1877d253d5fac2535..c8c0abdce9acd133cc7af7edabc4464c83408348 100644 GIT binary patch delta 42 ycmeyy{Ed0Sa&ALIT_a-!10yR_^NE`lO-^Kt;_*q$OD|1KPqk7=EuOrK(FOoFKMrvK delta 42 ycmeyy{Ed0Sa&7|?T_bY^LlY}Qvx%D)@%SX>rI#kAr&=kb7EcaljGnxk(Ha0Z{0?XU diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po index 2b3e4eb8cc..253e1a3c28 100644 --- a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Roberto Rosario, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.mo index 0839db2f9857c138f48acfe86d127e436df8d2bf..d0f6c3b5dcf537381e2301ff948d2dd6fd87c8db 100644 GIT binary patch delta 42 ycmX@be2RHOJGY^su92~VfsvJ|`NTrI#kAr&=kbB~D(#s0IKa9}SQI delta 42 ycmX@be2RHOJGX&}u93Ndp^25D*~Cd}czhD`(n}N5Q>_%z5+~a-Mo(VKs0sifwhe~> diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po index 11d0217385..e89f7ea07a 100644 --- a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.mo index 4adfda01d2256b04704b2d04d4b6e6d7d806f67e..2142f7d5b0aec000eedb4639ce473280e0251d30 100644 GIT binary patch delta 42 ycmbQhGJ$2na&ALIT_a-!10yR_^NE`dPi|t2;_*q$OD|1KPqk7=E1G, 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Christophe CHAUVET \n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.mo index 73c808fe3facb154744f5388aafc16c55da6cb2a..d3f6f52bca07360d4194a35d60ee288e95d70abd 100644 GIT binary patch delta 42 ycmcc2e3^MdJGY^su92~VfsvJ|`NT=rI#kAr&=jwlulm8s0#oi(hbD` delta 42 ycmcc2e3^MdJGX&}u93Ndp^25D*~CffczhD`(n}N5Q>_#-N+;VhMo(VOr~?2crwzOS diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po index 2678a8a7b7..66572c9709 100644 --- a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/id/LC_MESSAGES/django.mo index 1c0fdc85a53733f1c091d3bbb6f7803bd5ebb402..237412df64cf91fdf2a42e15c7f1d5a5ac2851af 100644 GIT binary patch delta 42 ycmX@he3p4aJGY^su92~VfsvJ|`NT=rI#kAr&=jwrc7SWs0IKby$z)R delta 42 ycmX@he3p4aJGX&}u93Ndp^25D*~Cffd3+M{(n}N5Q>_#-QzknwMo(VBs0sihMGc$) diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po index 0ca86b5072..c9a9dc72dc 100644 --- a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/it/LC_MESSAGES/django.mo index 45bc19b0d9277c8bfddf8ae544e57e9c81611fc8..a9f5fa4ac3fe247308905d9212415881aa0cc7be 100644 GIT binary patch delta 40 wcmeBU>0_C&oZHY)*T`7Gz{twfeB!2klWQ5HxO@`x(n}N5Q>_#xUtzQY0RLwV82|tP delta 42 ycmeBU>0_C&oZG-e*T`JK(8S8nY~rSUJU)qe>7|M3sa6V^C6n_RqbFZyGzS10sSWP{ diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index 3d7f9a2755..71410927b8 100644 --- a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Giovanni Tricarico , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" "Last-Translator: Giovanni Tricarico \n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.mo index 984d3862bc1838227cd6084f67d8a080ce483262..70aceefa93e49f45a707ef40695f6ab90c50d714 100644 GIT binary patch delta 259 zcmaFNJeMWno)F7a1|VPpVi_RT0b*7lwgF-g2moSsAPxlLJ&X(tkwBUah{b>!fLt&D z>4k&flKi5?^wfzK{`H22x<vz;P0Y;EOU}==1M1F8F9kW_bJXNm#wdOm-%24bC*IFz@-{|YcK-sP(di5T Dd*MDB delta 191 zcmbQs@|fA;o)F7a1|VPrVi_P-0b*t#)&XJ=umIwfKuJp=4N?OG6C?bS3`}&5%oPkx ztPIU`4NMFSxB~ojgHp>fi!<}{bX^ilQmqt>3=Bqx3=|A4t&EJd4S;~lC$YFh zH>4;ruQ(^MB)`Z?!7bFsN5Rk0*HyvB)z{I}$HCFXCCD{6c(M#*3cpWcUV3R_I?%Md RoOnN<$@PrUlV36F002%eDgyuj 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 f809a8642c..79a3599d17 100644 --- a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# Evelijn Saaltink , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2015-08-20 19:23+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-10-28 09:41+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 msgid "Storage" -msgstr "" +msgstr "Opslag" diff --git a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.mo index 41941cfdacae288da4b9d5020cd3fdfdd331adfa..73e24eb3c6ff7a832a8e87fb7c5e1533c2be801d 100644 GIT binary patch delta 257 zcmeBTImr@nPl#nI0}wC)u?!IF05K~N+W;{L1OPER5C;PBb4CV+NGRVCr~$|Y1CU-g z2rkJlN=#3kXyIRPXsBystYBbdWooW#U}9jv72vNMlvylWKYNcRgU}&am zU;&g?FtD^THqtf#0xqA#;u77EqQt!7oJ62;RtheOd6}s>3gMY~nTbWk*_jG9DPR%3 za+ru-O1VRNZenJRUUGh}9ngfl^oj5NCVMeP@qpN+Kqpx#6y!`^%$UyMo0y(hRhh>C E0Q~$tO8@`> delta 188 zcmX@f(#2wNPl#nI0}wC*u?!Ha05LNV>i{tbSOD<_prj>`2C0F8i4p!u1}3^j<_d-; zR)%J}1||juTmk;NL8)b##hLkex-N+&sa6U`28O1(1{S(T1`39jRz}9!20*~&lUQ7$ z8&Z^*SDcerl3!${;1=rRqu}T0>#AVm>g(v~, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2015-08-20 19:23+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-08-04 09:32+0000\n" +"Last-Translator: Daniel Winiarski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:9 settings.py:10 msgid "Storage" -msgstr "" +msgstr "Magazyn" diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.mo index 0eef336a99b25cef4e93ca7261dada56fc25106f..da99c6af02a73b7d2b5c43b3ded4dd50d14efc06 100644 GIT binary patch delta 100 zcmbQrvWR7Z4(~2T28Kum1_oXr7MW<7$8Bh+Yh(uYGz(ya!F=cs&+h6LrGC$UU6nxYQCj8WV^iFxUziRr0U3I&sIGTHzD DeefS^ delta 88 zcmZ3)GL>b54)0n<28Kum1_oXrW}j%8$8BJuYhPFbQudTwH7&SX`_7#^R*y!6t<^i(T_f|AJ%jM0-{Fj@fs1vMIv diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index a55ce217d9..c85879a8dd 100644 --- a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: -# Manuela Silva , 2015 +# Manuela Silva , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:10+0000\n" -"Last-Translator: Manuela Silva \n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Last-Translator: Manuela Silva \n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.mo index 69c521e02e2081dd9868b1a11ed8f39e865982cb..3b965c6d95377e468213495d5a845980b34c22de 100644 GIT binary patch delta 266 zcmaFFynrR*o)F7a1|VPpVi_RT0b*7lwgF-g2moSsAPxlL9gGYNkwBUkh=qU}fLt&D z>4k&flKi5?^wfzK{`H22x< zlW7n!z2y8{y`&;Lpw_(fQlS01A*mC;g-?!UjN*q0St%5h#5)B|-o~iI=U9}RSe2TW Ln46kclFtAD3`js& delta 191 zcmZ3$@`%~uo)F7a1|VPrVi_P-0b*t#)&XJ=umIu}KuJp=4N?OG6C?bS3`}&5%oPkx ztPIU`4NMFSxB~ojgHp>fi!<}{bX^ilQmqt>3=Bqx3=|A4t&EJd4S;~lC$YFh zH>4;ruQ(^MB)`Z?!7bFsN5Rk0*HyvB)z{I}$HCFXCCD{6c(Np83cpWcUV3R_I?%L& Rl6a?}$u*48lb, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2015-08-20 19:23+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-11-04 19:03+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:9 settings.py:10 msgid "Storage" -msgstr "" +msgstr "Armazenamento" diff --git a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.mo index 576c3116667e6e01def622f2c157b97a3f7bace3..2b60498a7fa422f07d9b0b1252c5ecc37ddb40b3 100644 GIT binary patch delta 260 zcmeBX*~JoZPl#nI0}wC)u?!IF05K~N+W;{L1OPER5C;PB4MqlrNGRV3r~$|Y1CU-g z2rkJlN=#3kXyIRPXsBystYBbdWooW#U}9jv72vNMlvylWKYNcRgU}y%E z(={|#FtD^TG14{w0xqA#;u77EqQt!7oJ62;Rtmu-scDIMnWYNOMVZAVsR}mfr3IM| z8Hsu6iA8!v`F21ZdFiDLVPl#nI0}wC*u?!Ha05LNV>i{tbSOD=wprj>`2C0F8i4p!u1}3^j<_d-; zR)%J}1||juTmk;NL8)b##hLkex-N+&sa6U`28O1(1{S(T1`39jRz}9!20*~&lUQ7$ z8&Z^*SDcerl3!${;1=rRqu}T0>#AVm>g(v~, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2015-08-20 19:23+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-04-17 09:42+0000\n" +"Last-Translator: Stefaniu Criste \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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:10 msgid "Storage" -msgstr "" +msgstr "Stocare" diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.mo index 15e2aa21e8dc8186e4594388cb94bf47b26d9186..100272eb83de8ef3432c3f19626ace82c63df402 100644 GIT binary patch delta 225 zcmcc3@}DK*o)F7a1|VPpVi_RT0b*7lwgF-g2moSsAPxj#A)um25DmmRKsF zI0!DuFG@^LooL}7VrZyqWUOFdWMyiuYhYqvz!l)H8S)7@lr|Xhfl4_-3WMF8f zYhbQxXrf?XXk}=sZ2$yZK8eL8x*Aj0_A-bqy?ZjSLhFEv<}(brYM#?{x+)5pQl#U;o!IM{CD?+_lJ#Ju#<#B`u( PMWvJd7^5d|W84M+-sUP8 diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po index fc134d97ea..b18fe918d9 100644 --- a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" -"PO-Revision-Date: 2015-08-20 19:23+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-07-14 01:15+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:10 msgid "Storage" -msgstr "" +msgstr "Хранилище" diff --git a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.mo index 5c9ab1af8975a24797b507e366c17e4f99b7fe23..6360098ac01c8fa5aa3eed4656b690e6b9726317 100644 GIT binary patch delta 45 zcmbQiGJ|D8JGY^su92~VfsvJ|`NT_$=bK-+NC;Ku+Pu{_p002Lr B4ygbD 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 0ba6b2b2f8..82331b5c0d 100644 --- a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po @@ -1,23 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:10 msgid "Storage" diff --git a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.mo index ec988613cfebfb8e9381fcced0e2dac2e73f8111..c08af74dc8901b95e227e36dac07c18490ebb9b0 100644 GIT binary patch delta 45 zcmcb|e2;lTJGY^su92~VfsvJ|`NT_%rGULPiCi^i)Pu|I>3IJD- B4+8)I 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 11dc3eb3ba..8645d1e283 100644 --- a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.mo index cd7be672f35b6324239bb2e65b7abadd36f85af2..a9433c9333251860b157745bd25fd1fac5ed1621 100644 GIT binary patch delta 45 zcmcb?e1myHJGY^su92~VfsvJ|`NT=vCr2_y@%tp^rI#kAr&=jgWyCxCP2R+)1^`ms B4&eX* delta 45 zcmcb?e1myHJGX&}u93Ndp^25D*~CfP`F#@e(n}N5Q>_%LGUA>6CVMbOPu|R^3IJ3X B4%Gkv diff --git a/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po index ae364a3118..163d16dc06 100644 --- a/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/zh_CN/LC_MESSAGES/django.po @@ -1,21 +1,20 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2015-08-20 19:23+0000\n" "Last-Translator: FULL NAME \n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:9 settings.py:10 diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.mo index 67d713c933053827e5ca03c0809bcebdcb57b3fa..b68eb4af8d1108487455350d5de6ab1800bca87d 100644 GIT binary patch delta 45 zcmeAW?-1W`jfLCLP}j& B4=exx delta 45 zcmeAW?-1W`jfLC5MAyh%!O+CY&}{NUmW4b%iFxUziRr0U3W-IN8(E__zhs@y3IImE B4, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:22-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -197,16 +195,22 @@ msgstr "ازالة الكلمة الاستدلالية من الوثائق: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -223,8 +227,7 @@ msgstr "الوثيقة \"%(document)s\" لم تربط مع: \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." +msgstr "الكلمة الاستدلالية \"%(tag)s\" أزيلت بنجاح من الوثيقة \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.mo index f8a3dc562c8a9de5d6a8322e29f0bbb72b57e1c8..ef999b129e5460c8877c68bc2dec483136af8921 100644 GIT binary patch delta 45 zcmaFN`, 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -188,16 +187,22 @@ msgstr "" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.mo index fee1a39b15f95657f53178d18fd0255af7a19c1c..e52a90b654ad91199d5318437d7c7341e8363216 100644 GIT binary patch delta 48 zcmZ23v|MPzH5P6|LtP_d1p^~1Q}f9WS@um{&l<(=lbDxYnwXwyrI1t{@8r0dgH4_p E0D%1uA^-pY delta 48 zcmZ23v|MPzH5P6I6I~;71w#`nL$k>bS@!Y!B<7`;CZ?xaDI^ugJ2_6C#~QtvlTD5p E0DL45761SM 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 ee21468f56..9d58d5d9e3 100644 --- a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -191,16 +189,22 @@ msgstr "Ukloni tag iz dokumenata: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/da/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/da/LC_MESSAGES/django.mo index 10341f863b3ab0299270f8a8c414c528c0c78350..8a4bc9828edee27fa9dbb4cdb79277d12dbded6b 100644 GIT binary patch delta 45 zcmaDa@LpiUP8M!MLtP_d1p^~1Q}fA3SQbt$VvXYQNz6+xO-xU%~698V0 B4`KiS diff --git a/mayan/apps/tags/locale/da/LC_MESSAGES/django.po b/mayan/apps/tags/locale/da/LC_MESSAGES/django.po index 53d8ec09c6..fa43de7037 100644 --- a/mayan/apps/tags/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mads L. Nielsen , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -188,16 +187,22 @@ msgstr "Fjern tag fra dokumenter: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.mo index fb0499182073fd5483929f4d93e00447fbaf8a86..2b63b3b3d0f7d2a3ecc70856b496a7ff6bea6f54 100644 GIT binary patch delta 1265 zcmYk*T}V@57{Kwj)N)IknOWx7>qlwYS=;=Yr!=#L2||*CurA{0j&qosxU(WbCQ)}? z1S^m(f}kk6m4YG)^t!8V@+MpmMA%igLH(aOr5B&`d*8G3@x0G-T&;UkpZ;22_((Af zqK3G;OQ}BG+|7ZpQJ|C?v*^W5Jc8AQN)=%z?ne_nIE-@rIPSp+?!y@j;4SRNS6l0} z$}%b8Lp$4f+Rbi) zIE+1b2PNTmC>8yHX~|@bNd`;~@HR2;1>CN`;=IB$Caa z|A~@dC5KvUMva3g-^^qw^_L&!IdKsm;2^GJ2y3`X))q?U&rnMJGVc$R3bm4@BsPRn z>Je+2vd%p$Q71 zjuSE(2s)MYU?PlhfLiz zJz^ytBRp@#lQ%3UF>mT{Vj^ZG^{8df&Di>klUsV{a?61&ym8y<=gxREWkqcxY+IRH z*H~uBb=9+d($o?Adg#K+x+_@J7_w(|C^3^uS5L>{3#o@0c Dikh7a delta 1084 zcmYMz-%FEG9LMpa+iaWJbZPcOw@1q~=VH$qu4ZHtg@VyV3I$!*6Ac~I2HWatFbRt8 z`mrJcuevPgMhLnI34%tK1>IEtgAfwsMeomivV-5f&Na@!-st`xuX)7B+=S zbPiYRl)FGjEAJq!6!u~(AtYI|jC-+&J$MIo{}bd<^THj!!ZVED;z|64X|!3D5-p%A zc@vdL8SA}tYIL~QJVJe76}6YIQG50d_235DxQQ_wV?R`x1ymvrQS;AH34Xvq{EQZE zpw3E|i<%$mqWBS^kgrEWY%sA<*ukXEe~@%>g)a%v+) zl;B91FwswNj9QC2fF?(@t3%UPP}!X}L~kFVf49+{+5a7#4IL!4qeS1@ch7BaqvEf1 zCQ|Wa+Oks_d$RG{A4!~uCv7WfXY6DwK?~-bN;SSvc8Zl7PPJ6dSQksz^5tp?D^9sk jYB+(bp`24(y5%h8GuHL|;_O^wJ#b|$7EJpZcSH7H2D4*t 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 cb4bd8cfc9..66b1952f91 100644 --- a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po @@ -1,23 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Berny , 2015 +# Berny , 2015-2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-05-20 21:33+0000\n" +"Last-Translator: Tobias Paepke \n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -35,7 +34,7 @@ msgstr "Dokumente" #: forms.py:53 msgid "Tags to attach to the document." -msgstr "" +msgstr "Dem Dokument hinzuzufügende Tags." #: links.py:14 msgid "Remove tag" @@ -188,17 +187,22 @@ msgstr "Tag von Dokumenten %s entfernen." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" -msgstr "" -"Wollen Sie den Tag %(tag)s wirklich vom Dokument %(document)s entfernen?" +msgstr "Wollen Sie den Tag %(tag)s wirklich vom Dokument %(document)s entfernen?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "Tag \"%(tag)s\" wirklich von den Dokumenten %(documents)s entfernen?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "Wollen Sie die Tags %(tags)s vom Dokument %(document)s entfernen?" diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/en/LC_MESSAGES/django.mo index eae7e6d97d37ba83c0a34b5849846d47968e9792..30e20e69f152eda4adcc8a23126e03cc73651b7b 100644 GIT binary patch delta 24 gcmca8a8Y2xd=_p)LtP_d1p^~1Q}fNMSe7#b0AXAQNB{r; delta 24 gcmca8a8Y2xd=_p46I~;71w#`nL$l4RSe7#b0AZsCOaK4? diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po index 6e62262734..acae517c0b 100644 --- a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/tags/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: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2012-12-12 06:07+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/es/LC_MESSAGES/django.mo index 7194a45dbcca4eefc6769147a81e6bc21a998ebd..0f458e74877bdcd45112a4ea57bc82866acfdaba 100644 GIT binary patch delta 24 fcmew@|66{;dk$_xLtP_d1p^~1Q}fNgI2hRhakvM- delta 24 fcmew@|66{;dk$^`6I~;71w#`nL$l4lI2hRhasLOz diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index 7de0b8087f..97ace02593 100644 --- a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-05-09 01:32+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -190,16 +189,22 @@ msgstr "Quitar etiqueta de los documentos: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "¿Remover la etiqueta \"%(tag)s\" del documento: %(document)s?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "¿Remover la etiqueta \"%(tag)s\" de los documentos: %(documents)s?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "¿Remover las etiquetas: %(tags)s del documento: %(document)s?" @@ -216,8 +221,7 @@ msgstr "Documento \"%(document)s\" no estaba etiquetado como \"%(tag)s \"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." +msgstr "Etiqueta \"%(tag)s\" eliminada con éxito del documento \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.mo index ed2c9bbda4228194b2c1715c576b21663e81bc05..2a0d66deb5a926d94d229d609e751509a4650bc3 100644 GIT binary patch delta 45 zcmX>lc}jA_0XA+!LtP_d1p^~1Q}fBE*%nQ%VvpkSNz6+xO-xUlc}jA_0XA*}6I~;71w#`nL$k@J*%tBmB<7`;CZ?xaDWoM%&S8(, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -186,16 +185,22 @@ msgstr "حذف برچسب از اسناد: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.mo index 921a1e79b0e7589779a659235a55c4801d78b0f0..1f188df70edef861f619026512ba2277549a9918 100644 GIT binary patch delta 1255 zcmYk*Jxo(k6u|K-RG^4}h#!E3i>N60YFoaa0_DS)MiNn)5Y*)XucZ-NXdgO}Iv6J- zLnR>&CQc}cF03x<e`}#-!Y|ZY}dDa!fAkGj^ z4=FW>dnJ4^c1xA2#60?O4^Ly0N2$Zujn!yk4MtGzpTRPm$0PUvL--hbajSToRe2^= zoTw+;QEWvoUcp8jKyFb{l>27f>oIKScnSHa4Zhm&H8$gC?7%#hV-?lN^?H;7`_ZSe zN{um*A6O`rK0#UdIS$|^Ud6ntk8CE#Ge|SkOB}`x4C4=!d<_-F!u#mO?=z8vF{B3d45g4Y*S9DMJ|Sx=5Bt=GHQ0e;ID|=*ci}w-@gqu}-*^Gb zxp)!%D1}Z}(|_5MWll&-*HK=+Z#aV0yit;P5@q2vlqY+IQ@DqcI9yx29>*q*)2=U2 z3fRK)_yuWnVaOJj%Kl4>r3iyyiw}lWxIapm$iG999V6ta>j-J%S>iGw;}YR3%!*sX zdWDx-iaJL~mu1k%!f0mwgCTodPe`S_wCXq^+apiDKjfdlL#s~rgzTp#Xjq{WpjrvG zx-g{OvZZRoajdxo?O5^urrO!wExqSyiCXcDc2e4MZ%S!r!PfJsxs``@((&iaiq&i| zXoR|SAY}IR8G-IVpmOq-amRj?$RtupW889VQ-=b98OPQ)Mj{gv*Q5H{tb4{Ew-SqswiBMqIJ5p(dWat<<11F&Hgb*L kNN&k{w`%{4sblHwuioXdrb6|WTfCjt*2+QYxq;g7KYw|b6#xJL delta 1081 zcmZ9~O=}ZT6o>KKCap`Dl@(2Yy8ccb{SE(p5Ng_4EOe;QqQ$;t1|+~mxebMHp-msR^53qCfC zNn(Vkb{LbzkDYum-Uf_`U=t7FJKTwZpfO!If>9jBKD1H4&tW&_u?Gw2;1!&~N1N9* z(`3@ijTUajFj>Pmgu|FbmdsJq?{e++GdRxm1>|Ga_}Yv2FoEkhflb_kKicapRDl-N z#ZAqa6chd7G^)~N)PpN{1RtV0(rnvBHka!h(hO6@SzN<8e1po@5!x)=!a=UbP%oB6 z6?zgM)M)n#6SedwtMeG8ym7pQ#{4L2-UtwxQl`A2C4i48M9_)_)i|%|Sv#T^l7*M4X^re`vcj zRD?RLZHy6WKgY;FH|m7R6P=ncwi9g4zma67ebXE1Jp4a6$bK7jU)>mNdEX~(u4+qIokh7rko`IORDT)1+(<-jb=TMXXa4|Um}2<= diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index 19959cce28..85164ca4c7 100644 --- a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po @@ -1,25 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2015 +# Christophe CHAUVET , 2015 # Pierre Lhoste , 2012 # SadE54 , 2013 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-04-25 12:07+0000\n" +"Last-Translator: Baptiste GAILLET \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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -37,7 +37,7 @@ msgstr "Documents" #: forms.py:53 msgid "Tags to attach to the document." -msgstr "" +msgstr "Tags a attacher au document" #: links.py:14 msgid "Remove tag" @@ -127,9 +127,7 @@ msgstr "Le document \"%(document)s\" est déjà étiqueté comme \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s" -"\"." +msgstr "L'étiquette \"%(tag)s\" a été attachée avec succès au document \"%(document)s\"." #: views.py:110 msgid "Attach tag to document" @@ -192,16 +190,22 @@ msgstr "Supprimer l'étiquette des documents: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "Supprimer l'étiquette \"%(tag)s\" du document %(document)s?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "Supprimer l'étiquette \"%(tag)s\" des documents %(documents)s?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "Supprimer les étiquettes \"%(tags)s\" du document %(document)s?" @@ -218,9 +222,7 @@ msgstr "Le document \"%(document)s\" n'a pas été étiqueté avec \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"L'étiquette \"%(tag)s\" à été supprimée avec succès du document " -"\"%(document)s\"." +msgstr "L'étiquette \"%(tag)s\" à été supprimée avec succès du document \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.mo index c380683930f71d3ad3a4b18fdc314ea9a4b94665..78263a536f74831efb6b3de899e0d40fa36c769b 100644 GIT binary patch delta 42 ycmeys@_}W-CvHPST_a-!10yR_^ND|#OkT$r#p9EhmtLBfo@%9#Q97BODH8xonGVbV delta 42 ycmeys@_}W-CvF21T_bY^LlY}Qvx$F~@c1O=rI#kAr&=jwlulm27(JPTDFXmVfeym} diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index ffb3c84774..f5610de111 100644 --- a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -187,16 +186,22 @@ msgstr "" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/id/LC_MESSAGES/django.mo index 0cd22efbba74bfdf1921ef6d0ada36ba6a43ae74..3c8ac587c0c66f187066779920b708eff0a12af0 100644 GIT binary patch delta 42 ycmX@ja++nrU2a1|T_a-!10yR_^NBB(PM*aW#p9EhmtLBfo@%9#nKJn^V*~&@yAKZl delta 42 ycmX@ja++nrU2X#tT_bY^LlY}QvxzU3^7tg?rI#kAr&=jwrcCZ(jGp|3F&qFnXAcGd diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po index cb2be0319f..8a895fd530 100644 --- a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" -"language/id/)\n" -"Language: id\n" +"Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -185,16 +184,22 @@ msgstr "" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/it/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/it/LC_MESSAGES/django.mo index a80ed13cf4754ca0bde92819d4e41a439a04e0ae..b78100f1a72bdcdeccd944740ad96a711abf4791 100644 GIT binary patch delta 1438 zcmZwGOGs2v7{KvkWBE#ZSy`r@va*LWIb)_y+KkNf0)?R27*t&D+^$12bHlk36lRO0 zMGugh;7Vu_fs2SFXwj-gL7Rv+ts-5t3WBx;_5a2@rP0CT?>z23_nhxLGut$&Cq8W~ zpH`G0bqDoUnNt1ubrt_8p94x&;{t~8D>h(bxl*g~FxFud*WqcD=ZA3(rm+SuV+60_ z5u97Qe7a!wMT<~pTwJ7~zBpB)e#&8DX_z`8jZIw$K z@4?OV`>_Sjq8zY*t$bgN)0iXd4{<&HLAKY4=TTBJg?w8*!Fqg-Tk$PQ$QO}U)px)D z1N-RLaGE5Z!UWz!dH=od7o3ot{Gic5`WFaBL*bIuTd`FDsGe*_q~C#@Jl>{Z}0>*aQrsB zh_bQUD50P7eTp0Dzr$U)hy=P=B*g*AzbqgZBS@7nm&&$M1LemcCzhKpCptitg(VHL za647XeyT)LisW3P$C*?kbvIS=FNFXVOS9y^RJb?A{79&{v}zMoP9-NV75OD_2zAgO zkThv30a1IYQg%|wXt79IB&BM=bq#YwyN122sohbMF3>bxD=kaKRPz55h1mSM^0`1u%CHOCb+qAs-6<|n`eMj?Q88W<4hJKhx+4

h|K5%|pGx$YCAsh<1h#c2KGZje;9YjT-qv)^MHCs2(y#O-Cn;+?A|VuykKe`XSTr zhjM1z&Ka3($aHeYy!(|Y?_1?LR>|9AhHXW)ccN+_V%wRqyq%FlXe0Y4296q7F_ZZ- zlkq02uJmU`Sd@tnb`cVs$^N&@%d!U?m#nv(P?8T PE~YHEd=nwhuIv5{mWkXB delta 1080 zcmZA0Pi%{E9LMor^+EsIAEQP$4>q0Aq^+f*Vv`Jwm_*o394eZbENjws2P1kAMA(5R zyVhYBbL|c+qzMNXLL%WH92T*YM0S#i@&42!62J8Kyq-V5=lOkq-|w&2?P^EmQ>!&? zXub3(eavIb0erHG1MPv=m;lb=CY;07_zKtITWrDw)VL*FgFi8dmSs#Dn=yr14B;e( zjj5QMocOshjhpd4@-y=sG_a0({t{#O4i&%(?m&x+PV7M~B8zLWhOTo z;70t63g8D;RGScm(hGyAJ#YeTyofz`8yRcnFphO>!LQhjzg)Yim+l`&8_%LLc@+=h zyz6(@beR0>!)12DNvz;ee1kEJu)`GC04l}DuoW-hcD#&a)U?yJIW?x2{MfGPcvy-ksG#TG)Ob(5WWaBRSRyu(, 2016 +# Marco Camplese , 2016 # Pierpaolo Baldan , 2011-2012 # Roberto Rosario, 2011 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-09-24 10:31+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -37,7 +37,7 @@ msgstr "Documenti" #: forms.py:53 msgid "Tags to attach to the document." -msgstr "" +msgstr "Tag da attaccare al documento." #: links.py:14 msgid "Remove tag" @@ -65,7 +65,7 @@ msgstr "Modifica" #: models.py:20 msgid "Label" -msgstr "etichetta" +msgstr "Etichetta" #: models.py:22 msgid "Color" @@ -127,15 +127,13 @@ msgstr "Il documento \"%(document)s\" è stato già etichettato come \"%(tag)s\" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"L'etichetta \"%(tag)s\" è stata allegata con successo al documento " -"\"%(document)s\"" +msgstr "L'etichetta \"%(tag)s\" è stata allegata con successo al documento \"%(document)s\"" #: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Aggiungi tag al documento" +msgstr[1] "Aggiungi tag ai documenti" #: views.py:160 msgid "Must provide at least one tag." @@ -158,8 +156,8 @@ msgstr "Sarà rimossa da tutti i documenti" #: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Cancellare il tag selezionato?" +msgstr[1] "Cancellare i tag selezionati?" #: views.py:231 #, python-format @@ -192,16 +190,22 @@ msgstr "Rimuovi l'etichetta dai documenti: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "Rimuovere l'etichetta \"%(tag)s\" dal documento %(document)s?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "Rimuovere l'etichetta \"%(tag)s\" dai documenti: %(documents)s?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "Rimuovere le etichette: %(tags)s dal documento: %(document)s?" @@ -218,8 +222,7 @@ msgstr "Il documento \"%(document)s\" non è stato etichettato come \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." +msgstr "Etichetta \"%(tag)s\" rimossa con successo dal documento \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.mo index ed91d6e1e295ffa4afd7efc80af204b8ae5f840b..223a67dff7dc0985e5d5428e2fb21479b04d5438 100644 GIT binary patch literal 3035 zcmai#TW=dh6vu~B3Yb!$+)AM^4UL)<)|b%q;v~K0f-2$?rB0AaMHzcfoK1FTt(mpm z!V^d!AyEk-A<-8Eh-btH-~%8b9{2*hfCNu`2L5N(yLQ~BjJ*5X**WLTod291|8a2d zR|4%Au9tAlJ|M(2czq9UXypfmD1a645I74y1g?Pxz<0qXz%7vNJ^=TDpMZ~npMz82 z*WfAe*M5J`ULp3QKMg((UIHHlS3vy4HQadoM*n>X9!I|m^8DX`uYx~-FN42;C&0hK zhrxp|;`JN`kAUMK+s%W#t_FA*)F755J_FB#x4{eGZy?(rKr#p^JdoEn1@gSJ;Lp(N zeUNoH@`w;mg0F*c6>}i#H4pMU*Fm=HfgI;kknO(!FM{8JC&53#)8HW(u`Vkh`@IKp zJ`o5LaT8?!k3iP{OK=hV9_0D|0VlzK!Ex{qoH_nEkoB?PQ{ac71aE_5;E&)z@OSVi z_!r3W_Cd6>;C^rhTmqj1KL#OzxC8P!z6DQ!KY@@ZZ>+(KxVXl+v8D*^)`BIv_5$vl z6F2GZLiEef^;pkmaXpWV_l)P~wXz;uE8KW3Pvhb}=f)Zyb5H3F%W{o#=k`nr@k*Zz z)`9n!^I;7*e^(2jxR@lWxhWIX8hW%ciKQPmI}z!`iupKVu7K{=7-jVzil%&jaUo8?YGZ&o9TuC$hCn+A$eesX|QV-{J@@1X7l5(82Jo zZaro7@#Ow42r=+S2kXv7SoDKL@Qp)M<+#l|crqq7(&w}T-C~2mf?zs9JU(f~vT9H$ zY8{)%wu!rePf{f^B!w5Trd;ykeQXf?e}-9-Ot7L@G1LvHCsrwnyTof7dXyU`j&ftp zs<`W@9UZnqrgmo}E9#gB*FXnk%9Vz-*-o=b)^2pd5L-AXw2_T2j`$mwz=->f_3sh@ zHRHBsWNH`Rigk#?s#x((5QefrGMmW7R(O|*32|0TyoKuZF8kg(85_j9Dr@SN(sFU3 zcD1ld?bsw<&9(yHyVPk}uO3%rVdd?*=e`fvdkgrAs&cAaIptL<-qahiJXM`O?UhfK z%P{m-v0WT@#IAf+R;H^b&%RbhD=ed8yt+}^hAN3oRW5cZ47Rkqs#J&?+?KPHzOnrm z7g~`D!eTRy&cR!^I;urpom5nn3!MZfz{C|wHpzra`*u=JY$i#&S}OH=y<)=i1RHdd zy-Oyx$^@|~MVz)req>8RX0 zD$p~sxv7k$WNxj#EqmlmPhAgWpbt<)?;ePkiS9M2)5F%G2dL$;;oQ6M%0wrmPA_WfI7Xty;53S zR60`I80ccV-5{l-Rz&QRMrKQtMlaa%$qb${%QvZi{*m$f9^K5E^m#Eno`sh?EV3hM zq}tPSQMSk}!P5?M{&Ku;Rxv()FT6J#3lETX68=G z^aWJwJ1xbXgyol;n06>Jr>e6Vn!hO7JfbkIfYFn5P5J?fN=AXUs4goj`F2X|1Ii4E zbx9Y+nv7!12g3k+6}tU(ld)aHkZz?`cg4%~%npGpaPE{Hu*>9WYC8Yzlm>N&Ix?3yR$ x@5tlczIcmMci_?wX;B{A!4`i*PJAn_VK4Y|!ZADe`@?WAHa>r8nLvI~{0CSJBy0cx delta 809 zcmX}qOKTHR6u|Kt^G?*5v?jHrabjDqu;?!jBA9ealQ{5!NzAKC?3%;F3l#LGC1 zPccb-v(A88<|k@_->994a2)*#2~s23r?*C1zQvtycGY(bxMS@E2k*t8>sHi*YS4W{ zBYPV*Y}lko>YD9joYYon=>I}PJMk}M+PiPCZD#C--LYM)POaV+k8g*3@t&7+zL<1; zIa&2Na?C#@hx~cD=^uFcz@PC%^QDR6lvOB|3zPCDFcQu0pC}frVxe3p%I82TR&CDP ztxnUbHrutE4bH#jFhf_syd+PvMc7Mly*Yqry|9doi_ zcUv+SN)Mm0TQ`=jF4`^ge`Gaud4HRKLKmbPPROJ1tb7mOkr$D)JdfmMBeGNC(W, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-11-09 15:49+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -26,7 +26,7 @@ msgstr "Labels" #: apps.py:68 apps.py:80 msgid "Preview" -msgstr "" +msgstr "Preview" #: apps.py:84 models.py:24 msgid "Documents" @@ -38,19 +38,19 @@ msgstr "" #: links.py:14 msgid "Remove tag" -msgstr "" +msgstr "Label verwijderen" #: links.py:17 links.py:24 msgid "Attach tag" -msgstr "" +msgstr "Voeg label bij" #: links.py:20 msgid "Remove tags" -msgstr "" +msgstr "Labels verwijderen" #: links.py:28 msgid "Create new tag" -msgstr "" +msgstr "Maak een nieuw label aan" #: links.py:32 links.py:45 msgid "Delete" @@ -62,7 +62,7 @@ msgstr "bewerken" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Label" #: models.py:22 msgid "Color" @@ -70,15 +70,15 @@ msgstr "Kleur" #: models.py:34 msgid "Tag" -msgstr "" +msgstr "Label" #: models.py:53 msgid "Document tag" -msgstr "" +msgstr "Documentlabel" #: models.py:54 msgid "Document tags" -msgstr "" +msgstr "Documentlabels" #: permissions.py:10 msgid "Create new tags" @@ -110,7 +110,7 @@ msgstr "" #: views.py:34 msgid "Create tag" -msgstr "" +msgstr "maak label aan" #: views.py:59 msgid "Must provide at least one document." @@ -144,8 +144,7 @@ msgstr "Label \"%s\" verwijderd." #: views.py:186 #, python-format msgid "Error deleting tag \"%(tag)s\": %(error)s" -msgstr "" -"Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" +msgstr "Fout bij het verwijderen van label: \"%(tag)s\". Foutmelding: %(error)s" #: views.py:196 msgid "Will be removed from all documents." @@ -154,13 +153,13 @@ msgstr "Zal van alle documenten worden verwijderd." #: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Geselecteerd label verwijderen?" +msgstr[1] "Geselecteerde labels verwijderen?" #: views.py:231 #, python-format msgid "Edit tag: %s" -msgstr "" +msgstr "Bewerk label: %s" #: views.py:244 #, python-format @@ -188,16 +187,22 @@ msgstr "Verwijder label van documenten: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -214,7 +219,7 @@ msgstr "Document \"%(document)s\" is niet gelabeld als: \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "Label: \"%(tag)s\" is verwijdert van document \"%(document)s\"." +msgstr "Label: \"%(tag)s\" is verwijderd van document \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.mo index b4ea86ca3249d9dde806e560492b4aa1181b008a..d74886672332c000f3bd6fb868114905760a5745 100644 GIT binary patch delta 45 zcmX>neolPD0XA+!LtP_d1p^~1Q}fBE*%nT&WRK$UNz6+xO-xUneolPD0XA*}6I~;71w#`nL$k@J*%tEnB<7`;CZ?xaDHP;P&SsC^e3|_>GXPoO B55fQd diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po index f5b58f4c86..7aa09f160d 100644 --- a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po @@ -1,27 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Annunnaky , 2015 # mic , 2012,2015 -# Wojciech Warczakowski , 2016 +# Wojtek Warczakowski , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -193,16 +191,22 @@ msgstr "Usuń tagi z dokumentów: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.mo index eabb05627e49a650f1091d90c30126a3c1469ee6..e09b3449673275a07b62e0d78700b8ad2de48fdb 100644 GIT binary patch delta 44 zcmeyv{fB#l1v9syp{|j!f`O5hsrh7Q=B1OrGDmUyB<7`;CZ?xaDHLq>Wm(S%06U2e AF#rGn delta 45 zcmeyv{fB#l1v9sSiLQ~kf}x3(q1j|-=A}G7iFxUziRr0U3I!#TpEE~q_Gekk2mnMJ B4xIo1 diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index cfcd8fddea..81cde1bb0d 100644 --- a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Emerson Soares , 2011 @@ -11,15 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -190,16 +189,22 @@ msgstr "" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.mo index f51e18cb413a08cf948f2481cf841555b33d1e9c..995c537541437b744db066661a8fd51e6dcff817 100644 GIT binary patch literal 4106 zcmai$O^h7H6@beL31LGBIEFyLq*!pgYuq!l3&G2nwY}b5N0wNzvNt4#11e9~&NlAp znsoJey-1OA;0DSmL|hWdLLyRb;goZnV=hq?CE^fa0VlX| z-h1_`-v004J?|-=fc6CK?E^|J!!N(V56>sxRB8s^ge~|bd=x%@k5b=)&%*~`7k(d} zha!IoejA4HyYLEJguCzs_~+vLCcK~TLn!+md%36!kYyTqpZvK zB}gdL@8D_pK0E{e3q{{!-x=Gz1Rv&m8U7evgyNrvV$ZMPUy1p3C~~i1+zK2*4L^di z&cEOf;D4aVeE}uz2QZo?)r0UM_$WLBk3q5X3Oofrgfj1Q_z3(OqCy=cs2U!IxTsFS zgK!e_Lla-+ zAx!xrIZ{5de}`yCXcA+IyZ9vWEFU=oxS*abI%E$ujd0}tfjrJ^YyQX{N!-**mYLp; z&P>1YsxzlU*BcFNlI_#&8~wg1@71b{U8+`7Yci`7yPGSY{6uIxEbFe>*k-nX2>a@N z$7;`LFSDTxoZfH1Gg8>AXOGO4w$J-n9eHhH77O=8Lmx%PiwqwO?>lYR_~dAI=P9VD z=ktNxg%OQ6y&Gl37f+Dr>LXsQhf$XQO!UYHV`=JA9ZE!^q%VE7txTS?GCuFs%jU9; z)yBwYdYHPaQE0WvbZiYBF0s|_weBE;^1BR6w8~hv)Mje0Ms^oQ1C#FQD|S!2?b0>L zfy-DChBj=e3wGeH<}Np0^>*q8l|qR{Q*d(BPY?TsB0nWt4UMB*hioh-!7tsAAeQg* zq)ln)-DiqL)l`4$T+guV;e26TbJe@f72W$yZmuiKZjpAhhLs?X6PvY<0?t>St5Zwo`n@bdEF_PYN=Pr zvGHN}MHI)9Q>A&iMTWjoANjMHx;MEWg7abUs!e_5lCIt`dnVEAYa175F4&<ib~Jb@j~VD_cQ+10f%*aZh#iVrSunU|}Ixd`@>3yFWbDyq-nn71@V(+Lwvfk>sv#EJ2is$v*PL>V3?e^~OZYz^TqHTLk6tq+4O&Ynh zJrJJ*8xDLsE)=$h*&AmswC86w&Tp*O(OGD9W>#I2akmFsdqZ5$?6s^tj7^lB)V&>( zdYdi(eCu4WRLjYt+cpi>lb#E?nYw!Ea+FoJcXhtj%w{}FO&pwa>420^hWV#oUOcJC zugi0ZKBX7tPtGWl*lQ-$+;hJg+01B@C&x+{^@#PvK%K@;-FDnp3E?P9lX|@#n$$D} zR`cQ%u|(po8ogc^Kt(G1d}Wo?De0|**01&AQIx8J4Z)S6=_6^Xu5slOXF_vYmBS6) zO@T%Mb5mzczj@=jwm##RYqw`Yr`dU@>+@fgom-|RH$HGO*WhRw>2iKu1559SQXME& z_DXac-D|~JCe*Jq120B3yw7)2DxD!%IVuCXMGcf_HNuhCK5ejf9OFt}&yFugF4kGO z3yT`4iz2vYDKy+NiS60+xE|WrY5s9>{-=QJckVCAF&K!ghiYqdniTl_83J2YkGYvfi@ipqVO2)l%{oKgoSbj=-T%G7Gh zx>+AJ=G66&Z5*#Vk-AlGOdHXtB4zE|cjA<7)zn7qoXmi_2HxV>-6u!#HL9mQ%NbLZhU(*@_*`Zwr-~JMa;D zxQ<%zH*~0Pwn)^nRLGbFcA_Ti#~hwSYMX0#5N}`?KE_^rjhgT$ZpR3#*Kwv$8yH3{ zz{d=hk)g(7^#sWS5)J%}TqeY9DNJAtdr<|4kVgETjMUU#5wd@w@ea2NDD+M#v;iHn z7N+CT{B-Y%X(iFF|3s3ct@cIdr%tG?ySQ~s+M#x#mrgI_|3M@FhK@kzt_`WXX}eL^ zW)B3<*pI=aeG%-ogY_HsXhYH7Yn-r|P{Ec%*Q2>YHb3aN1jXPuiQ&p0!j{B4DRux9pqd^R^Tpv2Wx3zX13IWWWFb 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 f7961df114..202cf6074d 100644 --- a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po @@ -1,24 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Aline Freitas , 2016 # Roberto Rosario, 2012 # Rogerio Falcone , 2015 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-11-17 23:07+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -36,7 +36,7 @@ msgstr "Documentos" #: forms.py:53 msgid "Tags to attach to the document." -msgstr "" +msgstr "Etiquetas para anexar ao documento." #: links.py:14 msgid "Remove tag" @@ -76,11 +76,11 @@ msgstr "Etiqueta" #: models.py:53 msgid "Document tag" -msgstr "" +msgstr "Etiqueta do documento" #: models.py:54 msgid "Document tags" -msgstr "" +msgstr "Etiquetas do documento" #: permissions.py:10 msgid "Create new tags" @@ -108,7 +108,7 @@ msgstr "Remover etiquetas de documentos" #: serializers.py:46 msgid "Primary key of the tag to be added." -msgstr "" +msgstr "Chave primária da etiqueta a ser adicionada." #: views.py:34 msgid "Create tag" @@ -126,14 +126,13 @@ msgstr "Documento \"%(document)s\" já está marcado como \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." +msgstr "Etiqueta \"%(tag)s\" anexada com sucesso para o documento \"%(document)s\"." #: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Adicionar etiqueta ao documento" +msgstr[1] "Adicionar etiqueta aos documentos" #: views.py:160 msgid "Must provide at least one tag." @@ -156,8 +155,8 @@ msgstr "Será removido de todos os documentos." #: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Apagar a etiqueta selecionada?" +msgstr[1] "Apagar as etiquetas selecionadas?" #: views.py:231 #, python-format @@ -190,33 +189,39 @@ msgstr "Remove etiqueta dos documentos: %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" -msgstr "" +msgstr "Remover a etiqueta \"%(tag)s\" do documento: %(document)s?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" -msgstr "" +msgstr "Remover a etiqueta \"%(tag)s\" dos documentos: %(documents)s?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" -msgstr "" +msgstr "Remover as etiquetas: %(tags)s do documento: %(document)s?" #: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" -msgstr "" +msgstr "Remover as etiquetas %(tags)s dos documentos: %(documents)s?" #: views.py:379 #, python-format msgid "Document \"%(document)s\" wasn't tagged as \"%(tag)s\"" -msgstr "" +msgstr "Documento \"%(document)s\" não estava etiquetado como \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" +msgstr "Etiqueta \"%(tag)s\" removida com sucesso do documento \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.mo index 9b044b28788834e1d1502268bd0041e3adb9e8d4..6eedd58ce7c087676884e53361861fa451830845 100644 GIT binary patch delta 1128 zcmY+?Ur19?90%~z?&daEIsdf&Sb8ADN|$af#f#J=r6h-FK1hE#&f|7zZgO`oLP8o+ z5A~3Ekcb|l2aAFpf*^t(3I-Jv1^LjE5CqXf_|RJq(f4<|Q~I&p&$;KEd;a{+nXmm8 znOm#zE;9tje=q&FFxEnP@IbtUmGB+h1y`XD{)AQV7p#Dq##jhe!cG{0ahQTZI1l&0 z8_)|^;8w=w*kiZDbJ&cA*N`Uo0r$go*Z^zs)gc&%w4n2FAIw5(zYb{uE08973h^m> z50Al5FbTsLoca$#FXm^{DC|Im4QZt}Ax*ptzaSegU>)9<{ERiihY&yZ29KTaqx=3H z(m3l-hrYl+laR)pg}dQ3_x&D>V1D)pgRI=SkQGFTrYf7dF8s zZu@7q{trBe`Y_UjBGch1*auT^5gveRa1L`ZKk`-&!;sFj6*j{jhy*x+Bsf9+C}^h? zIDRMXlnL4$EsUZD|APZmr*;f{$>)R^~5C>D#xJ9v9s zKhmYXdK-EZ(O4I6@75EEmUcwtpeS0=QB&lLIbjt{ou9Vkq{tgKKW-XDOY)wKJ#8ej zBA*fFVY6^lwfV-?eczd?K~&iyBXw>TE{+VT-@da|Qd}-AaA_Ioth7oCYN+C*x>a#o zFYi?Hv|Vl%&PG#(31iYomloJY>Aw!D%|8(A-xzSlzZlw_K`aGEs{3=sl#$=8lxjE- a_h9nbz=wMGOPP}!nXz-WK~t*}!S27z3BMZv delta 738 zcmX}pO=#0#9LMozYt}Z|w6)PHV`_0|=Swh2OC3d>NCm~oMp4j-lZ=&7kVexeV;fBH zA}CDwBZ5Z{JBbHD@t_DI%&X4JE`s3QlRNMGbj3gX@_C*-;d#rS{6l;BSI&5@sJ&!} z{3Hj-(;gmFx>u=vXks58!VHdJKaOGrYv|)5n)n6{{Lt-x!Xo`O9LB$RK&fSACzLwI z3m^C6Eo49~;vl}nF?@&T@LzYl!t8p1YdrLVQ#g#XxW?umqdv%FQmGW)MSaM5+=I`s z%KB=x(@^R+>WPN8%riMn zHHI11R~Km%@j7;Io!<5?^;Hj$9I=Ql{TuYgIAG^wJ5U!F^S?MtrW!JSPC!BiYL9^WqTTU&A8`XmE>amjJdj;RCdj4^jvc`jU>|Bk4R{Ks6hf%dq z4`&)t9AZ0&nxWiF&Sb`e*4+JIj!B~Mc6~yAByY-@)ReqVotMqjimA8P2o}CRlF#W& bk~3Fi!_3GR^R#3wPhMEIOj~c|ME~d(Q*LG| 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 a5760b1885..f712089923 100644 --- a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po @@ -1,26 +1,25 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Abalaru Paul , 2013 # Badea Gabriel , 2013 +# Stefaniu Criste , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-04-17 09:44+0000\n" +"Last-Translator: Stefaniu Criste \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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -41,15 +40,15 @@ msgstr "" #: links.py:14 msgid "Remove tag" -msgstr "" +msgstr "Elimină eticheta" #: links.py:17 links.py:24 msgid "Attach tag" -msgstr "" +msgstr "Atașează etichetă" #: links.py:20 msgid "Remove tags" -msgstr "" +msgstr "Elimină etichete" #: links.py:28 msgid "Create new tag" @@ -57,15 +56,15 @@ msgstr "" #: links.py:32 links.py:45 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:36 msgid "Edit" -msgstr "Editează" +msgstr "Modifică" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Etichetă" #: models.py:22 msgid "Color" @@ -73,7 +72,7 @@ msgstr "Culoare" #: models.py:34 msgid "Tag" -msgstr "" +msgstr "Etichetă" #: models.py:53 msgid "Document tag" @@ -127,8 +126,7 @@ msgstr "Documentul \"%(document)s\" este deja etichetat cu \"%(tag)s\"" #: views.py:96 #, python-format msgid "Tag \"%(tag)s\" attached successfully to document \"%(document)s\"." -msgstr "" -"Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." +msgstr "Eticheta \"%(tag)s\" a fost atașată cu succes la documentul \"%(document)s\"." #: views.py:110 msgid "Attach tag to document" @@ -165,17 +163,17 @@ msgstr[2] "" #: views.py:231 #, python-format msgid "Edit tag: %s" -msgstr "" +msgstr "Modifică eticheta: %s" #: views.py:244 #, python-format msgid "Documents with the tag: %s" -msgstr "" +msgstr "Documente cu eticheta: %s" #: views.py:271 #, python-format msgid "Tags for document: %s" -msgstr "" +msgstr "Etichetele documentului: %s" #: views.py:286 msgid "Must provide at least one tagged document." @@ -193,16 +191,22 @@ msgstr "Eliminați eticheta de la documentele:% s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" @@ -219,9 +223,7 @@ msgstr "Documentul \"%(document)s\" nu a fost etichetat cu \"%(tag)s\"" #: views.py:388 #, python-format msgid "Tag \"%(tag)s\" removed successfully from document \"%(document)s\"." -msgstr "" -"Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s" -"\"." +msgstr "Eticheta \"%(tag)s\" a fost eliminată cu succes din documentul \"%(document)s\"." #~ msgid "remove tags" #~ msgstr "remove tags" diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.mo index 9e70d7103533025544b10ffb9106f97c570e4acb..b86ee3ea2b7328733e9103f48d590467a9c89ee5 100644 GIT binary patch literal 4968 zcmdUyTWlOx8Gr`}1x&bwaA`x^6PF}jn%RqEx6USO(>hKSsTNVX6h(cS?2esjcXzCr z*|?U9lr*hcDN&SKxm5C0Ky>!J`lntqMi% zY&<^)5AnVL`KP_f&qMGX_yGJJ`~kcJzW{gRjLh$a;@V${|OJm`$)#U@G&U)eRzrC$Grl8<|EdInCyuwS9fFT?%t*HHTR zk5J;={mrO;has&UUJ|F&?hv=sKA$=Jy31Ya9fAG?Nu<*)#nAjV<$3CYSHq@FOeWoRtH>drfzxRPtS&RkOVToRh}z&X6A*UfrfJ7YHO3t`BaM>Xfz&D5aeA}iQC z>-JB(8AEQLY&sQXxtp>`PLiL5AxTW0bF@w3=+2trQL5^0)^(Yd8s=i}va9Z>E4BwI zXV;ZwtF#?=CQ2jR#1zYI*J`Hg&b1p2+P%ApMYbFDaK2C939Hqo-czgr2H0O=ul6k+ z+IM9Uav}X3Zwn%cNAWFkTD;6=Dz80Fk42l|Csv~&J(ai@dSoz`*rR_=JNC1j5BjOP z{12zmVk=TupZ z7E6!lrIJ2+L={KNS%(dp*#=NOlO`};>XWFi7;or!4&s!)L3X6-2c~3O0IrI5^&2APP+cg}^ zb_z`iL^tbAx6p`<6r6S;H#B={cBUI|DPJ6#wp$*jwO(CXAQ;bl-YYCL46Aia)y^A^ zYkHL*S5N8_T{&5C&UEydR?V(+)|A!6Im=6(Ei0!zbh^=YjD~*FcA9i>Yax7fD`Ur0 z^jH~b9Vitmm6AGmP|0I)f2CAXQ>v&C=Y6s=noJ$9jLBoDQ9NE6RWG~{sZ5r}a;TJI zl}e>3Q=!~sWxT6?G?$KJmt~SQk5{lTrA9GuBzJ5`^WP0F`W=6r-!=bZzZ1L|Tvh%@ z{#x)NgO_)jSN^*4SN+=}D_Z^rdMo}%+w1wA|9`#r{Tq@b&0i+^o8(|6O5FypH-gK- zYdu*^h5QY&y{3SOT?t-J#7N;LTbVMvCoA~3q5^4t&ue00-S2FgVGaK}#a&^=jXt-g zc96azj>bOto&T+L@0qLUrVnKGPS{lBIdvqs+&#;+J}qKI=VMYUUcVykNTU(^dPc{8 zD{5|kWsA<$(pg%xzpts7=D&gUOtS}9wir^urPN=Xmo@)Za5Yho%-s$yktqrCB4-*tTtvDSCP%s=7?{=`A0R#f7M zQYU#~;Q-!7KB#3(;Y+-T>v#!&wZG?BT^G2)pbO682v)I|#UEmx`5PaHz%MwC-!O>* zzfx1wSHnDHd2tKlxQe>)YaGK(Ea5(0z%f=UU==I)3eVziG;xC6OkoA}1|H)yenQ>h z&JLycsnZNY)K_^P&f!gLcb%D1J)~}RnA987f6}3^AwhCL#hz4z)InqZ2ZuZeYN~FM zh8%Q3Uvn3!uTDoe%5ap7k&^P9i8!iMTd27;!?o*qBdE=YH#bYrVC#b8qL7*wJHBh>psG=oQ(E?urrXmaDOAvKGsUKmJZ4 GiON4lB6QUN diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index b4f1d92fe2..f449b78be3 100644 --- a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-11-02 04:15+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -28,7 +26,7 @@ msgstr "Метки" #: apps.py:68 apps.py:80 msgid "Preview" -msgstr "" +msgstr "Предварительный просмотр" #: apps.py:84 models.py:24 msgid "Documents" @@ -36,27 +34,27 @@ msgstr "Документы" #: forms.py:53 msgid "Tags to attach to the document." -msgstr "" +msgstr "Метки, прикрепляемые к документу." #: links.py:14 msgid "Remove tag" -msgstr "" +msgstr "Снять метку" #: links.py:17 links.py:24 msgid "Attach tag" -msgstr "" +msgstr "Прикрепить метку" #: links.py:20 msgid "Remove tags" -msgstr "" +msgstr "Снять метки" #: links.py:28 msgid "Create new tag" -msgstr "" +msgstr "Создать новую метку" #: links.py:32 links.py:45 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:36 msgid "Edit" @@ -64,7 +62,7 @@ msgstr "Редактировать" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Надпись" #: models.py:22 msgid "Color" @@ -72,15 +70,15 @@ msgstr "Цвет" #: models.py:34 msgid "Tag" -msgstr "" +msgstr "Метка" #: models.py:53 msgid "Document tag" -msgstr "" +msgstr "Метка документа" #: models.py:54 msgid "Document tags" -msgstr "" +msgstr "Метки документов" #: permissions.py:10 msgid "Create new tags" @@ -108,11 +106,11 @@ msgstr "Удаление тегов из документов" #: serializers.py:46 msgid "Primary key of the tag to be added." -msgstr "" +msgstr "Первичный ключ добавляемой метки." #: views.py:34 msgid "Create tag" -msgstr "" +msgstr "Создать метку" #: views.py:59 msgid "Must provide at least one document." @@ -131,10 +129,10 @@ msgstr "Метка \"%(tag)s\" присвоена \"%(document)s\"." #: views.py:110 msgid "Attach tag to document" msgid_plural "Attach tag to documents" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Прикрепить метку к документам" +msgstr[1] "Прикрепить метки к документам" +msgstr[2] "Прикрепить метки к документам" +msgstr[3] "Прикрепить метки к документам" #: views.py:160 msgid "Must provide at least one tag." @@ -157,25 +155,25 @@ msgstr "Будет удален из всех документов." #: views.py:199 msgid "Delete the selected tag?" msgid_plural "Delete the selected tags?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +msgstr[0] "Удалить выбранную метку?" +msgstr[1] "Удалить выбранные метки?" +msgstr[2] "Удалить выбранные метки?" +msgstr[3] "Удалить выбранные метки?" #: views.py:231 #, python-format msgid "Edit tag: %s" -msgstr "" +msgstr "Редактировать метку %s" #: views.py:244 #, python-format msgid "Documents with the tag: %s" -msgstr "" +msgstr "Документы с меткой: %s" #: views.py:271 #, python-format msgid "Tags for document: %s" -msgstr "" +msgstr "Метки документа: %s" #: views.py:286 msgid "Must provide at least one tagged document." @@ -193,23 +191,29 @@ msgstr "Снять метку с документов %s." #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" -msgstr "" +msgstr "Снять метку \"%(tag)s\" с документа %(document)s?" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" -msgstr "" +msgstr "Снять метку \"%(tag)s\" с документов %(documents)s?" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" -msgstr "" +msgstr "Снять метки \"%(tags)s\" с документа %(document)s?" #: views.py:367 #, python-format msgid "Remove the tags %(tags)s from the documents: %(documents)s?" -msgstr "" +msgstr "Снять метки \"%(tags)s\" с документов %(documents)s?" #: views.py:379 #, python-format diff --git a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.mo index 76aca74a2fce803b26443b7f10ec7f3e9851c4c4..72bc579bf1dbfde89b4242158d4c2a93bb29d69f 100644 GIT binary patch delta 306 zcmcb|_M5H#o)F7a1|Z-7Vi_Qg0b*_-o&&@nZ~}-~f%qg4^8@jDAm#+(`#=m5e+k6O zK>QwvrGQwNk%55)Nb3RVD?n@v#2|GX%s@FH%?G4G`jvn*8v}zIgAS0P3=}X1(jW(f zLnIhVfHY7q1CU~12V#%|K?XAcF$e%P!vX8WttzZOiAkwB6K_m5HZ;^VGFC7!vNAQ- zH83$S;0o~94N5J`EY8f&({)KKNwrciGB7mL1*$VNS1_=!GPRsMkFjgA1ydBiPhwtr dX<|B1NpVhmu;=87Os#DGRe6coiIYW{JpumxElmIb delta 253 zcmey(c8{(8o)F7a1|VPuVi_O~0b*_-?g3&D*a5_>K)e%(`GI&p5OV_Yc_3B>;+sG$ z1;l@Wm<5O>7#SF@0I@6(gY, 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-11-17 08:59+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 #: links.py:43 models.py:35 permissions.py:7 views.py:139 @@ -64,7 +62,7 @@ msgstr "" #: models.py:20 msgid "Label" -msgstr "" +msgstr "Oznaka" #: models.py:22 msgid "Color" @@ -193,16 +191,22 @@ msgstr "" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.mo index f3df646cd89f4693e7ba013d9a3e919171acb10f..d48b0dd7da8050cc8e2258b28e801a3ce4914ae0 100644 GIT binary patch delta 48 zcmZn?Y7*LTjfLCLP}j&, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -186,16 +185,22 @@ msgstr "Xóa tag từ các tài liệu: %s" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.mo index c0a6af088f6fdcd6692db215f97972d67d9caa13..d900244e2dfbdfbab2fdaea51c9683b880240ffa 100644 GIT binary patch delta 48 zcmdlWut8wMP8M!MLtP_d1p^~1Q}fA3Sk_K%WR2qYNz6+xO-xU|JNr#8V2$2CaP E0CV!Z diff --git a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po index ada7fc98e1..9349954ebb 100644 --- a/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -10,15 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:33 apps.py:73 apps.py:90 forms.py:34 forms.py:52 links.py:40 @@ -187,16 +186,22 @@ msgstr "从文档: %s移除标签" #: views.py:344 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the document: ment)s?" msgid "Remove the tag \"%(tag)s\" from the document: %(document)s?" msgstr "" #: views.py:351 #, python-format +#| msgid "" +#| "u sure you wish to remove the tag \"%(tag)s\" from the documents: ments)s?" msgid "Remove the tag \"%(tag)s\" from the documents: %(documents)s?" msgstr "" #: views.py:360 #, python-format +#| msgid "" +#| "u sure you wish to remove the tags: %(tags)s from the document: ment)s?" msgid "Remove the tags: %(tags)s from the document: %(document)s?" msgstr "" diff --git a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.mo index 18a7a23e519abc7c78495bff72c4f9b14d58cbda..875cfe531797a61b94a78077675e8f86cef7de67 100644 GIT binary patch delta 45 zcmZ1>u|i_Q5>{?QLtP_d1p^~1Q}fB|Sr<-@WsBnRNz6+xO-xUu|i_Q5>{>l6I~;71w#`nL$k^2Sr_v7B<7`;CZ?xaDI^w6_GgRUyq&F(6#zo^ B4s!qi 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 e73d987389..5382d82cd7 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mohammed ALDOUB , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" -"ar/)\n" -"Language: ar\n" +"Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:37 permissions.py:7 msgid "User management" @@ -128,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -175,9 +174,7 @@ msgstr "يجب أن توفر ما لا يقل عن مستخدم واحد." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user and staff user deleting is not allowed, use the admin interface " -"for these cases." +msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." #: views.py:237 #, python-format @@ -191,11 +188,13 @@ msgstr "خطأ أثناء حذف المستخدم \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,9 +206,7 @@ msgstr "لا تتطابق كلمات المرور، حاول مرة أخرى." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user and staff user password reseting is not allowed, use the admin " -"interface for these cases." +msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.mo index 54c9ede82cfba2ccd883c5568cad72b504cd850d..c140e8308c96e340a4b8e41bbe411cf60a2cdef1 100644 GIT binary patch delta 45 zcmew@{abp&5>{?QLtP_d1p^~1Q}fB|S(i*sV2k4MNz6+xO-xU{>l6I~;71w#`nL$k^2S(otmB<7`;CZ?xaDI}#&4q}Vmyo=3|9ROe` B4)6c~ 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 73d6de8e25..ea0c98084a 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Iliya Georgiev , 2012 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/bg/)\n" -"Language: bg\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" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 permissions.py:7 @@ -127,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,9 +174,7 @@ msgstr "Трябва да изберете поне един потребите msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Изтриване на потребители от супер потребител и служител не е разрешено. " -"Използвайте администраторския модул за тези случаи." +msgstr "Изтриване на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." #: views.py:237 #, python-format @@ -190,11 +188,13 @@ msgstr "Грешка при изтриването на потребител \"% #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,9 +206,7 @@ msgstr "Паролата не съвпада. Опитайте отново." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Промяна на парола на потребители от супер потребител и служител не е " -"разрешено. Използвайте администраторския модул за тези случаи." +msgstr "Промяна на парола на потребители от супер потребител и служител не е разрешено. Използвайте администраторския модул за тези случаи." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.mo index ac2d4138db73bce9fdffe7b212dcda710f7be782..b4488727f73bb6538d82a29331c3195ec5fa4e28 100644 GIT binary patch delta 48 zcmX>rdRBD95>{?QLtP_d1p^~1Q}fB|S@%t@WsBnXNz6+xO-xUrdRBD95>{>l6I~;71w#`nL$k^2S@-e#B<7`;CZ?xaDI^ugJ2_6yVT;~;o$VVl E0D$rkdjJ3c 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 e6837bb85c..340a4d0570 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 @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # www.ping.ba , 2013 @@ -9,17 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" -"rosarior/mayan-edms/language/bs_BA/)\n" -"Language: bs_BA\n" +"Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:37 permissions.py:7 msgid "User management" @@ -128,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -175,9 +174,7 @@ msgstr "Mora biti obebjeđen bar jedan korisnik." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user i staff user brisanja nisu dozvoljena, koristite administratorski " -"interface za takve slučajeve" +msgstr "Super user i staff user brisanja nisu dozvoljena, koristite administratorski interface za takve slučajeve" #: views.py:237 #, python-format @@ -191,11 +188,13 @@ msgstr "Greška brisanja korisnika \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,9 +206,7 @@ msgstr "Lozinke se ne podudaraju, pokušajte ponovo." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user i staff user reset lozinke nije dozvoljen, koristite " -"administratorski interface za takve slučajeve" +msgstr "Super user i staff user reset lozinke nije dozvoljen, koristite administratorski interface za takve slučajeve" #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/da/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/da/LC_MESSAGES/django.mo index 160b1d958e0e95e07da9ef247fb3f6a03c186c93..fc052d0b9fb65fb3c27c23bc6411d8262fd12cd3 100644 GIT binary patch delta 45 zcmdlkyj^&M2`jgup{|j!f`O5hsrh7k)`gSbvPSXvB<7`;CZ?xaDWoKBc4I4K1^_b< B4ZZ*X delta 45 zcmdlkyj^&M2`jgOiLQ~kf}x3(q1j}6)`dJiiFxUziRr0U3Mq+`@3Tg4c4sSK1^_H9 B4YdFO diff --git a/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po index ca528bf317..4be90828f6 100644 --- a/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/da/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # René Rovsing Bach , 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/" -"da/)\n" -"Language: da\n" +"Language-Team: Danish (http://www.transifex.com/rosarior/mayan-edms/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 permissions.py:7 @@ -127,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,9 +174,7 @@ msgstr "Der skal angives mindst én bruger." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Det er ikke tilladt at slette superbruger og personalebruger. Anvend " -"administrator brugerfladen i disse tilfælde." +msgstr "Det er ikke tilladt at slette superbruger og personalebruger. Anvend administrator brugerfladen i disse tilfælde." #: views.py:237 #, python-format @@ -190,11 +188,13 @@ msgstr "Fejl ved sletning af bruger \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,9 +206,7 @@ msgstr "De to password stemmer ikke overens, prøv igen." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Det er ikke tilladt at nulstille Superbruger og personale brugeradgangskode. " -"Anvend administrator brugerflade istedet." +msgstr "Det er ikke tilladt at nulstille Superbruger og personale brugeradgangskode. Anvend administrator brugerflade istedet." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo index f19027b81a769bde7b578b0981fc5f38c120bdd8..9976a65f11768ba36a8e0ee073227597a8ae372f 100644 GIT binary patch delta 1255 zcmXxjPe>GD7{~Fq+EQ0@Ys)`nu3K8U+Su%BDr=;b1(v9Ubtp*3oYb&2W>@%fH4fAjm6l3o3Pg(AN2cId~f1r?%(t8KlI06pyvC4rN+#d zMJ`Gh_~E;ZTj__^=f-Q0A(KRnx8oMP!oPe9mx`I!+*%flo#d}szyE6j9Tyna+YQQN#0ChD^6n{zCvvzkMfbc zDMPJSRYd*ExQH{L1-noS4PZH5@*lj7HvM^2$vS)8Op}Fc-JE&}Rv`SL3 zo2H}LPgBM8|69r2QpXRfWg2MO&{~>ytn3sjH_4dov?`j8LBT#v4NaTYYpi2X=uJ>1 zS3}j&+oVvUmR@uHdlfrrduWyF5VbUwNu^hWvL%7G;=@zU*tjz^?nWomuJ^nr&=nYs z$E`$T)J`N1v{-hNZ3p{$tyAvQSbA(CWpz3kHyKUX@n-H>@pv>5Pd2sI+eEP2NoTBn z&q<}noy>%nj2>~l)b;4WAef0X`;wZ~y=R delta 1190 zcmXxjJxmi}9LMoTJ*BM(3aGpl&KDHKlWVPL+JPt-HImq%#uyUy2nT62J=0c4>%gQN zg-r(snRH@saWF9s8aIW+M2s#bz9cM84#w}Vz5dhZKF{;q)92;?v=4jU#>-z?tVKf% zQMxG$8;lvn#!WnkcFUM8*n!PxV-vc#9Y;d5p&ss_zknJ)7xpip=6Q;{@EPtjrfgo< zD&`Zm@nSt}TbqrcYC2K9^F z{!wY5qm@xws0(!h7klv(HsTcS#Q?Q|dF;U_sBy2bAHU)xMwxUPeboDRp+8ZXiAC5r z>zht0TG&RN@EAVg8qR3|?e82zJO3T}7d0*tt9`EU3F7V^0=Kyr4z%Bn{wS)_JT9v-^~?s zLEahjN`Bf-x_WoiNha)MBArMMx=w#(bbZYrp?78(H$2)92 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 727b38f895..382fcb8474 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 @@ -1,10 +1,10 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: -# Berny , 2015 +# Berny , 2015-2016 # Mathias Behrle , 2014 # Stefan Lodders , 2012 # tetjarediske , 2012 @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" -"edms/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-04-11 21:48+0000\n" +"Last-Translator: Berny \n" +"Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 permissions.py:7 @@ -131,12 +130,13 @@ msgstr "Gruppe %s bearbeiten" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Gruppe %s löschen?" #: views.py:72 msgid "Available users" -msgstr "" +msgstr "Verfügbare Nutzer" #: views.py:73 msgid "Members of groups" @@ -178,9 +178,7 @@ msgstr "Es muss mindestens ein Benutzer angegeben werden" msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " -"Administratoren-Oberfläche dafür." +msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." #: views.py:237 #, python-format @@ -194,11 +192,13 @@ msgstr "Fehler beim Löschen des Benutzers \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Benutzer %s löschen?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Die Benutzer %s löschen?" @@ -210,9 +210,7 @@ msgstr "Passwörter stimmen nicht überein, bitte noch einmal versuchen" msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die " -"Administratoren-Oberfläche dafür." +msgstr "Super User und Staff Benutzer löschen ist nicht erlaubt, benutzen Sie die Administratoren-Oberfläche dafür." #: views.py:319 #, python-format @@ -222,9 +220,7 @@ msgstr "Passwort erfolgreich zurückgesetzt für Benutzer %s" #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": " -"%(error)s" +msgstr "Fehler beim Zurücksetzen des Passworts für den Benutzer \"%(user)s\": %(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.mo index 7768e4efff55902193f3ddb2c85ff441d2e18812..934b7744aa25321530ca3c13081879325339cda7 100644 GIT binary patch delta 24 fcmcaCbXjPF2`jgup{|j!f`O5hsrhDmRuL8eS7Qb0 delta 24 fcmcaCbXjPF2`jgOiLQ~kf}x3(q1k48RuL8eSE>c> 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 5a77f1a280..5e341ed74d 100644 --- a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/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: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2012-12-12 06:07+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/projects/p/mayan-edms/" diff --git a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.mo index 3b05df345ad9cc893dcf5cc2fb0afb3edb6325a3..b61d51bd26d0bdb41bf0058af87f095b77123b91 100644 GIT binary patch delta 24 gcmcaAcU5k~b`EYsLtP_d1p^~1Q}fM-I3}|J0A|w%lK=n! delta 24 gcmcaAcU5k~b`EX>6I~;71w#`nL$l3?I3}|J0B0HpmjD0& 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 faecd46eca..8ebc0a5b00 100644 --- a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # jmcainzos , 2014 @@ -13,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-05-09 01:33+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" -"language/es/)\n" -"Language: es\n" +"Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 permissions.py:7 @@ -131,6 +130,7 @@ msgstr "Editar grupo: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "¿Borrar el grupo: %s?" @@ -178,9 +178,7 @@ msgstr "Debe indicar al menos un usuario." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"No se permite eliminar el super usuario y usuario de personal. Use la " -"interfaz de administración para estos casos." +msgstr "No se permite eliminar el super usuario y usuario de personal. Use la interfaz de administración para estos casos." #: views.py:237 #, python-format @@ -194,11 +192,13 @@ msgstr "Error eliminando el usuario \"%(user)s\": %(error)s " #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "¿Borrar el usuario: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "¿Borrar los usuarios: %s?" @@ -210,9 +210,7 @@ msgstr "Las contraseñas no coinciden. Vuelva a intentarlo." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"No se permite cambiar la contraseña del super usuario y del usuario de " -"personal. Use la interfaz de administración para estos casos." +msgstr "No se permite cambiar la contraseña del super usuario y del usuario de personal. Use la interfaz de administración para estos casos." #: views.py:319 #, python-format @@ -222,8 +220,7 @@ msgstr "Contraseña restablecida para el usuario: %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " +msgstr "Error restaurando la contraseña para el usuario \"%(user)s\": %(error)s " #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.mo index fbdb3acaee753c78e25d79b7e3ba53bef0d74cac..27ae4a936c899f36a1633ec142bf18ebe8d36500 100644 GIT binary patch delta 45 zcmX>ieMEYLA3L|9p{|j!f`O5hsrlqc_C=F9IHGub67$ka6Vp?z6w(qmCvqgS0st>S B4N?FA delta 45 zcmX>ieMEYLA3L{!iLQ~kf}x3(q1og}_C-8CiFxUziRr0U3TcUxf3ZhzPU1*n1pqtO B4oCn1 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 2e2cb1d07f..3a3687b028 100644 --- a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Mehdi Amani , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" -"language/fa/)\n" -"Language: fa\n" +"Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 permissions.py:7 @@ -127,6 +126,7 @@ msgstr "ویرایش گروه : %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -188,11 +188,13 @@ msgstr "خطا در حذف کاربر \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.mo index 27ea533c87d7f646823d0b92e90a9d24986a5217..eb2734cea808011efe5b6598f9477120bd79ba8c 100644 GIT binary patch delta 1268 zcmX}rOGs2v9LMpKjpmGR%j{{_((=)r?ubkcp$lyKyTfPz$+=Wq2L=m^r?h@gBzTH3sn~>cziN^Z#Kr z?>8lk>cMrm1>5|72P%UR+=pXWinnn;-bXFqCD!3v)V#0QgnHO{XvQlzhr0j6H&jfL zyx+8N!D37twU8cEhNJkL?MV6et3qoFszpj?no;w5a0e!ECtmaWcX1c}1=QBQK`r1D zsv@hH)5;4*0uhPX>4r?&Os0Us^Wq1SGf&9xYR48MG=BwOPaU-g^YT4+mB~wUW zNhA1YOtrcxHrbl48j6w01t^V_7oRCN?2nBPJjSnV}uFdzCS zD8cn;|s#g8W^X55LS mJ^#0OaDF6su5^7QZjEQ=Uj(O0M!i%zm1O}lnWa#uyXZg0Y=j8_ delta 1187 zcmXxjPi%{E9LMn=9-CHeY(;gZ&rr5?k3FrLq=?uEVqzJY$P&r3=$3}H(w5_Tm=m{l zOPqu(ZX9F|5*LXR*};Wm5n>mKf011s#QRfEzv-{9=g+Ut@Av(FpFZe%V^==6S@VYI zXY6FmtubZ@L+kh=B9<{txC2|!#ujvOGamOH@%3;E*Ndq6cl_&fsOLP!ZTJMY8dEW^ z{~wrT40GeRe{QWehC>rYU5{ZqrcoO>gPZU&@-bPydhj|9;5-I!3AOMC)cjA_hCeXO z`sObO&0J__mKN$jW#D2A2Qh>bxEl+o4ODR#K0?iVh28iC$1%V|uVEH-|E=$LRAqu2 z*f{H(C{n!x#c($I!JqDuD*HO~st7K~s7Qy9f_s8&v*7M?{_Vga?` zr??lFu%aKV`Zq!wjp^b%fvj!LV<(Q`9xP)A-uHcun)eP*;WA#u80F&7%pl2{yQp`i ziraAk|-cY4eeBYR`2xYDoD7#VU<-aX@s&=i5t<&f&N7b zy>$9lD`ADr=u~<1vMBa5^oIBAglMV7ts{#!t<%;OH|?Yj+sSk$IpDZy*A0$ba7MGY zbERA%@0|3?*^HfXb?=~)O4_MpCYegOL~z(Em7PmPFJHRhl?%m;JzAK^7Rv=JdBt3z f))%-K8us#2x4bDHGFhz61jcJ$1Np`2V6y2STP1E8 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 083f4f659a..b463e91843 100644 --- a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po @@ -1,10 +1,11 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Christophe CHAUVET , 2014 +# Christophe CHAUVET , 2014 # Pierre Lhoste , 2012 # SadE54 , 2013 # Thierry Schott , 2016 @@ -12,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" -"fr/)\n" -"Language: fr\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-04-28 15:12+0000\n" +"Last-Translator: Baptiste GAILLET \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" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:37 permissions.py:7 @@ -130,12 +130,13 @@ msgstr "Modification du groupe : %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Supprimer le groupe : %s ?" #: views.py:72 msgid "Available users" -msgstr "" +msgstr "Utilisateurs disponibles" #: views.py:73 msgid "Members of groups" @@ -177,9 +178,7 @@ msgstr "Vous devez indiquer au moins un utilisateur." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"La suppression des comptes super utilisateur et staff n'est pas autorisée " -"ici, veuillez le faire via l'interface d'administration." +msgstr "La suppression des comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." #: views.py:237 #, python-format @@ -189,16 +188,17 @@ msgstr "Utilisateur \"%s\" supprimé avec succès." #: views.py:241 #, python-format msgid "Error deleting user \"%(user)s\": %(error)s" -msgstr "" -"Erreur lors de la suppression de l'utilisateur \"%(user)s\" : %(error)s" +msgstr "Erreur lors de la suppression de l'utilisateur \"%(user)s\" : %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Supprimer l'utilisateur : %s ?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Supprimer les utilisateurs : %s ?" @@ -210,10 +210,7 @@ msgstr "Les mots de passe ne correspondent pas, veuillez réessayer." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"La réinitialisation des mots de passe pour les comptes super utilisateur et " -"staff n'est pas autorisée ici, veuillez le faire via l'interface " -"d'administration." +msgstr "La réinitialisation des mots de passe pour les comptes super utilisateur et staff n'est pas autorisée ici, veuillez le faire via l'interface d'administration." #: views.py:319 #, python-format @@ -223,9 +220,7 @@ msgstr "Mot de passe ré-initialisé avec succès pour l'utilisateur : %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur " -"\"%(user)s\" : %(error)s" +msgstr "Erreur lors de la ré-initialisation du mot de passe pour l'utilisateur \"%(user)s\" : %(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.mo index 3b28c7922e8abb7f9bae81cddd4fe3cc77a9d5b0..7826a7171e4e3d1572f52b7d89b1b0be0a733b33 100644 GIT binary patch delta 42 ycmX@fe3E%WJGY^su92~VfsvJ|`NT;}COb1m@%SX>rI#kAr&=jwlun+*s0#od+zpce delta 42 ycmX@fe3E%WJGX&}u93Ndp^25D*~CdpczhD`(n}N5Q>_#-N++8#Mo*s0r~?2YGYyIW 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 f00c0729df..67048c3845 100644 --- a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po @@ -1,22 +1,21 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" -"language/hu/)\n" -"Language: hu\n" +"Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 permissions.py:7 @@ -126,6 +125,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -187,11 +187,13 @@ msgstr "" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.mo index af923b777232c788f06827926fec5099ceefe285..fe54f6375c81d3a1b97673915d637778d8dad304 100644 GIT binary patch delta 42 ycmaFP{G55hQf@;-T_a-!10yR_^NAalPEKNs;_*q$OD|1KPqk9WOqsl!Q3n7r4-Pp1 delta 42 ycmaFP{G55hQf>niT_bY^LlY}Qvxys)^7tg?rI#kAr&=jwrc4fDjGnxQQ5yg;Z5T+zi&hP2f@RG4M>*|3=pCW_%NT9OGBB z@#|Utry#BOHTV?xE%+q(bH+cxt!Qt)KkeTQqKh>^>OTTL0k%NWV+ni|TmkXNF5_nu zd>1?beg-}a{tnWGW+Xj-~ z_kbif0g@eOK+<@IVa$q-JT?_c5lbG*m2}N@9j3R37FpXiY+CvoCmBzHmHN^_nvwiDSAlOAb ztanA|aTAMn>Zmee%2<_!@9P!mjghd;FX06$Ix%qYVN#tze;50 zf8Jyv%_lR+U3=tULuvbJg_Ywr1?6qW0}+aj3}hHvdBe^rgm3MM>+d9=88#Q`^U{r- zSL_-arlUOPc+xRWOE>ty+?keRZwSac)3_)ae7sga z;MD8R_Z@l!fQ`=vwLC~3(%Zk?Rm8-qtjPK|5dShRGZw+PO6q3(rMIto5h&2v) zQ$()jQzGd46p=##wJUDct_1GU4xP@5tAoRs9d;5pz-dVlH27>Rd<6?emg2bEs8&~2 zRw^;At=jS;&8SA&h)C(E8jz`u^a4}$vqh>Zu8s~gXPYynN9vW@0ItXw4t83rU6>oo zi*dE`# zu5Fsh@d=)OPL70p=OnL>;vb4*F|K;eS_#M%4tLV+s;t@Z6;DV#h5Lf~xu;B5hiXw_ zge};i-adQd%P0`V@v`?f4->tt)3tTkQ|v}T&t&X&GL=cfHJu`KrSA(im3yvh5li=(>lPl zrRlW9I!l2(6GW$@lAg?U&Qm4*s&6g~{n9O;op4bKYltK5$DZXN0nCPa}^~qRt+GoCPnk(@pCciQOQg5Y`d_iX0loSo AQvd(} delta 936 zcmY+?O=uHA6u|L`rm^{|+7GR@wu|4Qi<=l*2=<^9z+ldo)kg6^(aa!;#CyL%>Y-Zlf67fL+bpwt$8)bcrQC4bY(KVpRZGj79g*n{DXH0;A}9KlxA)>%+f zbcT3w4P~OIxCxhW5MN;eS8+G4p%mM}>@sfRL7c={tYHB^po|Z*nwZ1Qcon69MIPO( zuj+K9vd36w*UPPZlqzJW7g}CH*~txT$2+(a@1sn-+NXw5lt$Uv5_aHA+=p*le#ZmkJyE6h;|MNd0qeMq240UTwHKFA3VV%mvhPtg z`Uz!YYq%iSyqzX@FN0Em6eA(`$(sK~l1%QmkJd?Jj%LUXS^r=3(v!s{<_>NmPN9~}PHPV)h z9W&D@Bb~~o(uXY~HevgLIpf)7zhnolmo=tcCJtQmZO?JF8J$T?*yXvZJ;x+Ypl?QJ z^_S?8t}(A#sW?W#@hfiG$vY*-&~~i9-Jy0F(NALI`cyolAH?r={QbCDw#Rob61jF~ SzT*0UZRk*, 2016 # Pierpaolo Baldan , 2011 # Roberto Rosario, 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" -"language/it/)\n" -"Language: it\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-09-24 11:31+0000\n" +"Last-Translator: Marco Camplese \n" +"Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 permissions.py:7 @@ -27,11 +27,11 @@ msgstr "Gestione utenti" #: apps.py:47 msgid "All the groups." -msgstr "" +msgstr "Tutti i gruppi" #: apps.py:51 msgid "All the users." -msgstr "" +msgstr "Tutti gli utenti" #: apps.py:56 links.py:30 msgid "Members" @@ -39,7 +39,7 @@ msgstr "Membri " #: apps.py:60 msgid "Full name" -msgstr "" +msgstr "Nome completo" #: apps.py:63 msgid "Email" @@ -47,11 +47,11 @@ msgstr "Email" #: apps.py:66 msgid "Active" -msgstr "" +msgstr "Attivo" #: apps.py:72 msgid "Has usable password?" -msgstr "" +msgstr "La password è utilizzabile?" #: forms.py:16 msgid "New password" @@ -63,7 +63,7 @@ msgstr "Conferma password" #: links.py:14 views.py:29 msgid "Create new group" -msgstr "" +msgstr "Crea nuovo gruppo" #: links.py:18 links.py:42 links.py:58 msgid "Delete" @@ -79,7 +79,7 @@ msgstr "Gruppi" #: links.py:38 views.py:197 msgid "Create new user" -msgstr "" +msgstr "Crea nuovo utente" #: links.py:54 links.py:70 views.py:169 msgid "Users" @@ -87,7 +87,7 @@ msgstr "Utenti" #: links.py:62 links.py:66 msgid "Reset password" -msgstr "" +msgstr "Reset della password" #: permissions.py:10 msgid "Create new groups" @@ -124,30 +124,31 @@ msgstr "Visualizza utenti" #: views.py:45 #, python-format msgid "Edit group: %s" -msgstr "" +msgstr "Modifica gruppo: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" -msgstr "" +msgstr "Cancellare il gruppo: %s?" #: views.py:72 msgid "Available users" -msgstr "" +msgstr "Utenti disponibili" #: views.py:73 msgid "Members of groups" -msgstr "" +msgstr "Membri dei gruppi" #: views.py:94 #, python-format msgid "Members of group: %s" -msgstr "" +msgstr "Membri del gruppo: %s" #: views.py:127 #, python-format msgid "Edit user: %s" -msgstr "" +msgstr "Modifica utente: %s" #: views.py:133 msgid "Available groups" @@ -155,12 +156,12 @@ msgstr "Gruppi disponibili " #: views.py:134 msgid "Groups joined" -msgstr "" +msgstr "Gruppi aggiunti" #: views.py:143 #, python-format msgid "Groups of user: %s" -msgstr "" +msgstr "Gruppi per l'utente: %s" #: views.py:188 #, python-format @@ -175,9 +176,7 @@ msgstr "Devi fornire almeno un utente." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Al super utente e utente non è consentito la cancellazione del personale, " -"utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "Al super utente e utente non è consentito la cancellazione del personale, utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:237 #, python-format @@ -191,13 +190,15 @@ msgstr "Errore nella cancellazione dell'utente \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" -msgstr "" +msgstr "Cancellare l'utente: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" -msgstr "" +msgstr "Cancellare gli utenti: %s?" #: views.py:300 msgid "Passwords do not match, try again." @@ -207,9 +208,7 @@ msgstr "La password non corrisponde, riprova." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Al super utente e utente non è consentito di reimpostare la password " -"personale, utilizzare l'interfaccia di amministrazione per questi casi." +msgstr "Al super utente e utente non è consentito di reimpostare la password personale, utilizzare l'interfaccia di amministrazione per questi casi." #: views.py:319 #, python-format @@ -219,9 +218,7 @@ msgstr "Password reimpostata per l'utente: %s." #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Errore per il reimpostamento della password per l'utente \"%(user)s\": " -"%(error)s" +msgstr "Errore per il reimpostamento della password per l'utente \"%(user)s\": %(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.mo index 65f047cd5d2c9c3f3ed60e50a80473c351d7108d..46da19310826bd004513570c0975565d11625c93 100644 GIT binary patch delta 1280 zcmXxjOGs2v9LMofjisY$nf6X^YUZPBcg9CDMi~|qm`d6rTjU+R=*@AA86T^V0;6yt zG_?p^MT-`#vNqu+&{i#L8&R8(qE>-W)b}^u`Qw?-J?D<+od5rvS*v(bIrphF^w&@DA?g{lnn>vtaxcYQ8nxYs{Q^ z&qFx_UjsL=jDAVp=6DS2P%U;ti(7L;a#l4MbrjfVgfo* ziu}a6Lp*HopbW|jjoFVasPW6FJK-aHF!zG@i^2QnsEw?mHvSQn$U1i7FYLz%WmBc* zk>t%I)LmLCqW;?13kI~{JJbYUP#JwgP5cj=u#AJ#f?e2*1E>nz$K$w!b-0QV{DD4J zvU&<1U@iW^8mw0RHQ`0JLlMk1R0T#*8@i30fH^_4XbO!h*i&}%`oCP1^3ag$pt4m$ zItIltno56?rUZ5WvbWz>CkU#R%~mDfO4DUib_!L4q_XFz%cSfTB$Ula7gk56`=Y3) zDWP06@}OUnLW$e@nd|HoM`Va7}NHn5iBE)_$b>4r9!Hn$y delta 1190 zcmXxj&r1|x9LMpe+O2lmT=PfinmT2cW}`Ffs<0lC3N%V{Nu1yE3~4oh;~F z(5`_LLR+rxoq2^q5&TQQCn)}e#-cs6h<(8ELA_fhXZ3hq}>^Q_`we2dM-ESdK^ zC*~VA@n9>s4uy^3)Fe>%JFyW{s01ePAYMWKOqN40-oas9#t42!E&LVr{suPSFKl9c zv(3pqZZz_i7HUIP;9w`7!x+xtaV($`c#0kP3iaMP_TVPYVuVR=VixuMW8hCzXQKN_ zob^qD6D@3^DjdR>e1?n2T;>O5DD&T_mT#lpi${0tLbY@RkKiP>;w? z;1|?@Cdn^cpUjk>L}ttXBDdG>N3HOGZhLHT 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 fc786aa0ba..acdee61588 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 @@ -1,23 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# Evelijn Saaltink , 2016 # Justin Albstbstmeijer , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" -"edms/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-10-28 08:58+0000\n" +"Last-Translator: Evelijn Saaltink \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 permissions.py:7 @@ -127,12 +127,13 @@ msgstr "Bewerk groep: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Verwijder de groep: %s?" #: views.py:72 msgid "Available users" -msgstr "" +msgstr "Beschikbare gebruikers" #: views.py:73 msgid "Members of groups" @@ -174,9 +175,7 @@ msgstr "U dient minimaal één gebruiker in te voeren." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super gebruiker en medewerker verwijderen is niet toegestaan, gebruik de " -"admin gebruiker voor deze zaken." +msgstr "Super gebruiker en medewerker verwijderen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." #: views.py:237 #, python-format @@ -190,11 +189,13 @@ msgstr "Fout tijdens het verwijderen van gebruiker \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Verwijder de gebruiker: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Verwijder de gebruikers: %s?" @@ -206,9 +207,7 @@ msgstr "Wachtwoord is niet het zelfde, probeer het opnieuw." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, " -"gebruik de admin gebruiker voor deze zaken." +msgstr "Super gebruiker en medewerker wachtwoord aanpassen is niet toegestaan, gebruik de admin gebruiker voor deze zaken." #: views.py:319 #, python-format @@ -218,9 +217,7 @@ msgstr "Succesvol wachtwoord aangepast voor gebruiker: %s" #: views.py:325 #, python-format msgid "Error reseting password for user \"%(user)s\": %(error)s" -msgstr "" -"Fout tijdens het veranderen van het wachtwoord voor gebruiker \"%(user)s\": " -"%(error)s" +msgstr "Fout tijdens het veranderen van het wachtwoord voor gebruiker \"%(user)s\": %(error)s" #: views.py:342 #, python-format diff --git a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.mo index e2c996f11fcdf17ba5f0e82561e40a3c325530ec..358f2966ca962f525fa7555aeac60f6675048cb7 100644 GIT binary patch delta 1591 zcmZ{jO>7%Q6vrnY;KVVcl$3tZkEPI33UQnSD1<^=#S&5pQl(Ob!lfH~>#pMLI=kyw z4oDW2D#VdGIapi}A1X&AtCuPgQtRB1df-@uP!Cjb$G)DPtODjlnh?KP9{iN0|Se%tszEhM_qOl zx)WU>mEtU=LK}6L25Q!wf9K{csWL;uW|Tehszn zIy?k#!w=yQhZbQ8YW>HAze6dR86aTYzng(B-Vc@85qO6(yaU;5CevN1-+)qT2I_!0 zh=eA93ivaqbH0E&=XE4jHox4#CC&1_v4F!6!RWDVn98M0rHbr1njW8mQ06iv`cgciQ~i~pqK|6>pP?yR znaV;kalQ1|R96`Z#R04CGL=atHFm_KZg&{y-y@T<`d8~s$Shi1f7M#{JWaBWX@Vh! zF((Rp7@u;vFv zGaWc~!o^~#av+0@?jYoocBt=#KVljF@#QrmNR+jE_=HS2n=9fb3)b+j0Jvb7CQ zwpcq}S|GV>!C!c*c_nqanHu;YGh=(Ds$FuXtV+3gZoqHMhRgLZns+5YwNlTT*iook z)%CS{H1F3uw}3bAhf$|h@se$ubN65S%qc&rxlT}Azh+&q!}W{4ITO`xw1Z{K^J|?; z@g1F(c@HI*>zz+6@ABZ~nKNP4>s(@{2s*8q`3h;Mtxn)5~1# N5qy$X`)+!r_aC7J4153p delta 1045 zcmX}qUr1A77{~F~rRL_=A1zb!qUII^u}Fp4PpOM+&*P=xA~2OX@P*rw8z*rh}l z4GGB`=`IR_6+{peWp)!01QkUPbS2%?h0sON_qVMcc=tKyJ@3x@yw7vy+W$09f32&W zGej4og^{Q*W*=Vn@k3l#V@x$VxBcjcm{W33VElwiCb|VciiKO{YZh@@Cwa_8Extze>OI=HQl4+*VJG(;sFI&XmGT^R;|yy3U7W;^n8ki} z?ZFqQgnyw9&_JJ+P&7pSo47c{gcb~=D#t;JAET~7Dxh|CFcd1O4#9U;Y?pdW z;fm2%)*QZ+OHR7^^OduO-BtdI!m;XvZ#W#Yqx-E$EFS5#!?AEUFwk!gx|7Ll(o5S% zotzuDqG3JTYeyqiG!l, 2015 +# Daniel Winiarski , 2016 # mic , 2012 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" -"pl/)\n" -"Language: pl\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-08-04 09:31+0000\n" +"Last-Translator: Daniel Winiarski \n" +"Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: apps.py:37 permissions.py:7 msgid "User management" @@ -28,11 +27,11 @@ msgstr "Zarządzanie użytkownikami" #: apps.py:47 msgid "All the groups." -msgstr "" +msgstr "Wszystkie grupy." #: apps.py:51 msgid "All the users." -msgstr "" +msgstr "Wszyscy użytkownicy." #: apps.py:56 links.py:30 msgid "Members" @@ -64,7 +63,7 @@ msgstr "Potwierdź hasło" #: links.py:14 views.py:29 msgid "Create new group" -msgstr "utwórz nową grupę" +msgstr "Utwórz nową grupę" #: links.py:18 links.py:42 links.py:58 msgid "Delete" @@ -129,16 +128,17 @@ msgstr "Edycja grupy: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" -msgstr "" +msgstr "Usunąć grupę: %s?" #: views.py:72 msgid "Available users" -msgstr "" +msgstr "Dostępni użytkownicy" #: views.py:73 msgid "Members of groups" -msgstr "" +msgstr "Członkowie grup" #: views.py:94 #, python-format @@ -152,7 +152,7 @@ msgstr "Edytuj użytkownika: %s" #: views.py:133 msgid "Available groups" -msgstr "" +msgstr "Dostępne grupy" #: views.py:134 msgid "Groups joined" @@ -176,9 +176,7 @@ msgstr "Musi podać co najmniej jednego użytkownika." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user oraz staff user usuwanie nie jest możliwa , należy użyć " -"interfejsu administratora w takich przypadkach." +msgstr "Super user oraz staff user usuwanie nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." #: views.py:237 #, python-format @@ -192,13 +190,15 @@ msgstr "Błąd podczas usuwania użytkownika \" %(user)s \": %(error)s " #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" -msgstr "" +msgstr "Usunąć użytkownika: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" -msgstr "" +msgstr "Usunąć użytkowników: %s?" #: views.py:300 msgid "Passwords do not match, try again." @@ -208,9 +208,7 @@ msgstr "Hasła nie pasują, spróbuj ponownie." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu " -"administratora w takich przypadkach." +msgstr "Super user oraz staff user reset nie jest możliwa , należy użyć interfejsu administratora w takich przypadkach." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.mo index a79fd1d4b7268f71ca3f079434e3a05896d40099..f67d8e88354d606a8a91ae5e2ef3cb03475fe0c6 100644 GIT binary patch delta 44 zcmZ23yIgjI4F|WOp{|j!f`O5hsrh7gj-``-azt_aB<7`;CZ?xaDHLoD, 2015 +# Manuela Silva , 2015 # Renata Oliveira , 2011 # Roberto Rosario, 2012 # Vítor Figueiró , 2012 @@ -12,15 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" -"language/pt/)\n" -"Language: pt\n" +"Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:37 permissions.py:7 @@ -130,6 +129,7 @@ msgstr "Editar grupo: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "Eliminar o grupo: %s?" @@ -177,9 +177,7 @@ msgstr "Deve indicar pelo menos um utilizador." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Não é permitida a eliminação de administradores ou membros da equipa, " -"utilize a interface de administrador para estes casos." +msgstr "Não é permitida a eliminação de administradores ou membros da equipa, utilize a interface de administrador para estes casos." #: views.py:237 #, python-format @@ -193,11 +191,13 @@ msgstr "Erro ao eliminar o utilizador \"%(user)s\": %(error)s " #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "Eliminar o utilizador: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "Eliminar os utilizadores: %s?" @@ -209,9 +209,7 @@ msgstr "As senhas não coincidem, tente novamente." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Não é permitido redefinir a senha de administradores ou de membros da " -"equipa, utilize a interface de administrador para estes casos." +msgstr "Não é permitido redefinir a senha de administradores ou de membros da equipa, utilize a interface de administrador para estes casos." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.mo index 8c1b467756e59e1249dd6df36c6c15fa6a9b57dd..6b391e650886a6a76494ee2cb25e8c1ebdb11590 100644 GIT binary patch delta 1556 zcmZvcOK22X6o#)!G%vL^zF)C?r+vguG>YvocAHUA6h#zK5v`;vZAquAt?G^nLQqfy z!C|IwF)$4H!i}>rD(+Oom9Cx5Ac6})1>N{s2!4NebyV=sx4wJ+d+XkF&$-pFrd@9x zeAZHT(O?PMOxoWgjOkXtmIu~WXUr%VhcTFdV_^!8gWDthP~;aPo`T~U|1%oD8tJ#7 z)_Vje8#8F0(3ynrBI0K_5kEGvqR)p&CJCjlgA?E`s6Yo#xK+XRGTiD+;qiW$+SPxf3{#vLL?0~aj4;&3o!@2Nxr~q!lR`>vF-gDRnwb*_T zhZ%SVYW!8irUnkl{$?>9f-y;`KvGaA+zszi4mTQ~+f+$;8`Sukh}$5kG&WR;jzg8^ z9BhGqLCwDbmFfGC7|c^RIE~ITI;#CAsEL!BD+|WqRQwd=P-buBAA&RRPe5&W5o)7r zQ1kA>Z{yc=r%meJ&25gmwx04lPxP?@+8=~v(a{5y~s&Hr!_dRVREWlxLW3FW=|-{h?QTI`x~AbBfNl z<&xHdV4e9+)hj<0gR&aFt9?A`i09^=OgL1xDdzO|5QOFRRiYdEShuI9xuauQ=L##) zne18}?ya9CzawFFtVwoug{SJL#M3$6w>J8YTeJh~7h7(s{Oqe}?Y&-qdyoHXc)h+i zoZhf6w$;vOOLo>tT7}}l^*h6$p>z8#FXORuz|N(DM*I@lqz;($G z{gfU`W|1*_aHfq1alG9aH`=%iPqduE<$OW zb>pLUDHXlA1b1Nv?!#@E#6g@u58gmca1R6c05#xCT#O%E-(Rqo??33rAcJniEvWfY z7-D{Ngco%@gIn=3j^b0yVGpyZ{X)w*)Q+DaUCbNQ0v3=RnQwTVENV4spY3e+zlqA= zL)5}wU^nxd_q-@Y-%&egXPZIvp^l^v8PgaESswj(2Q}eaRQu;veW%ZuINugdVjj=o0&c(z z`QL;!REDk~Yclu!uHAu5>n9gf59fsa)N7}$1JrCL}Jl!ESiYMc36aW*sfF~nX+B1OxV>@IT22m#`5KA2`hHFP;$0=vR%V= nas0GB&LF3%$C7Dh#xv^t@, 2016 # Emerson Soares , 2013 # Renata Oliveira , 2011 # Roberto Rosario, 2012 @@ -12,15 +13,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" -"edms/language/pt_BR/)\n" -"Language: pt_BR\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-11-10 19:25+0000\n" +"Last-Translator: Aline Freitas \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: apps.py:37 permissions.py:7 @@ -29,11 +29,11 @@ msgstr "Gerenciar usuários" #: apps.py:47 msgid "All the groups." -msgstr "" +msgstr "Todos os grupos." #: apps.py:51 msgid "All the users." -msgstr "" +msgstr "Todos os usuários." #: apps.py:56 links.py:30 msgid "Members" @@ -130,16 +130,17 @@ msgstr "Editar grupo:%s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" -msgstr "" +msgstr "Apagar o grupo: %s?" #: views.py:72 msgid "Available users" -msgstr "" +msgstr "Usuários disponíveis" #: views.py:73 msgid "Members of groups" -msgstr "" +msgstr "Membros dos grupos" #: views.py:94 #, python-format @@ -153,11 +154,11 @@ msgstr "Editar usuário:%s" #: views.py:133 msgid "Available groups" -msgstr "" +msgstr "Grupos disponíveis" #: views.py:134 msgid "Groups joined" -msgstr "" +msgstr "Grupos ingressados" #: views.py:143 #, python-format @@ -177,9 +178,7 @@ msgstr "Deve fornecer pelo menos um usuário." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Excluir super usuário e usuário pessoal não é permitido, use a interface de " -"administração para esses casos." +msgstr "Excluir super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." #: views.py:237 #, python-format @@ -193,13 +192,15 @@ msgstr "Erro ao excluir usuário \"%(user)s\": %(error)s " #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" -msgstr "" +msgstr "Apagar o usuário: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" -msgstr "" +msgstr "Apagar os usuários: %s?" #: views.py:300 msgid "Passwords do not match, try again." @@ -209,9 +210,7 @@ msgstr "Senhas não coincidem, tente novamente." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Redefinir senha de super usuário e usuário pessoal não é permitido, use a " -"interface de administração para esses casos." +msgstr "Redefinir senha de super usuário e usuário pessoal não é permitido, use a interface de administração para esses casos." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.mo index 2d48eb29b3efdba5f1f2f0a462a7ee64783ae372..ea975af9f4ca71121100c466296e188fdd8111ff 100644 GIT binary patch delta 1621 zcmZ9LOKenC7=TZwv{N1m1q8uTt_osXJ9JteNfkNPUE*Eb1esE7@S;LdA_6HN*vpD~aEK?j1UCGH1SX{{KJcf1P_} z!=GLC-_|a>su;b@E~eX})bsF0jz7jHtxC1SPvL6#C43Yvz%}q@CjUL#{{uUbw=7Hb z>!6(91~Y%i(U6 z;&246g-2l?z6QmQ4Y$HsxJuQPdY{Ep2tJ15=m*#he}ZCo7d{KubL&~S50>EvQ1tgQ zcH>1Vv>$RrorL0W97-Y@{!De>$n+CLy9WPil7$#lGrkEovcC!?gZWIpkjZaB?ofY2 zY1v&U0e7xQOFRHYJ_b>#GJFDh(1PzkX~k!-E{5N-kce+XDdivV0PI?sR^%KMhb|QR z2$HnA0wu#axD(DpY0$^Eo@w+)HARLN+n-}gYcr%|1B2R5WEX_a@vAlL%HA= zD3Ny17fjSv_&9tHZi7c46*WULl+l~QJhCm>S|EXvm#MVu8GB2m+O39f@FSvSTG7EdzyFih1%E^T?5xn2CrXG9`qNSWkO zZDva57E^{~yGa(KQ<0u^)TrxP(TrnN0za;Wh5P$BbOPDV+S;{CZo{BSU@X)j-<#G! z)k<`3FnKRm=soPXPUI}zIc#kYM^uwk&KY6yO>SUwSx2dF5ve1x%?y$|IX!YTCO*%u zI%>=Wn8EU=8)l(8;Z#cm+o0%7Hr$v@w!X65s@Y+9!4JyU=Ue}6Sy?Rh4-Q!agTuS` zCSSC5kM8O(?zM`=;h|#R0As~*JB<3r1KSH-JMszjbmUCio{p_UfeuOSg-Tr02WD)q zVh4r5-=F-~R!aQ#GpmmyitUOsYz6-Lmrf;%?GqEG%xc`XIamqeS{!KCDIi$nZ!egQ{8l@WJGEzJBUtT&2I(cb|Jv;8YqRH;AVBRIE)?r9Xi-?IF)B f&QzB;9j|wuo|@6sk{viSD)8O!FJHgeaWMBksd+Q_ delta 756 zcmXZa&r1|x7{Kv&b=Li5Zmzj&rRxyo4`i_!f5CPsA@>pp8|q=n+GSNFXk>IR9u(A@ zCwWoutVgSZe?ZV7FGWIN5R#rch+;wHL6E-BI4`{OdEc3L=6Rpzos;IZCN=N^au3M0WP#xRZ88&BG#kp&sQ+Xd>tEc2Mzp)w{Q;|@DPLe8$0nI_M=&?RE<)L zYK%cEH^#9R7w{ggVjAE1&%a;?^D``9l4xagQQrUVdx3H0DWXc?b}q7^49bQEagXFi zF+qHl4qZR6FvWtWD3y4DvVnPw;3i6yw$Q{6$T!q6N=Co%F}8%2VyMQk8z=DwZeSN~ zV;k;c2l3Sf0~<}EEa7up#RD|46uo|N8Kva!Q7ZKboA4Xn$5WJ3lO&`9vX)|bYr$&? zUqY(e^m5FujNWerN7S3lC0 z(XN+`ZvEAm4CY*?GNb2$W4k|se*&?Gy%~GJw0g5vzdi`1qdghhGHoks+4?G!iszlu zggfV$d1tohPCL3UT#7#{zL}~NrzWzd>%7bl>y2OWk*U9|uJ 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 8a59814ffe..078f8a89f3 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 @@ -1,25 +1,24 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Badea Gabriel , 2013 +# Stefaniu Criste , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" -"edms/language/ro_RO/)\n" -"Language: ro_RO\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-04-17 11:31+0000\n" +"Last-Translator: Stefaniu Criste \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" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1));\n" +"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:37 permissions.py:7 msgid "User management" @@ -27,19 +26,19 @@ msgstr "Management utilizatori" #: apps.py:47 msgid "All the groups." -msgstr "" +msgstr "Toate grupurile." #: apps.py:51 msgid "All the users." -msgstr "" +msgstr "Toți utilizatorii." #: apps.py:56 links.py:30 msgid "Members" -msgstr "" +msgstr "Membri" #: apps.py:60 msgid "Full name" -msgstr "" +msgstr "Numele întreg" #: apps.py:63 msgid "Email" @@ -47,7 +46,7 @@ msgstr "email" #: apps.py:66 msgid "Active" -msgstr "" +msgstr "Activ" #: apps.py:72 msgid "Has usable password?" @@ -67,7 +66,7 @@ msgstr "" #: links.py:18 links.py:42 links.py:58 msgid "Delete" -msgstr "" +msgstr "Șterge" #: links.py:22 links.py:46 msgid "Edit" @@ -87,7 +86,7 @@ msgstr "Utilizatorii" #: links.py:62 links.py:66 msgid "Reset password" -msgstr "" +msgstr "Schimbare parolă" #: permissions.py:10 msgid "Create new groups" @@ -124,16 +123,17 @@ msgstr "Vizualizați utilizatorii existenți" #: views.py:45 #, python-format msgid "Edit group: %s" -msgstr "" +msgstr "Modificați grupul: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" -msgstr "" +msgstr "Ștergeți grupul: %s?" #: views.py:72 msgid "Available users" -msgstr "" +msgstr "Utilizatori disponibili" #: views.py:73 msgid "Members of groups" @@ -142,16 +142,16 @@ msgstr "" #: views.py:94 #, python-format msgid "Members of group: %s" -msgstr "" +msgstr "Membrii grupului: %s" #: views.py:127 #, python-format msgid "Edit user: %s" -msgstr "" +msgstr "Modificați utilizatorul: %s" #: views.py:133 msgid "Available groups" -msgstr "" +msgstr "Grupuri disponibile" #: views.py:134 msgid "Groups joined" @@ -160,7 +160,7 @@ msgstr "" #: views.py:143 #, python-format msgid "Groups of user: %s" -msgstr "" +msgstr "Grupurile utilizatorului: %s" #: views.py:188 #, python-format @@ -175,9 +175,7 @@ msgstr "Trebuie să furnizeze cel puțin un utilizator." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super-utilizator și personalul ștergerea utilizator nu este permisă, " -"utilizați interfata de administrare pentru aceste cazuri." +msgstr "Super-utilizator și personalul ștergerea utilizator nu este permisă, utilizați interfata de administrare pentru aceste cazuri." #: views.py:237 #, python-format @@ -191,11 +189,13 @@ msgstr "Eroare la ștergerea utilizator \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" -msgstr "" +msgstr "Ștergeți utilizatorul: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -207,9 +207,7 @@ msgstr "Parolele nu corespund, încercați din nou." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super utilizator și parola de utilizator personalul resetarea nu este " -"permisă, utilizați interfata de administrare pentru aceste cazuri." +msgstr "Super utilizator și parola de utilizator personalul resetarea nu este permisă, utilizați interfata de administrare pentru aceste cazuri." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.mo index 2777f310c986258568fa99f071b46cf828a4556e..f378e611ee79395ca049db0307109f2d9807f50f 100644 GIT binary patch literal 5069 zcmd6pUu+ab9LGmR#Y08$|No&{>;ZeXSBm1nQ4orfSZ$!-gT%PpP1_}RyO-TPN)uwB zm53=?&R_cyz@x7Xew`sAk9&&|wl ze*b4~e_gWRV}?h^=TUqVv0K0-xER#IJHZX$UEnL>{2Sr89P%J| zH`YH0*S`qoPl2TG8}NScJMcd6_mEe?dof;ob1?rDh$)r@X}%l02kZyQk0J05a2UiN zJA{8pa2$LFoB?kG{{YGE6_Dir0+)b`FiCnJ2X6&eh2ym#`QHaV0qzEG2S>p+Z~`Rz z)8OOaC6MHP13N%c_8O1`3*aG;)-Q)lEDZ9w9E2+@3z8ojK#Fe%xa3C0OpxsCPXzPh zAjfzTBz<3lE5P5tC&AknF}4iUL%s@jVf-dY`8WxZzRThKRd6%LDFnws7hDN`1g5}C z;KSgb;0ACJlGg{m1g-#&f@{EUL5kx>DBlh)1b2bEK#J!K2o>ym@DcE5km_^=)Ig5r zqI$dxJ^&ivW8et51^gtO{}tSd@s)6W1DcTHdmYSyAA;nM5B>lqP{bd>pFr|=3Py;( zfEjQhoO=+=f~03VNclJn;wY$GaF8DIn;weeA$*YX=po;iN28#ZC?6CHJ?;2VAExo4 zzNd%!o?@>(D22*7O3qMv)n`wKi_{xPv8n~t9qy?I>0?jfL%mAp7wxAW$}PoJdno1w z;Q*;&biAo==~;>o^$g{ko(_DdmvkE7L8=+snD@-Rf^94oxi=*Epkr6cZYmmAT;b4g zuVEIA-Nl+fY(hz}O|~^)Iwf8JQ0G6 zeWvS~)?n!4yy?J^U{5`kEN^$aYqAs}i8Y;cgV~;f=`s2@&tT(ZU{1}cq|xqRU(EvR zDIsgD$8l_j7bq6;o>qBVdj~P;wqaX`Ac-V)D@jMVfn+V0d;t5ev29BQ#j}i(U@xfZ zh2VQ^(-MW+$R3D7XD=Eq2CAMlBi*c5ly;-oHF9jI2No_ylMt)89xprgUb7&$;qjs{ zFkxFkhEwciRKBL1^@VNW@`BAR+v6p}%MY#Oo-@LYLBq6CY#W7L-=T(-ubPf13o6mA zmsJ_r_DVi4Tz7y{6KPPHZP1f~U>WsL*)^;JcRgbuNL0OIrmI{wibZ=^6jqY3>Mx^E zGA(Xeo^S??yikhKVOY%@uE42jt-H}B3iCf3*%9=U+s5?0{wUso+Cny!}& z%NP_TVR=g4WjjrjZ|;d}oTQw&tk1Fch`gt5EoeJ2Hf<}*dyNsp;ys&twuGVj7d7|%?eofsFkk>ZjqR8@2J@br~$!MLcxZasv{j8>U={f|pZDOxU zdgF5Xvs$K$XY}mq&J{YI#7k&Ct=};$w`h1a4tUWl+NrW(nR%>PgB66Q^$Vkv<=ZN* zYr?;dAl75mA6Z2$94_Jw4HQ`0?|aFR_r7odmqY5gN*1mlT)Ubq#O7tjG&zGk=S zMb2iqQ%Up{D~?grw%ASyZEcm+(9LzN<-ylnht;0ZbGZy(wv5wPeQ7R};oV&45XX3Z zuCunZF4sk0)ee1KrjzgAA8c8l=}KZtCft(C>9nNe*5_8&w?CJR=Ajp6YBty9prM<0 zLcyx!+60sD%d`HdtjcLQBQG%dfqziWaCy={;E&0R@}fT;&0UnU@|=G}o(8Ao6n4$X zbF!LZ@*_FxAM{7njtlIpmM|@5TKdi-|#^N=gF3asNESYT*vp*5r)I@jFO-R-mCXbWX zlr^$7XULJmG5;OJja&u+VWb>yC`U~P>ZMkjZ=)cu*O6E{{ITGdwb9cSs{Dz6AxsGf z#XrY)%7f}WRaVtcl#!-O{}^bLpZ}`h8kuV9QP3)p*&u5zj0dt!Ed&Wng)blSGygCu zdP1I+Q^+_HQ{^~QLB|BuuC}a1i`SF}ojBVkDBU0#h>p|*hmmtW(89}B$|vb~sAGlG zRh8%IWPBLEI*$8q!wU5?_3GJJqcsS&G_2kq9P#6dBF)V+cLcZNQ3y@rR%~>X zZo2SFLz$7D8JvHTq`FYe{rCLQm4RMrg<04eL-6W0oS|!iV|GfOhJ|BMS=GJLkdWAF ze7<$9gUm!K=WM!GpHOjv-BD;%wC0(az$-XK95m!%N-`p8cDF$R{S>rPgY1zFh^YKs zQ1>g^n=*<#&f*}AVFhOjGNWjo31qd3nMh$huc#y?7^>c)VEltz)#5yrnD$^lat@JM zV(rxU?_#Ek3l~by!5CT|yQkxYiDi)#LlQ>+F|Pk>Sd+-=yf*=qx~&~=wyFy1*I8Bc z+Oo0RO;w*deF|ql9am&s{qi?6HX%`z;B8@^Cu#wT=$<>TPU``c@cF;3bKV3duX|I} NJL<&N-i1(E_BX@Urmz42 delta 831 zcmXZa&r4KM6u|N0I5RfC)W&i$`|&VLL!P~v28)3pN{T>8Oo~v%7rtzwX6U`KXp=$K z#$6X%_7{X3gK{Obutg~|8(S3p2Z2%KvcBgr2k!g4JD0iVymRl?!0+D0AKB=N5WS2e zj6aNi#+Mcz#B4;Q6J6YoesjKr-ON|;Ail*Ye#8U#3A^w+#&8!;;a?mLkqG|3%ZCoinxI% z$S;*Pk&`UELal5ai@1xU*uPKYFy6xp_yWgq6WK#@36bk~6sPea>W6IOW&DOY>`RJV z#S-fNOL(6Avd+sn+{0~jQX)I}4~KAv-PA}%B#*;*2xn0@dV*T$D(b0eGVOpK56udT zfiSX7sa<*)bL0r4y{SS6g`&gIFW1n7G$ahYD|#37-1Tl~TeTC^uV)&zn+^;0gkh@D zzHA_ue9x_UR>ga4Ed-t)n9tE+Q;MB7FJpIFu9)fg)Y@kJSIaG@Xcx{}`C=(QVmn30 zNseE$C%i}Hpj@rkqij*K3XZOwu?u;tkT2y6Lk^J~bAy^a>ARKSzFVvMC2OL3+w*Hx z3|zllHL1j8dd#iNFSzq;;xCw)#FW`gyf>MYZQRrVqs!D&gQhM0z`V)ym}JJ7Nc)GB XX*_E@uW!^h8q4N&$Gf$=onGsIc@TGk 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 0a1381e9d7..2ef9664596 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po @@ -1,25 +1,23 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: +# lilo.panic, 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" -"Last-Translator: Roberto Rosario\n" -"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" -"language/ru/)\n" -"Language: ru\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-07-14 10:52+0000\n" +"Last-Translator: lilo.panic\n" +"Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\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" +"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:37 permissions.py:7 msgid "User management" @@ -27,19 +25,19 @@ msgstr "Управление пользователями" #: apps.py:47 msgid "All the groups." -msgstr "" +msgstr "Все группы" #: apps.py:51 msgid "All the users." -msgstr "" +msgstr "Все пользователи." #: apps.py:56 links.py:30 msgid "Members" -msgstr "" +msgstr "Участники" #: apps.py:60 msgid "Full name" -msgstr "" +msgstr "Полное имя" #: apps.py:63 msgid "Email" @@ -47,11 +45,11 @@ msgstr "Email" #: apps.py:66 msgid "Active" -msgstr "" +msgstr "Активен" #: apps.py:72 msgid "Has usable password?" -msgstr "" +msgstr "Есть действующий пароль?" #: forms.py:16 msgid "New password" @@ -63,11 +61,11 @@ msgstr "Подтвердите пароль" #: links.py:14 views.py:29 msgid "Create new group" -msgstr "" +msgstr "Создать новую группу" #: links.py:18 links.py:42 links.py:58 msgid "Delete" -msgstr "" +msgstr "Удалить" #: links.py:22 links.py:46 msgid "Edit" @@ -79,7 +77,7 @@ msgstr "Группы" #: links.py:38 views.py:197 msgid "Create new user" -msgstr "" +msgstr "Создать нового пользователя" #: links.py:54 links.py:70 views.py:169 msgid "Users" @@ -87,7 +85,7 @@ msgstr "Пользователи" #: links.py:62 links.py:66 msgid "Reset password" -msgstr "" +msgstr "Сбросить пароль" #: permissions.py:10 msgid "Create new groups" @@ -124,43 +122,44 @@ msgstr "Просмотр существующих пользователей" #: views.py:45 #, python-format msgid "Edit group: %s" -msgstr "" +msgstr "Редактировать группу: %s" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" -msgstr "" +msgstr "Удалить группу: %s?" #: views.py:72 msgid "Available users" -msgstr "" +msgstr "Доступные пользователи" #: views.py:73 msgid "Members of groups" -msgstr "" +msgstr "Участники групп" #: views.py:94 #, python-format msgid "Members of group: %s" -msgstr "" +msgstr "Член групп: %s" #: views.py:127 #, python-format msgid "Edit user: %s" -msgstr "" +msgstr "Редактировать пользователя: %s." #: views.py:133 msgid "Available groups" -msgstr "" +msgstr "Доступные группы" #: views.py:134 msgid "Groups joined" -msgstr "" +msgstr "Участник групп" #: views.py:143 #, python-format msgid "Groups of user: %s" -msgstr "" +msgstr "Группы пользователя: %s" #: views.py:188 #, python-format @@ -175,9 +174,7 @@ msgstr "Должен быть хотя бы один пользователь." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Удаление суперпользователя и персонала не допускается, используйте " -"интерфейс администратора для этих случаев." +msgstr "Удаление суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." #: views.py:237 #, python-format @@ -191,13 +188,15 @@ msgstr "Ошибка при удалении пользователя \"%(user)s #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" -msgstr "" +msgstr "Удалить пользователя: %s?" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" -msgstr "" +msgstr "Удалить пользователей: %s?" #: views.py:300 msgid "Passwords do not match, try again." @@ -207,9 +206,7 @@ msgstr "Пароли не совпадают, попробуйте еще раз msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Сброс паролей суперпользователя и персонала не допускается, используйте " -"интерфейс администратора для этих случаев." +msgstr "Сброс паролей суперпользователя и персонала не допускается, используйте интерфейс администратора для этих случаев." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.mo index 14e5713b53ea7d6e2ccfae2eec9c2513e8e92036..ea0561d947cd5a9635a273775fcac12d59b57e80 100644 GIT binary patch delta 234 zcmeBUxyDj|Pl#nI0}wC+u?!HK05K~N`v5TrBmglR5GMjLNIV0GuP`z&b=9*E2;o49L&SpXg<4Y-p%! zWUOFdWMyiuYhYqvz!l)H836##$bxABqwNfxLFf`KzsxvfKFtD&PHJ-SuYjOx< s6u(bmUV3R_I#5M%PJFQEi{tbSOD=Aprj>`2C0F8iMjsV1}3^j<_d-; yR)%I1kIQl!80#7tDi|4B85&J|-^K5fn3rCfn4W5-P@EGV>^ZrDF?#Z2#smPzLl&O^ 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 e2f65eb7cc..34ae367601 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 @@ -1,24 +1,22 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" -"PO-Revision-Date: 2016-03-21 21:12+0000\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" +"PO-Revision-Date: 2016-11-17 08:53+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" -"edms/language/sl_SI/)\n" -"Language: sl_SI\n" +"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"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:37 permissions.py:7 msgid "User management" @@ -74,7 +72,7 @@ msgstr "" #: links.py:26 links.py:34 links.py:50 views.py:52 msgid "Groups" -msgstr "" +msgstr "Skupine" #: links.py:38 views.py:197 msgid "Create new user" @@ -82,7 +80,7 @@ msgstr "" #: links.py:54 links.py:70 views.py:169 msgid "Users" -msgstr "" +msgstr "Uporabniki" #: links.py:62 links.py:66 msgid "Reset password" @@ -127,6 +125,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -188,11 +187,13 @@ msgstr "" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" diff --git a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.mo index bbbadb0a27bd491800ffaca6201d1816daa475c4..9ea5073f9f2958948010f01a9c371cd56cab1120 100644 GIT binary patch delta 48 zcmca4d`WmiIV-oJp{|j!f`O5hsrlq4*3FY$*`oM;67$ka6Vp?z6v{H=!~8bSV>4j} E0B_, 2013 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" -"mayan-edms/language/vi_VN/)\n" -"Language: vi_VN\n" +"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 permissions.py:7 @@ -127,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -174,9 +174,7 @@ msgstr "Cần cung cấp ít nhất một user." msgid "" "Super user and staff user deleting is not allowed, use the admin interface " "for these cases." -msgstr "" -"Super user and staff user deleting is not allowed, use the admin interface " -"for these cases." +msgstr "Super user and staff user deleting is not allowed, use the admin interface for these cases." #: views.py:237 #, python-format @@ -190,11 +188,13 @@ msgstr "Lỗi xóa người dùng \"%(user)s\": %(error)s" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" @@ -206,9 +206,7 @@ msgstr "Mật khẩu không khớp, thử lại." msgid "" "Super user and staff user password reseting is not allowed, use the admin " "interface for these cases." -msgstr "" -"Super user and staff user password reseting is not allowed, use the admin " -"interface for these cases." +msgstr "Super user and staff user password reseting is not allowed, use the admin interface for these cases." #: views.py:319 #, python-format diff --git a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.mo index a0110d25e40cb7f55088cd6ce160ce68c08f2a8d..0a232bc2c5c3c219a98f922e96ea3a9588786b5d 100644 GIT binary patch delta 48 zcmcaEbX{meKP$JPp{|j!f`O5hsrlqttZOHSvqkayB<7`;CZ?xaDO6>|JNs?kz_y$T E0D0dJ*Z=?k delta 48 zcmcaEbX{meKP$I^iLQ~kf}x3(q1ohFtZVsw67$ka6Vp?z6sj`fo&6@eu|;p*$hM3L E0D9sN%m4rY diff --git a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po index 871e76c4cd..1a7f90fae0 100644 --- a/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/zh_CN/LC_MESSAGES/django.po @@ -1,7 +1,7 @@ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. -# +# # Translators: # Translators: # Ford Guo , 2014 @@ -9,15 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-10-28 03:23-0400\n" +"POT-Creation-Date: 2016-11-23 02:57-0400\n" "PO-Revision-Date: 2016-03-21 21:12+0000\n" "Last-Translator: Roberto Rosario\n" -"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/" -"language/zh_CN/)\n" -"Language: zh_CN\n" +"Language-Team: Chinese (China) (http://www.transifex.com/rosarior/mayan-edms/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #: apps.py:37 permissions.py:7 @@ -127,6 +126,7 @@ msgstr "" #: views.py:66 #, python-format +#| msgid "Delete existing groups" msgid "Delete the group: %s?" msgstr "" @@ -188,11 +188,13 @@ msgstr "删除用户: \"%(user)s\": %(error)s出错。" #: views.py:255 #, python-format +#| msgid "Delete existing users" msgid "Delete the user: %s?" msgstr "" #: views.py:257 #, python-format +#| msgid "Delete existing users" msgid "Delete the users: %s?" msgstr "" From ba65611c81eaa5871f26ff3d6838cb903d98107b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Nov 2016 03:13:45 -0400 Subject: [PATCH 7/8] Update release notes and changelog. --- HISTORY.rst | 3 ++- docs/releases/2.1.6.rst | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 85d4428afc..a9f77c3c2e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,7 @@ -2.1.6 (2016-11-22) +2.1.6 (2016-11-23) ================= - Fix variable name typo in the rotation transformation class. +- Update translations 2.1.5 (2016-11-08) ================== diff --git a/docs/releases/2.1.6.rst b/docs/releases/2.1.6.rst index 8284b3b3e1..a6916ecd3b 100644 --- a/docs/releases/2.1.6.rst +++ b/docs/releases/2.1.6.rst @@ -2,7 +2,7 @@ Mayan EDMS v2.1.6 release notes =============================== -Released: November 22, 2016 +Released: November 23, 2016 What's new ========== @@ -13,6 +13,7 @@ Changes ------------- - Fix variable name typo in the rotation transformation class. +- Update translations Removals -------- From c71a8f4e13f2673febec068511271d63342655da Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 23 Nov 2016 03:14:00 -0400 Subject: [PATCH 8/8] Bump version to 2.1.6 --- mayan/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/__init__.py b/mayan/__init__.py index cd921cfcd8..86974477eb 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,8 +1,8 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '2.1.5' -__build__ = 0x020105 +__version__ = '2.1.6' +__build__ = 0x020106 __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' __description__ = 'Free Open Source Electronic Document Management System'