From f55bf1b52e54b382089353a62edd9274e2ae5587 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 20:59:47 -0400 Subject: [PATCH 01/14] Improve document signatures tests Signed-off-by: Roberto Rosario --- .../apps/document_signatures/tests/mixins.py | 6 +- .../document_signatures/tests/test_links.py | 6 +- .../document_signatures/tests/test_models.py | 36 +++---- .../document_signatures/tests/test_views.py | 97 ++++--------------- 4 files changed, 46 insertions(+), 99 deletions(-) diff --git a/mayan/apps/document_signatures/tests/mixins.py b/mayan/apps/document_signatures/tests/mixins.py index 6d352abdfb..9f51427a3a 100644 --- a/mayan/apps/document_signatures/tests/mixins.py +++ b/mayan/apps/document_signatures/tests/mixins.py @@ -54,9 +54,11 @@ class SignatureTestMixin(object): signature_file=File(file_object) ) - def _create_test_key_private(self): + def _create_test_key_public(self): with open(TEST_KEY_FILE_PATH, mode='rb') as file_object: - self.test_key = Key.objects.create(key_data=file_object.read()) + self.test_key_public = Key.objects.create( + key_data=file_object.read() + ) class SignatureViewTestMixin(object): diff --git a/mayan/apps/document_signatures/tests/test_links.py b/mayan/apps/document_signatures/tests/test_links.py index ef37d7078d..46800e4b89 100644 --- a/mayan/apps/document_signatures/tests/test_links.py +++ b/mayan/apps/document_signatures/tests/test_links.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals from django.urls import reverse from mayan.apps.documents.tests import ( - GenericDocumentViewTestCase, TEST_DOCUMENT_PATH + GenericDocumentViewTestCase, TEST_SMALL_DOCUMENT_PATH ) from ..links import ( @@ -62,7 +62,7 @@ class DocumentSignatureLinksTestCase( ) def test_document_version_signature_delete_link_no_permission(self): - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -77,7 +77,7 @@ class DocumentSignatureLinksTestCase( self.assertEqual(resolved_link, None) def test_document_version_signature_delete_link_with_permission(self): - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() diff --git a/mayan/apps/document_signatures/tests/test_models.py b/mayan/apps/document_signatures/tests/test_models.py index 1bbec89de2..5bbd3a07d4 100644 --- a/mayan/apps/document_signatures/tests/test_models.py +++ b/mayan/apps/document_signatures/tests/test_models.py @@ -7,7 +7,7 @@ from mayan.apps.django_gpg.tests.literals import TEST_KEY_PRIVATE_PASSPHRASE from mayan.apps.django_gpg.tests.mixins import KeyTestMixin from mayan.apps.documents.models import DocumentVersion from mayan.apps.documents.tests import ( - GenericDocumentTestCase, TEST_DOCUMENT_PATH + GenericDocumentTestCase, TEST_DOCUMENT_PATH, TEST_SMALL_DOCUMENT_PATH ) from ..models import DetachedSignature, EmbeddedSignature @@ -48,14 +48,14 @@ class DocumentSignaturesTestCase(SignatureTestMixin, GenericDocumentTestCase): self.assertEqual(signature.key_id, TEST_KEY_PUBLIC_ID) self.assertEqual(signature.signature_id, None) - self._create_test_key_private() + self._create_test_key_public() signature = EmbeddedSignature.objects.first() self.assertEqual(signature.signature_id, TEST_SIGNATURE_ID) def test_embedded_signature_post_no_key_verify(self): - self._create_test_key_private() + self._create_test_key_public() self.test_document_path = TEST_SIGNED_DOCUMENT_PATH self.upload_document() @@ -69,14 +69,14 @@ class DocumentSignaturesTestCase(SignatureTestMixin, GenericDocumentTestCase): self.assertEqual(signature.key_id, TEST_KEY_PUBLIC_ID) self.assertEqual(signature.signature_id, TEST_SIGNATURE_ID) - self.test_key.delete() + self.test_key_public.delete() signature = EmbeddedSignature.objects.first() self.assertEqual(signature.signature_id, None) def test_embedded_signature_with_key(self): - self._create_test_key_private() + self._create_test_key_public() self.test_document_path = TEST_SIGNED_DOCUMENT_PATH self.upload_document() @@ -90,12 +90,12 @@ class DocumentSignaturesTestCase(SignatureTestMixin, GenericDocumentTestCase): ) self.assertEqual(signature.key_id, TEST_KEY_PUBLIC_ID) self.assertEqual( - signature.public_key_fingerprint, self.test_key.fingerprint + signature.public_key_fingerprint, self.test_key_public.fingerprint ) self.assertEqual(signature.signature_id, TEST_SIGNATURE_ID) def test_detached_signature_no_key(self): - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -109,7 +109,7 @@ class DocumentSignaturesTestCase(SignatureTestMixin, GenericDocumentTestCase): self.assertEqual(self.test_signature.public_key_fingerprint, None) def test_detached_signature_with_key(self): - self._create_test_key_private() + self._create_test_key_public() self.test_document_path = TEST_DOCUMENT_PATH self.upload_document() @@ -123,7 +123,7 @@ class DocumentSignaturesTestCase(SignatureTestMixin, GenericDocumentTestCase): self.assertEqual(self.test_signature.key_id, TEST_KEY_PUBLIC_ID) self.assertEqual( self.test_signature.public_key_fingerprint, - self.test_key.fingerprint + self.test_key_public.fingerprint ) def test_detached_signature_post_key_verify(self): @@ -141,16 +141,16 @@ class DocumentSignaturesTestCase(SignatureTestMixin, GenericDocumentTestCase): self.assertEqual(self.test_signature.key_id, TEST_KEY_PUBLIC_ID) self.assertEqual(self.test_signature.public_key_fingerprint, None) - self._create_test_key_private() + self._create_test_key_public() signature = DetachedSignature.objects.first() self.assertEqual( - signature.public_key_fingerprint, self.test_key.fingerprint + signature.public_key_fingerprint, self.test_key_public.fingerprint ) def test_detached_signature_post_no_key_verify(self): - self._create_test_key_private() + self._create_test_key_public() self.test_document_path = TEST_DOCUMENT_PATH self.upload_document() @@ -165,23 +165,23 @@ class DocumentSignaturesTestCase(SignatureTestMixin, GenericDocumentTestCase): self.assertEqual(self.test_signature.key_id, TEST_KEY_PUBLIC_ID) self.assertEqual( self.test_signature.public_key_fingerprint, - self.test_key.fingerprint + self.test_key_public.fingerprint ) - self.test_key.delete() + self.test_key_public.delete() signature = DetachedSignature.objects.first() self.assertEqual(signature.public_key_fingerprint, None) def test_document_no_signature(self): - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self.assertEqual(EmbeddedSignature.objects.count(), 0) def test_new_signed_version(self): - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() with open(TEST_SIGNED_DOCUMENT_PATH, mode='rb') as file_object: @@ -209,7 +209,7 @@ class EmbeddedSignaturesTestCase(KeyTestMixin, GenericDocumentTestCase): TEST_UNSIGNED_DOCUMENT_COUNT = 2 TEST_SIGNED_DOCUMENT_COUNT = 2 - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): self.upload_document() @@ -233,7 +233,7 @@ class EmbeddedSignaturesTestCase(KeyTestMixin, GenericDocumentTestCase): TEST_UNSIGNED_DOCUMENT_COUNT = 2 TEST_SIGNED_DOCUMENT_COUNT = 2 - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): self.upload_document() diff --git a/mayan/apps/document_signatures/tests/test_views.py b/mayan/apps/document_signatures/tests/test_views.py index 96b14618fb..016d93f36a 100644 --- a/mayan/apps/document_signatures/tests/test_views.py +++ b/mayan/apps/document_signatures/tests/test_views.py @@ -6,7 +6,8 @@ from mayan.apps.django_gpg.permissions import permission_key_sign from mayan.apps.django_gpg.tests.mixins import KeyTestMixin from mayan.apps.documents.models import DocumentVersion from mayan.apps.documents.tests import ( - GenericDocumentViewTestCase, TEST_DOCUMENT_PATH + GenericDocumentViewTestCase, TEST_DOCUMENT_PATH, + TEST_SMALL_DOCUMENT_PATH ) from ..models import DetachedSignature, EmbeddedSignature @@ -36,9 +37,7 @@ class SignaturesViewTestCase( auto_upload_document = False def test_signature_delete_view_no_permission(self): - self._create_test_key_private() - - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -53,9 +52,7 @@ class SignaturesViewTestCase( self.assertEqual(DetachedSignature.objects.count(), 1) def test_signature_delete_view_with_access(self): - self._create_test_key_private() - - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -74,9 +71,7 @@ class SignaturesViewTestCase( self.assertEqual(DetachedSignature.objects.count(), 0) def test_signature_detail_view_no_permission(self): - self._create_test_key_private() - - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -85,9 +80,7 @@ class SignaturesViewTestCase( self.assertEqual(response.status_code, 404) def test_signature_detail_view_with_access(self): - self._create_test_key_private() - - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -103,40 +96,8 @@ class SignaturesViewTestCase( status_code=200 ) - """ - def test_signature_download_view_no_permission(self): - self.test_document_path = TEST_DOCUMENT_PATH - self.upload_document() - - self._create_test_detached_signature() - - response = self._request_test_document_version_signature_download_view() - self.assertEqual(response.status_code, 403) - - def test_signature_download_view_with_access(self): - self.test_document_path = TEST_DOCUMENT_PATH - self.upload_document() - - self._create_test_detached_signature() - - self.grant_access( - obj=self.test_document, - permission=permission_document_version_signature_download - ) - - self.expected_content_type = 'application/octet-stream; charset=utf-8' - - response = self._request_test_document_version_signature_download_view() - - with self.test_signature.signature_file as file_object: - assert_download_response( - self, response=response, content=file_object.read(), - ) - """ def test_signature_list_view_no_permission(self): - self._create_test_key_private() - - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -147,9 +108,7 @@ class SignaturesViewTestCase( self.assertEqual(response.status_code, 403) def test_signature_list_view_with_access(self): - self._create_test_key_private() - - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -164,30 +123,7 @@ class SignaturesViewTestCase( ) self.assertEqual(response.status_code, 200) self.assertEqual(response.context['object_list'].count(), 1) - """ - def test_signature_upload_view_no_permission(self): - self.test_document_path = TEST_DOCUMENT_PATH - self.upload_document() - response = self._request_test_document_version_signature_upload_view() - self.assertEqual(response.status_code, 403) - - self.assertEqual(DetachedSignature.objects.count(), 0) - - def test_signature_upload_view_with_access(self): - self.test_document_path = TEST_DOCUMENT_PATH - self.upload_document() - - self.grant_access( - obj=self.test_document, - permission=permission_document_version_signature_upload - ) - - response = self._request_test_document_version_signature_upload_view() - self.assertEqual(response.status_code, 302) - - self.assertEqual(DetachedSignature.objects.count(), 1) - """ def test_missing_signature_verify_view_no_permission(self): # Silence converter logging self._silence_logger(name='mayan.apps.converter.backends') @@ -198,7 +134,7 @@ class SignaturesViewTestCase( old_hooks = DocumentVersion._post_save_hooks DocumentVersion._post_save_hooks = {} - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): self.upload_document() @@ -231,7 +167,7 @@ class SignaturesViewTestCase( old_hooks = DocumentVersion._post_save_hooks DocumentVersion._post_save_hooks = {} - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH for count in range(TEST_UNSIGNED_DOCUMENT_COUNT): self.upload_document() @@ -266,6 +202,7 @@ class DetachedSignaturesViewTestCase( auto_upload_document = False def test_detached_signature_create_view_with_no_permission(self): + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_key_private() @@ -280,6 +217,7 @@ class DetachedSignaturesViewTestCase( ) def test_detached_signature_create_view_with_document_access(self): + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_key_private() @@ -299,6 +237,7 @@ class DetachedSignaturesViewTestCase( ) def test_detached_signature_create_view_with_key_access(self): + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_key_private() @@ -318,6 +257,7 @@ class DetachedSignaturesViewTestCase( ) def test_detached_signature_create_view_with_full_access(self): + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_key_private() @@ -341,7 +281,7 @@ class DetachedSignaturesViewTestCase( ) def test_signature_download_view_no_permission(self): - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -350,7 +290,7 @@ class DetachedSignaturesViewTestCase( self.assertEqual(response.status_code, 403) def test_signature_download_view_with_access(self): - self.test_document_path = TEST_DOCUMENT_PATH + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_detached_signature() @@ -371,6 +311,7 @@ class DetachedSignaturesViewTestCase( def test_signature_upload_view_no_permission(self): self.test_document_path = TEST_DOCUMENT_PATH + self.upload_document() response = self._request_test_document_version_signature_upload_view() @@ -399,6 +340,7 @@ class EmbeddedSignaturesViewTestCase( auto_upload_document = False def test_embedded_signature_create_view_with_no_permission(self): + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_key_private() @@ -413,6 +355,7 @@ class EmbeddedSignaturesViewTestCase( ) def test_embedded_signature_create_view_with_document_access(self): + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_key_private() @@ -432,6 +375,7 @@ class EmbeddedSignaturesViewTestCase( ) def test_embedded_signature_create_view_with_key_access(self): + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_key_private() @@ -451,6 +395,7 @@ class EmbeddedSignaturesViewTestCase( ) def test_embedded_signature_create_view_with_full_access(self): + self.test_document_path = TEST_SMALL_DOCUMENT_PATH self.upload_document() self._create_test_key_private() From 67ea431cca10cf6d1b59fa15fe1cded59e5c8aa2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 22:19:30 -0400 Subject: [PATCH 02/14] Speed up some tests Use the small test document. Signed-off-by: Roberto Rosario --- mayan/apps/documents/tests/test_models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mayan/apps/documents/tests/test_models.py b/mayan/apps/documents/tests/test_models.py index fda9936e8c..740be18054 100644 --- a/mayan/apps/documents/tests/test_models.py +++ b/mayan/apps/documents/tests/test_models.py @@ -200,7 +200,7 @@ class DocumentVersionTestCase(GenericDocumentTestCase): def test_add_new_version(self): self.assertEqual(self.test_document.versions.count(), 1) - with open(TEST_DOCUMENT_PATH, mode='rb') as file_object: + with open(TEST_SMALL_DOCUMENT_PATH, mode='rb') as file_object: self.test_document.new_version( file_object=file_object ) @@ -209,7 +209,7 @@ class DocumentVersionTestCase(GenericDocumentTestCase): self.assertEqual( self.test_document.checksum, - 'c637ffab6b8bb026ed3784afdb07663fddc60099853fae2be93890852a69ecf3' + TEST_SMALL_DOCUMENT_CHECKSUM ) def test_revert_version(self): @@ -219,7 +219,7 @@ class DocumentVersionTestCase(GenericDocumentTestCase): # field time.sleep(1.01) - with open(TEST_DOCUMENT_PATH, mode='rb') as file_object: + with open(TEST_SMALL_DOCUMENT_PATH, mode='rb') as file_object: self.test_document.new_version( file_object=file_object ) From 3137b5a50a8e35839b6d1400cfd9c2212abf7a54 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 22:33:16 -0400 Subject: [PATCH 03/14] Update changelog and release notes Signed-off-by: Roberto Rosario --- HISTORY.rst | 6 ++-- docs/releases/3.2.10.rst | 70 ++++++++++++++++++++++++++++++++++++++-- 2 files changed, 71 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f0f0436acf..bcf219c472 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,6 @@ -3.2.10 (2019-XX-XX) +3.2.10 (2019-11-19) =================== -- Auto-import dependecies. No need to use: +- Auto-import dependencies. No need to use: from .dependencies import * # NOQA - Add makefile target to run all tests in debug mode. This mode is more strict and sidesteps a Django bug that @@ -11,7 +11,7 @@ - Add missing label to metadata and file metadata model properties entries. - Improve workflow field help text. Make it usable - for the creation/edit form help text and for the + for the creation/edit form help text and for the column pop over. - Fix NamedMultiWidget issue on Python 3. Affects document checkout form. GitLab issue #683. Thanks diff --git a/docs/releases/3.2.10.rst b/docs/releases/3.2.10.rst index a017f5089c..13f1f13092 100644 --- a/docs/releases/3.2.10.rst +++ b/docs/releases/3.2.10.rst @@ -1,13 +1,79 @@ Version 3.2.10 ============== -Released: November XX, 2019 - +Released: November 19, 2019 Changes ------- +Dependencies +^^^^^^^^^^^^ +App dependencies are now automatically imported ensuring there are no missing +dependencies when installing or upgrading. + +For developers this means that the line:: + + from .dependencies import * # NOQA + +is no longer needed. + + +Documentation +^^^^^^^^^^^^^ + +Improvements in the settings chapter. + +The file paths in the documentation are now inserted programmatically. +This ensures consistency and avoid human error when copying and pasting path +when writing documentation chapters. + + +Testing +^^^^^^^ + +New targets for the makefile to run all tests in debug mode. This mode is +more strict and sidesteps a Django bug that causes errors in the template +code that to be silent during tests. + +Renamed the ``expected_content_type`` to ``expected_content_types`` and +allow a list of content types to be specified. + +Added missing ``Event`` class cache invalidation when calling the +``refresh()`` method. + + +Python 3 +^^^^^^^^ + +Fixed an issue with the NamedMultiWidget class on Python 3. This issue +affected the document checkout form. This closes GitLab issue #683. Thanks +to John Bentley (@johnbentleyii) for the report. + + +Statistics +^^^^^^^^^^ + +Statistics code were updated to use timezone aware date. This solves a few +off-by-one-day results. + + +Workflows +^^^^^^^^^ + +When renaming custom workflow state actions, the workflow system would +error out when trying to show the label of the deleted or removed class. A +placeholder label will now be shown on invalid action classes reading +"Unknown action type". + +The help text for workflows was improved. + + +Indexing +^^^^^^^^ + +The missing label for document metadata and file metadata model +properties entries were added. No functional changes were made just visual. Removals From 23211847a3d9d92582c5cd5a897f1b12bef7aa8f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 23:04:12 -0400 Subject: [PATCH 04/14] Update language translation files Signed-off-by: Roberto Rosario --- .../apps/acls/locale/ar/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/bg/LC_MESSAGES/django.po | 2 +- .../acls/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/cs/LC_MESSAGES/django.po | 2 +- .../acls/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../acls/locale/de_DE/LC_MESSAGES/django.mo | Bin 4766 -> 4940 bytes .../acls/locale/de_DE/LC_MESSAGES/django.po | 11 +- .../apps/acls/locale/el/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/fr/LC_MESSAGES/django.mo | Bin 3898 -> 4527 bytes .../apps/acls/locale/fr/LC_MESSAGES/django.po | 15 +- .../apps/acls/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/it/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/lv/LC_MESSAGES/django.po | 2 +- .../acls/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/pt/LC_MESSAGES/django.po | 2 +- .../acls/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../acls/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/ru/LC_MESSAGES/django.po | 2 +- .../acls/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../acls/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../acls/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../apps/acls/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 4 +- .../locale/bg/LC_MESSAGES/django.mo | Bin 9891 -> 10481 bytes .../locale/bg/LC_MESSAGES/django.po | 10 +- .../locale/bs_BA/LC_MESSAGES/django.po | 4 +- .../locale/cs/LC_MESSAGES/django.po | 4 +- .../locale/da_DK/LC_MESSAGES/django.po | 4 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 7715 -> 8838 bytes .../locale/de_DE/LC_MESSAGES/django.po | 17 +- .../locale/el/LC_MESSAGES/django.po | 4 +- .../locale/en/LC_MESSAGES/django.po | 4 +- .../locale/es/LC_MESSAGES/django.po | 4 +- .../locale/fa/LC_MESSAGES/django.po | 4 +- .../locale/fr/LC_MESSAGES/django.po | 4 +- .../locale/hu/LC_MESSAGES/django.po | 4 +- .../locale/id/LC_MESSAGES/django.po | 4 +- .../locale/it/LC_MESSAGES/django.po | 4 +- .../locale/lv/LC_MESSAGES/django.po | 4 +- .../locale/nl_NL/LC_MESSAGES/django.po | 4 +- .../locale/pl/LC_MESSAGES/django.po | 4 +- .../locale/pt/LC_MESSAGES/django.po | 4 +- .../locale/pt_BR/LC_MESSAGES/django.po | 4 +- .../locale/ro_RO/LC_MESSAGES/django.po | 4 +- .../locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.po | 4 +- .../locale/tr_TR/LC_MESSAGES/django.po | 4 +- .../locale/vi_VN/LC_MESSAGES/django.po | 4 +- .../locale/zh/LC_MESSAGES/django.po | 4 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3093 -> 3387 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../autoadmin/locale/ar/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/bg/LC_MESSAGES/django.po | 4 +- .../locale/bs_BA/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/cs/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/da/LC_MESSAGES/django.po | 4 +- .../locale/da_DK/LC_MESSAGES/django.po | 4 +- .../locale/de_DE/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/el/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/en/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/es/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/fa/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/fr/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/hu/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/id/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/it/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/lv/LC_MESSAGES/django.po | 4 +- .../locale/nl_NL/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/pl/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/pt/LC_MESSAGES/django.po | 4 +- .../locale/pt_BR/LC_MESSAGES/django.po | 4 +- .../locale/ro_RO/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.po | 4 +- .../locale/tr_TR/LC_MESSAGES/django.po | 4 +- .../locale/vi_VN/LC_MESSAGES/django.po | 4 +- .../autoadmin/locale/zh/LC_MESSAGES/django.po | 4 +- .../locale/zh_CN/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/ar/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/bg/LC_MESSAGES/django.po | 4 +- .../locale/bs_BA/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/cs/LC_MESSAGES/django.po | 4 +- .../locale/da_DK/LC_MESSAGES/django.po | 4 +- .../locale/de_DE/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/el/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/en/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/es/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/fa/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/fr/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/hu/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/id/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/it/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/lv/LC_MESSAGES/django.po | 4 +- .../locale/nl_NL/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/pl/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/pt/LC_MESSAGES/django.po | 4 +- .../locale/pt_BR/LC_MESSAGES/django.po | 4 +- .../locale/ro_RO/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.po | 4 +- .../locale/tr_TR/LC_MESSAGES/django.po | 4 +- .../locale/vi_VN/LC_MESSAGES/django.po | 4 +- .../cabinets/locale/zh/LC_MESSAGES/django.po | 4 +- .../checkouts/locale/ar/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4128 -> 4194 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../checkouts/locale/el/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/en/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/es/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/fa/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/fr/LC_MESSAGES/django.mo | Bin 4500 -> 4567 bytes .../checkouts/locale/fr/LC_MESSAGES/django.po | 8 +- .../checkouts/locale/hu/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/id/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/it/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/pl/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../checkouts/locale/zh/LC_MESSAGES/django.po | 2 +- .../common/locale/ar/LC_MESSAGES/django.mo | Bin 1357 -> 1357 bytes .../common/locale/ar/LC_MESSAGES/django.po | 32 ++-- .../common/locale/bg/LC_MESSAGES/django.mo | Bin 38391 -> 38365 bytes .../common/locale/bg/LC_MESSAGES/django.po | 34 ++-- .../common/locale/bs_BA/LC_MESSAGES/django.mo | Bin 5233 -> 5233 bytes .../common/locale/bs_BA/LC_MESSAGES/django.po | 32 ++-- .../common/locale/cs/LC_MESSAGES/django.mo | Bin 12054 -> 12035 bytes .../common/locale/cs/LC_MESSAGES/django.po | 34 ++-- .../common/locale/da_DK/LC_MESSAGES/django.mo | Bin 809 -> 809 bytes .../common/locale/da_DK/LC_MESSAGES/django.po | 32 ++-- .../common/locale/de_DE/LC_MESSAGES/django.mo | Bin 26984 -> 28767 bytes .../common/locale/de_DE/LC_MESSAGES/django.po | 41 ++--- .../common/locale/el/LC_MESSAGES/django.mo | Bin 5367 -> 5367 bytes .../common/locale/el/LC_MESSAGES/django.po | 32 ++-- .../common/locale/en/LC_MESSAGES/django.po | 30 ++-- .../common/locale/es/LC_MESSAGES/django.mo | Bin 29445 -> 29445 bytes .../common/locale/es/LC_MESSAGES/django.po | 32 ++-- .../common/locale/fa/LC_MESSAGES/django.mo | Bin 5147 -> 5147 bytes .../common/locale/fa/LC_MESSAGES/django.po | 32 ++-- .../common/locale/fr/LC_MESSAGES/django.mo | Bin 8811 -> 8790 bytes .../common/locale/fr/LC_MESSAGES/django.po | 34 ++-- .../common/locale/hu/LC_MESSAGES/django.mo | Bin 1293 -> 1293 bytes .../common/locale/hu/LC_MESSAGES/django.po | 32 ++-- .../common/locale/id/LC_MESSAGES/django.mo | Bin 1340 -> 1340 bytes .../common/locale/id/LC_MESSAGES/django.po | 32 ++-- .../common/locale/it/LC_MESSAGES/django.mo | Bin 10362 -> 10362 bytes .../common/locale/it/LC_MESSAGES/django.po | 32 ++-- .../common/locale/lv/LC_MESSAGES/django.mo | Bin 28376 -> 28350 bytes .../common/locale/lv/LC_MESSAGES/django.po | 34 ++-- .../common/locale/nl_NL/LC_MESSAGES/django.mo | Bin 3335 -> 3335 bytes .../common/locale/nl_NL/LC_MESSAGES/django.po | 32 ++-- .../common/locale/pl/LC_MESSAGES/django.mo | Bin 11452 -> 11429 bytes .../common/locale/pl/LC_MESSAGES/django.po | 34 ++-- .../common/locale/pt/LC_MESSAGES/django.mo | Bin 1264 -> 1264 bytes .../common/locale/pt/LC_MESSAGES/django.po | 32 ++-- .../common/locale/pt_BR/LC_MESSAGES/django.mo | Bin 18841 -> 18841 bytes .../common/locale/pt_BR/LC_MESSAGES/django.po | 32 ++-- .../common/locale/ro_RO/LC_MESSAGES/django.mo | Bin 29442 -> 29445 bytes .../common/locale/ro_RO/LC_MESSAGES/django.po | 34 ++-- .../common/locale/ru/LC_MESSAGES/django.mo | Bin 5873 -> 5873 bytes .../common/locale/ru/LC_MESSAGES/django.po | 32 ++-- .../common/locale/sl_SI/LC_MESSAGES/django.mo | Bin 847 -> 847 bytes .../common/locale/sl_SI/LC_MESSAGES/django.po | 32 ++-- .../common/locale/tr_TR/LC_MESSAGES/django.mo | Bin 4225 -> 4225 bytes .../common/locale/tr_TR/LC_MESSAGES/django.po | 32 ++-- .../common/locale/vi_VN/LC_MESSAGES/django.mo | Bin 1155 -> 1155 bytes .../common/locale/vi_VN/LC_MESSAGES/django.po | 32 ++-- .../common/locale/zh/LC_MESSAGES/django.mo | Bin 16493 -> 16493 bytes .../common/locale/zh/LC_MESSAGES/django.po | 32 ++-- .../converter/locale/ar/LC_MESSAGES/django.po | 6 +- .../converter/locale/bg/LC_MESSAGES/django.po | 6 +- .../locale/bs_BA/LC_MESSAGES/django.po | 6 +- .../converter/locale/cs/LC_MESSAGES/django.po | 6 +- .../locale/da_DK/LC_MESSAGES/django.po | 6 +- .../locale/de_DE/LC_MESSAGES/django.po | 6 +- .../converter/locale/el/LC_MESSAGES/django.po | 6 +- .../converter/locale/en/LC_MESSAGES/django.po | 6 +- .../converter/locale/es/LC_MESSAGES/django.po | 6 +- .../converter/locale/fa/LC_MESSAGES/django.po | 6 +- .../converter/locale/fr/LC_MESSAGES/django.po | 6 +- .../converter/locale/hu/LC_MESSAGES/django.po | 6 +- .../converter/locale/id/LC_MESSAGES/django.po | 6 +- .../converter/locale/it/LC_MESSAGES/django.po | 6 +- .../converter/locale/lv/LC_MESSAGES/django.po | 6 +- .../locale/nl_NL/LC_MESSAGES/django.po | 6 +- .../converter/locale/pl/LC_MESSAGES/django.po | 6 +- .../converter/locale/pt/LC_MESSAGES/django.po | 6 +- .../locale/pt_BR/LC_MESSAGES/django.po | 6 +- .../locale/ro_RO/LC_MESSAGES/django.po | 6 +- .../converter/locale/ru/LC_MESSAGES/django.po | 6 +- .../locale/sl_SI/LC_MESSAGES/django.po | 6 +- .../locale/tr_TR/LC_MESSAGES/django.po | 6 +- .../locale/vi_VN/LC_MESSAGES/django.po | 6 +- .../converter/locale/zh/LC_MESSAGES/django.po | 6 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 121 +++++++------- .../locale/bg/LC_MESSAGES/django.po | 121 +++++++------- .../locale/bs_BA/LC_MESSAGES/django.po | 121 +++++++------- .../locale/cs/LC_MESSAGES/django.po | 121 +++++++------- .../locale/da_DK/LC_MESSAGES/django.po | 121 +++++++------- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4526 -> 7038 bytes .../locale/de_DE/LC_MESSAGES/django.po | 150 ++++++++++-------- .../locale/el/LC_MESSAGES/django.po | 121 +++++++------- .../locale/en/LC_MESSAGES/django.po | 121 +++++++------- .../locale/es/LC_MESSAGES/django.po | 121 +++++++------- .../locale/fa/LC_MESSAGES/django.po | 121 +++++++------- .../locale/fr/LC_MESSAGES/django.mo | Bin 5364 -> 6090 bytes .../locale/fr/LC_MESSAGES/django.po | 129 ++++++++------- .../locale/hu/LC_MESSAGES/django.po | 121 +++++++------- .../locale/id/LC_MESSAGES/django.po | 121 +++++++------- .../locale/it/LC_MESSAGES/django.po | 121 +++++++------- .../locale/lv/LC_MESSAGES/django.po | 121 +++++++------- .../locale/nl_NL/LC_MESSAGES/django.po | 121 +++++++------- .../locale/pl/LC_MESSAGES/django.po | 121 +++++++------- .../locale/pt/LC_MESSAGES/django.po | 121 +++++++------- .../locale/pt_BR/LC_MESSAGES/django.po | 121 +++++++------- .../locale/ro_RO/LC_MESSAGES/django.po | 121 +++++++------- .../locale/ru/LC_MESSAGES/django.po | 121 +++++++------- .../locale/sl_SI/LC_MESSAGES/django.po | 121 +++++++------- .../locale/tr_TR/LC_MESSAGES/django.po | 121 +++++++------- .../locale/vi_VN/LC_MESSAGES/django.po | 121 +++++++------- .../locale/zh/LC_MESSAGES/django.po | 121 +++++++------- .../locale/ar/LC_MESSAGES/django.po | 18 +-- .../locale/bg/LC_MESSAGES/django.po | 18 +-- .../locale/bs_BA/LC_MESSAGES/django.po | 18 +-- .../locale/cs/LC_MESSAGES/django.po | 18 +-- .../locale/da_DK/LC_MESSAGES/django.po | 18 +-- .../locale/de_DE/LC_MESSAGES/django.po | 18 +-- .../locale/el/LC_MESSAGES/django.po | 18 +-- .../locale/en/LC_MESSAGES/django.po | 18 +-- .../locale/es/LC_MESSAGES/django.po | 18 +-- .../locale/fa/LC_MESSAGES/django.po | 18 +-- .../locale/fr/LC_MESSAGES/django.po | 18 +-- .../locale/hu/LC_MESSAGES/django.po | 18 +-- .../locale/id/LC_MESSAGES/django.po | 18 +-- .../locale/it/LC_MESSAGES/django.po | 18 +-- .../locale/lv/LC_MESSAGES/django.po | 18 +-- .../locale/nl_NL/LC_MESSAGES/django.po | 18 +-- .../locale/pl/LC_MESSAGES/django.po | 18 +-- .../locale/pt/LC_MESSAGES/django.po | 18 +-- .../locale/pt_BR/LC_MESSAGES/django.po | 18 +-- .../locale/ro_RO/LC_MESSAGES/django.po | 18 +-- .../locale/ru/LC_MESSAGES/django.po | 18 +-- .../locale/sl_SI/LC_MESSAGES/django.po | 18 +-- .../locale/tr_TR/LC_MESSAGES/django.po | 18 +-- .../locale/vi_VN/LC_MESSAGES/django.po | 18 +-- .../locale/zh/LC_MESSAGES/django.po | 18 +-- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 8013 -> 8103 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 8 +- .../locale/bg/LC_MESSAGES/django.po | 8 +- .../locale/bs_BA/LC_MESSAGES/django.po | 8 +- .../locale/cs/LC_MESSAGES/django.po | 8 +- .../locale/da_DK/LC_MESSAGES/django.po | 8 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 4490 -> 4885 bytes .../locale/de_DE/LC_MESSAGES/django.po | 19 +-- .../locale/el/LC_MESSAGES/django.po | 8 +- .../locale/en/LC_MESSAGES/django.po | 8 +- .../locale/es/LC_MESSAGES/django.po | 8 +- .../locale/fa/LC_MESSAGES/django.po | 8 +- .../locale/fr/LC_MESSAGES/django.po | 8 +- .../locale/hu/LC_MESSAGES/django.po | 8 +- .../locale/id/LC_MESSAGES/django.po | 8 +- .../locale/it/LC_MESSAGES/django.po | 8 +- .../locale/lv/LC_MESSAGES/django.po | 8 +- .../locale/nl_NL/LC_MESSAGES/django.po | 8 +- .../locale/pl/LC_MESSAGES/django.po | 8 +- .../locale/pt/LC_MESSAGES/django.po | 8 +- .../locale/pt_BR/LC_MESSAGES/django.po | 8 +- .../locale/ro_RO/LC_MESSAGES/django.po | 8 +- .../locale/ru/LC_MESSAGES/django.po | 8 +- .../locale/sl_SI/LC_MESSAGES/django.po | 8 +- .../locale/tr_TR/LC_MESSAGES/django.po | 8 +- .../locale/vi_VN/LC_MESSAGES/django.po | 8 +- .../locale/zh/LC_MESSAGES/django.po | 8 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.mo | Bin 952 -> 952 bytes .../locale/ar/LC_MESSAGES/django.po | 78 ++++----- .../locale/bg/LC_MESSAGES/django.mo | Bin 23766 -> 23740 bytes .../locale/bg/LC_MESSAGES/django.po | 80 +++++----- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 11555 -> 11555 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 78 ++++----- .../locale/cs/LC_MESSAGES/django.mo | Bin 16834 -> 16815 bytes .../locale/cs/LC_MESSAGES/django.po | 80 +++++----- .../locale/da_DK/LC_MESSAGES/django.mo | Bin 782 -> 782 bytes .../locale/da_DK/LC_MESSAGES/django.po | 78 ++++----- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 15876 -> 17079 bytes .../locale/de_DE/LC_MESSAGES/django.po | 105 ++++++------ .../locale/el/LC_MESSAGES/django.mo | Bin 11351 -> 11351 bytes .../locale/el/LC_MESSAGES/django.po | 78 ++++----- .../locale/en/LC_MESSAGES/django.po | 76 ++++----- .../locale/es/LC_MESSAGES/django.mo | Bin 18383 -> 18383 bytes .../locale/es/LC_MESSAGES/django.po | 78 ++++----- .../locale/fa/LC_MESSAGES/django.mo | Bin 12981 -> 12981 bytes .../locale/fa/LC_MESSAGES/django.po | 78 ++++----- .../locale/fr/LC_MESSAGES/django.mo | Bin 18171 -> 18231 bytes .../locale/fr/LC_MESSAGES/django.po | 80 +++++----- .../locale/hu/LC_MESSAGES/django.mo | Bin 1337 -> 1337 bytes .../locale/hu/LC_MESSAGES/django.po | 78 ++++----- .../locale/id/LC_MESSAGES/django.mo | Bin 4776 -> 4776 bytes .../locale/id/LC_MESSAGES/django.po | 78 ++++----- .../locale/it/LC_MESSAGES/django.mo | Bin 6972 -> 6972 bytes .../locale/it/LC_MESSAGES/django.po | 78 ++++----- .../locale/lv/LC_MESSAGES/django.mo | Bin 17153 -> 17153 bytes .../locale/lv/LC_MESSAGES/django.po | 78 ++++----- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2896 -> 2896 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 78 ++++----- .../locale/pl/LC_MESSAGES/django.mo | Bin 2682 -> 2682 bytes .../locale/pl/LC_MESSAGES/django.po | 78 ++++----- .../locale/pt/LC_MESSAGES/django.mo | Bin 810 -> 810 bytes .../locale/pt/LC_MESSAGES/django.po | 78 ++++----- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 16245 -> 16245 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 78 ++++----- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 18354 -> 18357 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 80 +++++----- .../locale/ru/LC_MESSAGES/django.mo | Bin 1927 -> 1927 bytes .../locale/ru/LC_MESSAGES/django.po | 78 ++++----- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 844 -> 844 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 78 ++++----- .../locale/tr_TR/LC_MESSAGES/django.mo | Bin 7642 -> 7642 bytes .../locale/tr_TR/LC_MESSAGES/django.po | 78 ++++----- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 669 -> 669 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 78 ++++----- .../locale/zh/LC_MESSAGES/django.mo | Bin 14037 -> 14037 bytes .../locale/zh/LC_MESSAGES/django.po | 78 ++++----- .../documents/locale/ar/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/bg/LC_MESSAGES/django.po | 40 ++--- .../locale/bs_BA/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/cs/LC_MESSAGES/django.po | 40 ++--- .../locale/da_DK/LC_MESSAGES/django.po | 40 ++--- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 31813 -> 32387 bytes .../locale/de_DE/LC_MESSAGES/django.po | 53 ++++--- .../documents/locale/el/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/en/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/es/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/fa/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/fr/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/hu/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/id/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/it/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/lv/LC_MESSAGES/django.po | 40 ++--- .../locale/nl_NL/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/pl/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/pt/LC_MESSAGES/django.po | 40 ++--- .../locale/pt_BR/LC_MESSAGES/django.po | 40 ++--- .../locale/ro_RO/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/ru/LC_MESSAGES/django.po | 40 ++--- .../locale/sl_SI/LC_MESSAGES/django.po | 40 ++--- .../locale/tr_TR/LC_MESSAGES/django.po | 40 ++--- .../locale/vi_VN/LC_MESSAGES/django.po | 40 ++--- .../documents/locale/zh/LC_MESSAGES/django.po | 40 ++--- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../events/locale/ar/LC_MESSAGES/django.po | 20 +-- .../events/locale/bg/LC_MESSAGES/django.po | 20 +-- .../events/locale/bs_BA/LC_MESSAGES/django.po | 20 +-- .../events/locale/cs/LC_MESSAGES/django.po | 20 +-- .../events/locale/da_DK/LC_MESSAGES/django.po | 20 +-- .../events/locale/de_DE/LC_MESSAGES/django.po | 20 +-- .../events/locale/el/LC_MESSAGES/django.po | 20 +-- .../events/locale/en/LC_MESSAGES/django.po | 20 +-- .../events/locale/es/LC_MESSAGES/django.po | 20 +-- .../events/locale/fa/LC_MESSAGES/django.po | 20 +-- .../events/locale/fr/LC_MESSAGES/django.po | 20 +-- .../events/locale/hu/LC_MESSAGES/django.po | 20 +-- .../events/locale/id/LC_MESSAGES/django.po | 20 +-- .../events/locale/it/LC_MESSAGES/django.po | 20 +-- .../events/locale/lv/LC_MESSAGES/django.po | 20 +-- .../events/locale/nl_NL/LC_MESSAGES/django.po | 20 +-- .../events/locale/pl/LC_MESSAGES/django.po | 20 +-- .../events/locale/pt/LC_MESSAGES/django.po | 20 +-- .../events/locale/pt_BR/LC_MESSAGES/django.po | 20 +-- .../events/locale/ro_RO/LC_MESSAGES/django.po | 20 +-- .../events/locale/ru/LC_MESSAGES/django.po | 20 +-- .../events/locale/sl_SI/LC_MESSAGES/django.po | 20 +-- .../events/locale/tr_TR/LC_MESSAGES/django.po | 20 +-- .../events/locale/vi_VN/LC_MESSAGES/django.po | 20 +-- .../events/locale/zh/LC_MESSAGES/django.po | 20 +-- .../locale/ar/LC_MESSAGES/django.po | 8 +- .../locale/bg/LC_MESSAGES/django.po | 8 +- .../locale/bs_BA/LC_MESSAGES/django.po | 8 +- .../locale/cs/LC_MESSAGES/django.po | 8 +- .../locale/da_DK/LC_MESSAGES/django.po | 8 +- .../locale/de_DE/LC_MESSAGES/django.po | 8 +- .../locale/el/LC_MESSAGES/django.po | 8 +- .../locale/en/LC_MESSAGES/django.po | 8 +- .../locale/es/LC_MESSAGES/django.po | 8 +- .../locale/fa/LC_MESSAGES/django.po | 8 +- .../locale/fr/LC_MESSAGES/django.po | 8 +- .../locale/hu/LC_MESSAGES/django.po | 8 +- .../locale/id/LC_MESSAGES/django.po | 8 +- .../locale/it/LC_MESSAGES/django.po | 8 +- .../locale/lv/LC_MESSAGES/django.po | 8 +- .../locale/nl_NL/LC_MESSAGES/django.po | 8 +- .../locale/pl/LC_MESSAGES/django.po | 8 +- .../locale/pt/LC_MESSAGES/django.po | 8 +- .../locale/pt_BR/LC_MESSAGES/django.po | 8 +- .../locale/ro_RO/LC_MESSAGES/django.po | 8 +- .../locale/ru/LC_MESSAGES/django.po | 8 +- .../locale/sl_SI/LC_MESSAGES/django.po | 8 +- .../locale/tr_TR/LC_MESSAGES/django.po | 8 +- .../locale/vi_VN/LC_MESSAGES/django.po | 8 +- .../locale/zh/LC_MESSAGES/django.po | 8 +- .../linking/locale/ar/LC_MESSAGES/django.po | 2 +- .../linking/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../linking/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../linking/locale/el/LC_MESSAGES/django.po | 2 +- .../linking/locale/en/LC_MESSAGES/django.po | 2 +- .../linking/locale/es/LC_MESSAGES/django.po | 2 +- .../linking/locale/fa/LC_MESSAGES/django.po | 2 +- .../linking/locale/fr/LC_MESSAGES/django.po | 2 +- .../linking/locale/hu/LC_MESSAGES/django.po | 2 +- .../linking/locale/id/LC_MESSAGES/django.po | 2 +- .../linking/locale/it/LC_MESSAGES/django.po | 2 +- .../linking/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../linking/locale/pl/LC_MESSAGES/django.po | 2 +- .../linking/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../linking/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../linking/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../mailer/locale/ar/LC_MESSAGES/django.po | 2 +- .../mailer/locale/bg/LC_MESSAGES/django.po | 2 +- .../mailer/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../mailer/locale/cs/LC_MESSAGES/django.po | 2 +- .../mailer/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../mailer/locale/de_DE/LC_MESSAGES/django.mo | Bin 8921 -> 9056 bytes .../mailer/locale/de_DE/LC_MESSAGES/django.po | 11 +- .../mailer/locale/el/LC_MESSAGES/django.po | 2 +- .../mailer/locale/en/LC_MESSAGES/django.po | 2 +- .../mailer/locale/es/LC_MESSAGES/django.po | 2 +- .../mailer/locale/fa/LC_MESSAGES/django.po | 2 +- .../mailer/locale/fr/LC_MESSAGES/django.po | 2 +- .../mailer/locale/hu/LC_MESSAGES/django.po | 2 +- .../mailer/locale/id/LC_MESSAGES/django.po | 2 +- .../mailer/locale/it/LC_MESSAGES/django.po | 2 +- .../mailer/locale/lv/LC_MESSAGES/django.po | 2 +- .../mailer/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../mailer/locale/pl/LC_MESSAGES/django.po | 2 +- .../mailer/locale/pt/LC_MESSAGES/django.po | 2 +- .../mailer/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../mailer/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../mailer/locale/ru/LC_MESSAGES/django.po | 2 +- .../mailer/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../mailer/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../mailer/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../mailer/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 8 +- .../locale/bg/LC_MESSAGES/django.po | 8 +- .../locale/bs_BA/LC_MESSAGES/django.po | 8 +- .../locale/cs/LC_MESSAGES/django.po | 8 +- .../locale/da_DK/LC_MESSAGES/django.po | 8 +- .../locale/de_DE/LC_MESSAGES/django.po | 8 +- .../locale/el/LC_MESSAGES/django.po | 8 +- .../locale/en/LC_MESSAGES/django.po | 8 +- .../locale/es/LC_MESSAGES/django.po | 8 +- .../locale/fa/LC_MESSAGES/django.po | 8 +- .../locale/fr/LC_MESSAGES/django.po | 8 +- .../locale/hu/LC_MESSAGES/django.po | 8 +- .../locale/id/LC_MESSAGES/django.po | 8 +- .../locale/it/LC_MESSAGES/django.po | 8 +- .../locale/lv/LC_MESSAGES/django.po | 8 +- .../locale/nl_NL/LC_MESSAGES/django.po | 8 +- .../locale/pl/LC_MESSAGES/django.po | 8 +- .../locale/pt/LC_MESSAGES/django.po | 8 +- .../locale/pt_BR/LC_MESSAGES/django.po | 8 +- .../locale/ro_RO/LC_MESSAGES/django.po | 8 +- .../locale/ru/LC_MESSAGES/django.po | 8 +- .../locale/sl_SI/LC_MESSAGES/django.po | 8 +- .../locale/tr_TR/LC_MESSAGES/django.po | 8 +- .../locale/vi_VN/LC_MESSAGES/django.po | 8 +- .../locale/zh/LC_MESSAGES/django.po | 8 +- .../metadata/locale/ar/LC_MESSAGES/django.mo | Bin 2864 -> 2864 bytes .../metadata/locale/ar/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/bg/LC_MESSAGES/django.mo | Bin 15643 -> 15617 bytes .../metadata/locale/bg/LC_MESSAGES/django.po | 22 +-- .../locale/bs_BA/LC_MESSAGES/django.mo | Bin 8322 -> 8322 bytes .../locale/bs_BA/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/cs/LC_MESSAGES/django.mo | Bin 11874 -> 11855 bytes .../metadata/locale/cs/LC_MESSAGES/django.po | 22 +-- .../locale/da_DK/LC_MESSAGES/django.mo | Bin 899 -> 899 bytes .../locale/da_DK/LC_MESSAGES/django.po | 20 ++- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 11439 -> 11439 bytes .../locale/de_DE/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/el/LC_MESSAGES/django.mo | Bin 1292 -> 1292 bytes .../metadata/locale/el/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/en/LC_MESSAGES/django.po | 18 ++- .../metadata/locale/es/LC_MESSAGES/django.mo | Bin 11930 -> 11930 bytes .../metadata/locale/es/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/fa/LC_MESSAGES/django.mo | Bin 9361 -> 9361 bytes .../metadata/locale/fa/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/fr/LC_MESSAGES/django.mo | Bin 11320 -> 11299 bytes .../metadata/locale/fr/LC_MESSAGES/django.po | 22 +-- .../metadata/locale/hu/LC_MESSAGES/django.mo | Bin 1178 -> 1178 bytes .../metadata/locale/hu/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/id/LC_MESSAGES/django.mo | Bin 911 -> 916 bytes .../metadata/locale/id/LC_MESSAGES/django.po | 22 +-- .../metadata/locale/it/LC_MESSAGES/django.mo | Bin 6418 -> 6396 bytes .../metadata/locale/it/LC_MESSAGES/django.po | 22 +-- .../metadata/locale/lv/LC_MESSAGES/django.mo | Bin 11807 -> 11781 bytes .../metadata/locale/lv/LC_MESSAGES/django.po | 22 +-- .../locale/nl_NL/LC_MESSAGES/django.mo | Bin 2259 -> 2259 bytes .../locale/nl_NL/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/pl/LC_MESSAGES/django.mo | Bin 6836 -> 6836 bytes .../metadata/locale/pl/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/pt/LC_MESSAGES/django.mo | Bin 2295 -> 2295 bytes .../metadata/locale/pt/LC_MESSAGES/django.po | 20 ++- .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 8019 -> 8019 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 20 ++- .../locale/ro_RO/LC_MESSAGES/django.mo | Bin 12247 -> 12247 bytes .../locale/ro_RO/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/ru/LC_MESSAGES/django.mo | Bin 6398 -> 6398 bytes .../metadata/locale/ru/LC_MESSAGES/django.po | 20 ++- .../locale/sl_SI/LC_MESSAGES/django.mo | Bin 815 -> 815 bytes .../locale/sl_SI/LC_MESSAGES/django.po | 20 ++- .../locale/tr_TR/LC_MESSAGES/django.mo | Bin 8260 -> 8260 bytes .../locale/tr_TR/LC_MESSAGES/django.po | 20 ++- .../locale/vi_VN/LC_MESSAGES/django.mo | Bin 1638 -> 1638 bytes .../locale/vi_VN/LC_MESSAGES/django.po | 20 ++- .../metadata/locale/zh/LC_MESSAGES/django.mo | Bin 10696 -> 10696 bytes .../metadata/locale/zh/LC_MESSAGES/django.po | 20 ++- .../mirroring/locale/ar/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/bg/LC_MESSAGES/django.po | 4 +- .../locale/bs_BA/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/cs/LC_MESSAGES/django.po | 4 +- .../locale/da_DK/LC_MESSAGES/django.po | 4 +- .../locale/de_DE/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/el/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/en/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/es/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/fa/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/fr/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/hu/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/id/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/it/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/lv/LC_MESSAGES/django.po | 4 +- .../locale/nl_NL/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/pl/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/pt/LC_MESSAGES/django.po | 4 +- .../locale/pt_BR/LC_MESSAGES/django.po | 4 +- .../locale/ro_RO/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.po | 4 +- .../locale/tr_TR/LC_MESSAGES/django.po | 4 +- .../locale/vi_VN/LC_MESSAGES/django.po | 4 +- .../mirroring/locale/zh/LC_MESSAGES/django.po | 4 +- .../apps/motd/locale/ar/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/bg/LC_MESSAGES/django.po | 2 +- .../motd/locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/cs/LC_MESSAGES/django.po | 2 +- .../motd/locale/da_DK/LC_MESSAGES/django.po | 2 +- .../motd/locale/de_DE/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/el/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/en/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/es/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/fa/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/fr/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/hu/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/id/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/it/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/lv/LC_MESSAGES/django.po | 2 +- .../motd/locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/pl/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/pt/LC_MESSAGES/django.po | 2 +- .../motd/locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../motd/locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/ru/LC_MESSAGES/django.po | 2 +- .../motd/locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../motd/locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../motd/locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../apps/motd/locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../apps/ocr/locale/ar/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/bg/LC_MESSAGES/django.po | 8 +- .../ocr/locale/bs_BA/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/cs/LC_MESSAGES/django.po | 8 +- .../ocr/locale/da_DK/LC_MESSAGES/django.po | 8 +- .../ocr/locale/de_DE/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/el/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/en/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/es/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/fa/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/fr/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/hu/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/id/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/it/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/lv/LC_MESSAGES/django.po | 8 +- .../ocr/locale/nl_NL/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/pl/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/pt/LC_MESSAGES/django.po | 8 +- .../ocr/locale/pt_BR/LC_MESSAGES/django.po | 8 +- .../ocr/locale/ro_RO/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/ru/LC_MESSAGES/django.po | 8 +- .../ocr/locale/sl_SI/LC_MESSAGES/django.po | 8 +- .../ocr/locale/tr_TR/LC_MESSAGES/django.po | 8 +- .../ocr/locale/vi_VN/LC_MESSAGES/django.po | 8 +- .../apps/ocr/locale/zh/LC_MESSAGES/django.po | 8 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 3461 -> 3527 bytes .../locale/de_DE/LC_MESSAGES/django.po | 9 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../platform/locale/ar/LC_MESSAGES/django.po | 2 +- .../platform/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../platform/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../platform/locale/el/LC_MESSAGES/django.po | 2 +- .../platform/locale/en/LC_MESSAGES/django.po | 2 +- .../platform/locale/es/LC_MESSAGES/django.po | 2 +- .../platform/locale/fa/LC_MESSAGES/django.po | 2 +- .../platform/locale/fr/LC_MESSAGES/django.po | 2 +- .../platform/locale/hu/LC_MESSAGES/django.po | 2 +- .../platform/locale/id/LC_MESSAGES/django.po | 2 +- .../platform/locale/it/LC_MESSAGES/django.po | 2 +- .../platform/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../platform/locale/pl/LC_MESSAGES/django.po | 2 +- .../platform/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../platform/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../platform/locale/zh/LC_MESSAGES/django.po | 2 +- .../rest_api/locale/ar/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/bg/LC_MESSAGES/django.po | 4 +- .../locale/bs_BA/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/cs/LC_MESSAGES/django.po | 4 +- .../locale/da_DK/LC_MESSAGES/django.po | 4 +- .../locale/de_DE/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/el/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/en/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/es/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/fa/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/fr/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/hu/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/id/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/it/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/lv/LC_MESSAGES/django.po | 4 +- .../locale/nl_NL/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/pl/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/pt/LC_MESSAGES/django.po | 4 +- .../locale/pt_BR/LC_MESSAGES/django.po | 4 +- .../locale/ro_RO/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/ru/LC_MESSAGES/django.po | 4 +- .../locale/sl_SI/LC_MESSAGES/django.po | 4 +- .../locale/tr_TR/LC_MESSAGES/django.po | 4 +- .../locale/vi_VN/LC_MESSAGES/django.po | 4 +- .../rest_api/locale/zh/LC_MESSAGES/django.po | 4 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../sources/locale/ar/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/bg/LC_MESSAGES/django.po | 64 ++++---- .../locale/bs_BA/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/cs/LC_MESSAGES/django.po | 64 ++++---- .../locale/da_DK/LC_MESSAGES/django.po | 64 ++++---- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 15325 -> 15648 bytes .../locale/de_DE/LC_MESSAGES/django.po | 71 +++++---- .../sources/locale/el/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/en/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/es/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/fa/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/fr/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/hu/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/id/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/it/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/lv/LC_MESSAGES/django.po | 64 ++++---- .../locale/nl_NL/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/pl/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/pt/LC_MESSAGES/django.po | 64 ++++---- .../locale/pt_BR/LC_MESSAGES/django.po | 64 ++++---- .../locale/ro_RO/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/ru/LC_MESSAGES/django.po | 64 ++++---- .../locale/sl_SI/LC_MESSAGES/django.po | 64 ++++---- .../locale/tr_TR/LC_MESSAGES/django.po | 64 ++++---- .../locale/vi_VN/LC_MESSAGES/django.po | 64 ++++---- .../sources/locale/zh/LC_MESSAGES/django.po | 64 ++++---- .../storage/locale/ar/LC_MESSAGES/django.po | 2 +- .../storage/locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../storage/locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../storage/locale/el/LC_MESSAGES/django.po | 2 +- .../storage/locale/en/LC_MESSAGES/django.po | 2 +- .../storage/locale/es/LC_MESSAGES/django.po | 2 +- .../storage/locale/fa/LC_MESSAGES/django.po | 2 +- .../storage/locale/fr/LC_MESSAGES/django.po | 2 +- .../storage/locale/hu/LC_MESSAGES/django.po | 2 +- .../storage/locale/id/LC_MESSAGES/django.po | 2 +- .../storage/locale/it/LC_MESSAGES/django.po | 2 +- .../storage/locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../storage/locale/pl/LC_MESSAGES/django.po | 2 +- .../storage/locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../storage/locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../storage/locale/zh/LC_MESSAGES/django.po | 2 +- .../apps/tags/locale/ar/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/bg/LC_MESSAGES/django.po | 6 +- .../tags/locale/bs_BA/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/cs/LC_MESSAGES/django.po | 6 +- .../tags/locale/da_DK/LC_MESSAGES/django.po | 6 +- .../tags/locale/de_DE/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/el/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/en/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/es/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/fa/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/fr/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/hu/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/id/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/it/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/lv/LC_MESSAGES/django.po | 6 +- .../tags/locale/nl_NL/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/pl/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/pt/LC_MESSAGES/django.po | 6 +- .../tags/locale/pt_BR/LC_MESSAGES/django.po | 6 +- .../tags/locale/ro_RO/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/ru/LC_MESSAGES/django.po | 6 +- .../tags/locale/sl_SI/LC_MESSAGES/django.po | 6 +- .../tags/locale/tr_TR/LC_MESSAGES/django.po | 6 +- .../tags/locale/vi_VN/LC_MESSAGES/django.po | 6 +- .../apps/tags/locale/zh/LC_MESSAGES/django.po | 6 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.po | 2 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- .../locale/ar/LC_MESSAGES/django.po | 2 +- .../locale/bg/LC_MESSAGES/django.po | 2 +- .../locale/bs_BA/LC_MESSAGES/django.po | 2 +- .../locale/cs/LC_MESSAGES/django.po | 2 +- .../locale/da_DK/LC_MESSAGES/django.po | 2 +- .../locale/de_DE/LC_MESSAGES/django.mo | Bin 5088 -> 5485 bytes .../locale/de_DE/LC_MESSAGES/django.po | 13 +- .../locale/el/LC_MESSAGES/django.po | 2 +- .../locale/en/LC_MESSAGES/django.po | 2 +- .../locale/es/LC_MESSAGES/django.po | 2 +- .../locale/fa/LC_MESSAGES/django.po | 2 +- .../locale/fr/LC_MESSAGES/django.po | 2 +- .../locale/hu/LC_MESSAGES/django.po | 2 +- .../locale/id/LC_MESSAGES/django.po | 2 +- .../locale/it/LC_MESSAGES/django.po | 2 +- .../locale/lv/LC_MESSAGES/django.po | 2 +- .../locale/nl_NL/LC_MESSAGES/django.po | 2 +- .../locale/pl/LC_MESSAGES/django.po | 2 +- .../locale/pt/LC_MESSAGES/django.po | 2 +- .../locale/pt_BR/LC_MESSAGES/django.po | 2 +- .../locale/ro_RO/LC_MESSAGES/django.po | 2 +- .../locale/ru/LC_MESSAGES/django.po | 2 +- .../locale/sl_SI/LC_MESSAGES/django.po | 2 +- .../locale/tr_TR/LC_MESSAGES/django.po | 2 +- .../locale/vi_VN/LC_MESSAGES/django.po | 2 +- .../locale/zh/LC_MESSAGES/django.po | 2 +- 1040 files changed, 6609 insertions(+), 5999 deletions(-) diff --git a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po index 8f17b7032e..43e6c98dd0 100644 --- a/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po index 41bd10c401..9486c996a9 100644 --- a/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-16 08:27+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po index 5f6056f8f5..9c95a691e9 100644 --- a/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po b/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po index 2e56c363aa..4eb5a6f5cf 100644 --- a/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/cs/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-15 16:09+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po index e36cee3a75..269d79cdaa 100644 --- a/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.mo index 5b6f0225688e94f4b721ead7eeb28a4eabce5a25..df90f0e5b8453e1736e3c050a85b00c7535b647f 100644 GIT binary patch delta 1109 zcmZA0Pe{{Y7{Kvoo4UDbYtypK@>e=*=7y6gIVB2)87TxQ6cVv)bGm=B%@q>tDs`?7 zp-@QJwb89W>Jm|%it6IYgLUaBMM2-^w-wRD-uLr+-|hGQdER#`zBgUv4R75YA-XAT zl(a=;2%lN0h&7wY4t$JGe2QsY$2ts9-NQaSi?6X6o9nCN`O!st1b5;j?!l`#DN>dj zJT%bp4)up0a0@rF5#REqzW5RK#Z7F&A9w&=b`d_(O=Vyo?!^mu2Ip`XpP-KS4Ru4` zP0J$n4v}+ocyI(SV-#0$7k)t(J$2Y=#GbnULbFn~VV6L<+1QFr#f<_0o{Y~e-R z#&JB)V4C3-)D3(^oww1;`D^MrydwSR#{s;89IxC(P3ba5@C63(7q(*$7lDnLzlFb{ z_eC$O-WSb~hGs$+$C}LS=@IDtGecLS;iv4QFus`yGHC{v-3;Bm?pV{SDJMZ@=wkka z!Gosx-#AulXqGht`ft*+M#2%;h7-cr0I< z%^IVz!gMkf&l|%Tv*T2<))CCaPgYu;-ujkkF2!8g;^M+gem0RXX5!aht|s#pzkAH; M{_o4moF{Dg4FY_AO#lD@ delta 980 zcmXxj-%C?r9LMqRoU@#@xn=fC>y&BsW3quR8$m`=m{t%bMnRlRD3Dg$y6M+$yXrzT zFVdp!$_V6K1kuH!yXa3CK@j0Z5M311O}#&l?u%!ybDkZa=llIW&pvfM=`4Rv*3TNz z&DF+rF=W<<^L2a>H^OF3coU;|52x?}*5fan!@oF$(+sv?6*b>ajA1Ndwhr5IBksd< zW@Q`Trh$P+s23M-8DC)|&hn-H@hNW5IBvrVuE8pL_!V0*!r%#P!^3z5HP16tA&aZN z!C}_758NE*i}+fzK^(*N_!vpvUSJAeV-Hr5+^mUNcVhx~ViphKIPz!Hd=%;CJht=P z%<4O^2QT1hY-N3W$;|@3$6mZdxvFFax8vgK^G8%`zu;EONA4n@opK?{4N&P@J1w6>|36 z*#OrW@^uyJpeeMCwP3eh7gW#|?SCy)5d|1)x?ne4mgMG=(U#Og?e@5I5Ebf{I@qlT zLO&jzes;)p6x`Nyp|;SD9vkr{3X^`Y6z&fP{~G>;f_USRP$r#CW%|7I!CY_u{xlIC s@r$L@Xu-c;obpTgLe4vzzdTte<+11&uH}Q7XfhI1;zM;oM{;lIKS{D*-T(jq diff --git a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po index f542cf4a60..70ccab73fd 100644 --- a/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/de_DE/LC_MESSAGES/django.po @@ -5,15 +5,16 @@ # Translators: # Berny , 2015 # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2018 # Tobias Paepke , 2016 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" +"PO-Revision-Date: 2019-11-08 19:45+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -200,8 +201,8 @@ msgstr "Zugriffsberechtigung entziehen" #: workflow_actions.py:175 msgid "Grant document access" -msgstr "" +msgstr "Dokumentzugriff gewähren" #: workflow_actions.py:214 msgid "Revoke document access" -msgstr "" +msgstr "Dokumentzugriff entziehen" diff --git a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po b/mayan/apps/acls/locale/el/LC_MESSAGES/django.po index 8b63338798..9fa1f454a0 100644 --- a/mayan/apps/acls/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po index 169744dbd1..9afdef5633 100644 --- a/mayan/apps/acls/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po index 6790b7e9ab..861857443e 100644 --- a/mayan/apps/acls/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po index 2d3674b409..5ec25ab70a 100644 --- a/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/acls/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/acls/locale/fr/LC_MESSAGES/django.mo index 148b9a39cb19232370798c9e8a9afd02d723c4e3..867405e99a7cda0d46656d261336dfd7c0ce9966 100644 GIT binary patch delta 1532 zcmZ|OO=uit9LMoz^U@@4jI|p3mZXo{)NKx3xhqp?b)RH`1PGf%Q(=Vd$3 zOll9ZJ$V#l5!;KRAY`qmum!P5FQbAWg5be}nKhMn0JkS66 zJ+rr`zTDqh+cEIIqRntjaCjx9p2pAn_@Z6!SE`IR@IL$$1N;gHaFVYNu!8e=8z07j z!QObgag6gPa1@`zaa_c6O0`sj&NeRGLAmjJ9Kl~v9#}(p;17HVOWeE{$8iYjsPPCs zf*0^KUdE&N4a#_bp)5om5=Zd`=2yGuoZ^CqC-ElUkAI>JxQ;AJjSnkz2=`zO&mc9a zD>#jBWq9>MQWCSJ!Yq&m!rjC+k3AHa8UmHE|&bSO@prmS!AEWUwdmS06558!(! z1$~W@$j`VN?_!4QC@V{uWhY+49e5r0;7y#wA8;4m#nxkV{-(o6O_RT@Y!+oj4xYz% z@OfNADPV^3nM)l&TeuBP7Y@&Xmga`l0%hdba-5;lu6v@XqN|N#61DPU5@zm4-3iRejWoOUIW(#}8_5 z93JbQAMP(zC|6s5Ir5i$^PkBaY=1nmw>4AK^MSTiXW37+SIr_4$~zK~A+o$vWY&zc zq?cBHDYU*SX`>9ouAEO6V z!t914Vc&%7#)6P=a#a`r#-btlIrOaB0WF&v!$ delta 941 zcmX}ry-!n77{~GFmQty;mN$VS)~iqmBoH*<3o#-}#1~*_6bK210v$+98VgR6Tqd2E zZi<7WZVnE2BgQ|#m^jD)3yFg-(amTGgNfhYt>Glk{hZVG+;g7ioW5z_%6NPA(X!F9 zL>n>cm<{5?2oKt|DzgNR;8C2wD9+$>oWtAr2ODviFZG^#cpM+$Fh4A5Nn(eTr9c1GTXacpbl?D$>J) zLWS?57^_PZ27k+F3#+%W6Q=pFu}LWy8$CP802fj>1N6jJu1aLVmTd6!r^C%XEXb z=(gj>Vq3xASi}jMYKEOe|ApRjgKq!Dp@B>Oe7rf8D=rjDt3@|gT*;S~i@}R{l@p95 T)+7Fx, 2016-2017 # Christophe CHAUVET , 2015 # Frédéric Sheedy , 2019 +# Frédéric Sheedy , 2019 # Yves Dubois , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" +"PO-Revision-Date: 2019-11-18 21:00+0000\n" +"Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +57,7 @@ msgstr "Autorisations" #: managers.py:216 #, python-format msgid "Object \"%s\" is not a model and cannot be checked for access." -msgstr "" +msgstr "L'objet \"%s\" n'est pas un modèle et l'accès ne peut pas être vérifié." #: managers.py:236 #, python-format @@ -132,7 +133,7 @@ msgstr "Aucun droit pour cet objet" msgid "" "ACL stands for Access Control List and is a precise method to control user " "access to objects in the system." -msgstr "" +msgstr "ACL signifie Access Control List (liste de contrôle d'accès). Il s'agit d'une méthode précise pour contrôler l'accès des utilisateurs aux objets dans le système." #: views.py:154 #, python-format @@ -200,8 +201,8 @@ msgstr "Révoquer le droit d'accès" #: workflow_actions.py:175 msgid "Grant document access" -msgstr "" +msgstr "Accorder l'accès au document" #: workflow_actions.py:214 msgid "Revoke document access" -msgstr "" +msgstr "Révoquer l'accès au document" diff --git a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po index c1ce40b5e0..daa3f32db1 100644 --- a/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/hu/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po index 5a0ebba0b5..93e9335cc3 100644 --- a/mayan/apps/acls/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po index a0b6c8f353..3ffd2f5e51 100644 --- a/mayan/apps/acls/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-08-28 11:33+0000\n" "Last-Translator: Daniele Bortoluzzi \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po index c3d0ce4c47..00132a23f4 100644 --- a/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-28 11:16+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po index 32ecf9b9af..98ab9a153d 100644 --- a/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po index c227d4db22..bd28c5f3db 100644 --- a/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-09-23 09:33+0000\n" "Last-Translator: Tomasz Szymanowicz \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po index 48c665226c..28c3e12bb1 100644 --- a/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po index 2c63244cdf..85a9ab9b7c 100644 --- a/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-27 00:19+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po index b39f7b1854..d53496584d 100644 --- a/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-18 15:35+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po index 23876d145a..af4ede30bc 100644 --- a/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po index 43f8b0aa2c..6a05f8f75c 100644 --- a/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po index 9c012f958e..7f9f781492 100644 --- a/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po index 338b4e9a44..f5849f492b 100644 --- a/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po b/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po index 3bc253b087..00f99325ec 100644 --- a/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/acls/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po index 6249af612a..e153f82f43 100644 --- a/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "" diff --git a/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/bg/LC_MESSAGES/django.mo index 91efa4035caf6f41e51318d68f98811c0c248963..f93d4c085ee8897ba7eb648dfd28eaf9aa697b53 100644 GIT binary patch delta 1780 zcmZvcX=q$k6vs~%+nChG#KgwhIX~z<3F%n|qQbkdy_>xSTX(scASz<@f zq$#+5h%^fQU_-TnU=RnB*mjylLF)$_A_smN!{Ps7JxbdAU*=0CYk1Q&90tq4cP1&A;CEx-N` z+{C!FT!h%N9qxlIP#umy-JgUd@F`dZpMm_zNq#iW>#zpC4akK>ozz=OOqV7R1Q;J16%($}( z{mYqni%vJpRZ{|3v`%CaR-n@k_}Wb(+u)~Ms{u)V<=XEv-b_8#!f!VRid->4z`vp1 zynIWb&;~flcn?&C-+@|+3tP}%YxrS)qM%mfX~t_HNy>|GBbn zf~Vp7dXb~>JXEQ-ZWH+(wnHsJ!!1D~ZLpp35Ddf9P~Tk9*sa0FbxKo{V>hKM?6V5<=#b3e#SV&tV6vAsrY{-w{ab5o8faY3 z4^G+r7p^zHjiyFC>F|3Z2DZ>tsTJF^(t%nkOO0U9>9?*{MBDE7M0me`y>+PnLsTI(sv=avms-cF?27H8Q!cZYi@OVU z9|$KS1L33@aAQs?;>MCD6&CZ9(NNdlNt(}c)~pz?oXM%%+%x6^@o$; zXml{s)bEZo$D7k5ZG*$dnrl1b=|umKlZ?cU7{~Ox@r-c?{nLG}J8WvZj>V&HLRWj8 z3_-f??0ujXkLHlu7fz&Hm~;{mcPd+5H`}!8m$IJL#+Fvo+7W7LYiPkr4?4+I9uuJwmJI|8$g7>^#GTwyE+MLb$JB?jtea`0mBg-6_V6R7m3+f-(%L)+Eex% k>0e~$9GA$lO8iBl{#VW5=oxaF8m+29$@(^b delta 1357 zcmYk+TS$~a7{>9}!)C3ic}~k*t;{rQJ(Ot&O2~q&?I;vjZD5g#3o3dMxKvQ$O<)9p zbP*xmBovF)Raik_lvZFjWpp9h;UbENsG$DO?x!?3`an|p%qQev+f zrHZ!jv`a+I4;3fXS^4+ z@ny`$Ysh6SgnMxWOEGCtVtEi<)-_weCLZV54}7RJ_7w`chDz-d(ICs#xcGKCfNvsaomq7R9-4Ws6bq9XPp zNJFpPB\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" @@ -18,7 +18,7 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Изглед" @@ -162,7 +162,7 @@ msgid "" "\n" " Besides donations you can also support the project by purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario.\n" " " -msgstr "" +msgstr "\n Освен с дарения може също така да подкрепите проекта като закупите екземпляр от книгата \"Изследване на Mayan EDMS\" от Роберто Росарио.\n " #: templates/appearance/about.html:133 #, python-format 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 f746c170bb..e2119d4b60 100644 --- a/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Izgled" diff --git a/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po index 37c56fd94e..9b5e3c2c94 100644 --- a/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Vzhled" diff --git a/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po index a77fae24c0..8b476c8fe5 100644 --- a/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "" 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 eca9b44650c7ef42c11bf80c02927abb90f114f8..208a0b1fa1fa9af79d4adae6a1bd806636547c47 100644 GIT binary patch delta 2228 zcma)*ZHQD=7{||UtF7z%nwBrMr!}k1-Pv`0ZCkd`9W(PKTqzBd&d!|Kz0I9_hx?+A z81tbJ`x4|3_#vb;>VxzlCn95&!cZs#3xbFcdco`kst<+srGC%7qeK*Rm@~g~&pqck z&-wqKdwlR?8$Nb0Bl_G>XJVPnARMim%tWmE(-l-Gt0eA`$ zOa0b(|0leI=eC(jaklD$gRl=uz!H@8A#8=uz^U*coV7NEp?8OpxnP!f9^ z9>R*#P%K@43;Lg9@EU`QusE07!@+qAE6ZQ?~V6!I#NqJpeVW=ZiMTgSoi{zTB~(b)68FG0uj_3@J=`ZC80}D4!#2K zg1kq!o^U&oadpe`w$+67ob@16v4+cdxHyL zGxMELzJ?`G))^?$jzdYL0-InnU1~y_yqC6ueqS<53$MR1#$ClWbw9l-GLnN@OqUxk zrOQo4CTvc!mK&_1OS_l8IvFXYVIQ4(y3y9$7^PN8(v(qRlf06ouQwE{s$QO`J9Q6T zJ{xHnI!Y%JiM;Z?Qah@LF5kK|srasBlv*d1FHL;yPDZE(@21P=Elq0VdRxw5rm7!p z+0e9dtqq;L4Rzl4Oyu}ps4IS~bH>xg4SgNP<+2|{IvTgS9QaS$T%<=UwfEbWjE2^A z3zbaHFZGst<5GX2xUaW!s2m5maT7Y;m^M1+mn+&YB)dm_zo<~P2l*0y=Ev=+cl-5etFW#$+hB?+0%CZEiV%2+EF%@vT@S{l3~gA z_cr1*!gLNL_p&w7HG%g!F3Z2*%D|}@Wv2U4m8C?J)&z{ zD3C~|{`!pe=IpYbzBPJT-$4JWrG2!vO(u+bwg<)w3FHR@h!pH`JiWn$x$z>q2TRGs zLnxd~WJ-3Zer498=5<@_sP*(n*?M_cJo}F4$+N@NO{gCe>xz*!ac*44USxwXIy({V zw_Z1y=WR(=imTOsch!%NK`}HXjWEQ^sA0BA(NI3DiL4&6B&>^m K{lP`wHvI(-uf+cV delta 1292 zcmX}rPe@cz6vy#1I%-0-;=p6(nR}i-O3szQ37g7ti~=d*7XR?>pz(({!gkK9TFa zZnPSrkQnutwcy26F0@--vmbjHFHPO&8F!8&M>=-pB9(*xWtSpb`!Jk9xgSD+aqr37#K!=W3%prG@h=Z??cwG3arN()C*&%`R9=}ts7a( zu3`=jq81v$Rp_|SM=_87du(QX`^HTQ1EK8X4{DH)v z?FLrjebk0OU=L2Z{S)j;8|&n<3@>3j>)SPMd^m;r;V)FG{<>!HP}Ru6?U;v}*Mj_6 zD;I4jj4@K)fhySqtGvMaT(d8j%4Z+u`B!{Lzi|bd@8!ntHyh`{5bnip@}(5N%1^%d zEoz~0*J<2C{|~AJ4WvP--j6C-J8JwaHeuX-KH`qQL2Y=vfc&dwpBW%aHsem5M;*pY z@~-ElsG3#bK5Ryns28c84WKrB7nkD$T#Lh~jeJBcIF0M^2dZTGh2+1Mn^IOwq!9b) zcc4-{hx#IKQSuCwU_1TYs2UES<_)1r_R#eS>P!t|9X?0Rn@43bjhAWz{x~;e+!(hI zv5r`1%7{)bSx#(@y;wP+FWf@t1xkAvQ9*1aHW13#CW2}v{;lDE)7LLFZCK|o(Mnw_ zv6`R)w%HximulAmx6gS>oMfdqNT>uQgbwFIQ+d>MaFs#MTB3x?N)@5DlEf!&RJ&qA zDN>_6wlQ&+tlu{0r?z>% 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 0a98f723be..3d155c21ed 100644 --- a/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/de_DE/LC_MESSAGES/django.po @@ -6,14 +6,15 @@ # Berny , 2015 # Bjoern Kowarsch , 2018 # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" -"PO-Revision-Date: 2019-10-30 07:03+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" +"PO-Revision-Date: 2019-11-08 10:26+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,13 +22,13 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Erscheinungsbild" #: dependencies.py:10 msgid "Lato font" -msgstr "" +msgstr "Lato-Schriftart" #: dependencies.py:14 msgid "Bootstrap" @@ -158,14 +159,14 @@ msgid "" "\n" " You can also donate directly to the creator and lead developer. %(icon_social_paypal)s\n" " " -msgstr "" +msgstr "\nSie können auch direkt an den Ersteller und leitenden Entwickler spenden. %(icon_social_paypal)s" #: templates/appearance/about.html:127 msgid "" "\n" " Besides donations you can also support the project by purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario.\n" " " -msgstr "" +msgstr "\nNeben Spenden können Sie das Projekt auch unterstützen, indem Sie ein Exemplar des Buches \"Exploring Mayan EDMS\" von Roberto Rosario erwerben ." #: templates/appearance/about.html:133 #, python-format @@ -208,7 +209,7 @@ msgstr "Warnung" msgid "" "Settings updated, restart your installation for changes to take proper " "effect." -msgstr "" +msgstr "Einstellungen wurden aktualisiert, starten Sie die Instanz neu, damit die Änderungen wirksam werden." #: templates/appearance/base.html:60 #: templates/appearance/generic_list_items_subtemplate.html:104 diff --git a/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po index f60c8b59f5..58980f864a 100644 --- a/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Παρουσιαστικό" diff --git a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po index afc28e72d6..c7c658e603 100644 --- a/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "" diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index b9b2b082e7..21928fe365 100644 --- a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Apariencia" diff --git a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po index 69141762fa..ed2510ffdd 100644 --- a/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "ظاهر" diff --git a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po index 781273f6a1..d132adc210 100644 --- a/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Apparence" diff --git a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po index a3d2531dbe..71c6adb658 100644 --- a/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Kinézet" diff --git a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po index 61370afb2e..028ff1210e 100644 --- a/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "" diff --git a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po index a8eb921ed1..033201dcde 100644 --- a/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/it/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -20,7 +20,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Aspetto" diff --git a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po index 26248c874e..abb3aabc7a 100644 --- a/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Izskats" 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 4bbd722750..ed8d30f39f 100644 --- a/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -20,7 +20,7 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Uiterlijk" diff --git a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po index 6d522975f4..ce433d6cda 100644 --- a/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Wygląd" diff --git a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po index c20c18bdc7..031055e1cd 100644 --- a/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "" 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 5ab524b4ec..d6bb8361cc 100644 --- a/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -20,7 +20,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Aparência" diff --git a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po index 2d42f33b5c..f729f25440 100644 --- a/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Aspect" diff --git a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po index 7d27ae251d..c828f2d116 100644 --- a/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/ru/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Внешний вид" 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 fe80c773c3..77f9d38b25 100644 --- a/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Videz" diff --git a/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po index 1feacfb695..d0ef0e3a5b 100644 --- a/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "Görünüm" 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 375a06cdd0..b2cfe0f3b7 100644 --- a/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "" diff --git a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po index 6281890b5a..6d09fca02d 100644 --- a/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:33-0400\n" "PO-Revision-Date: 2019-10-30 07:03+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:12 settings.py:9 +#: apps.py:10 settings.py:9 msgid "Appearance" msgstr "外观" diff --git a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po index 4c5a1f66a8..430fac7169 100644 --- a/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po index b6f92f5c28..d0650eae6d 100644 --- a/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-10-16 09:44+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po index d3ca347c95..7f012e4d59 100644 --- a/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po index 4bfd5eead7..fef0e9e47e 100644 --- a/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-10-15 16:23+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po index 276f51b15c..32d2e36b16 100644 --- a/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.mo index 667d0b6fff89060fc438f7a7144ee27fd51fde32..e3bfc886926b8d64e996b8ddaed0fc22ad5c3a4f 100644 GIT binary patch delta 1018 zcmZ9~O=uHA6u|LmtkKr0O{+F-Z5aZhrEO@{Y7HW-6cx2vtRJP|VUrz`HM<+w-PmFe z!GoZJpp+tbQt+liB{vlj1i_o$L{L2IMerbk2mdb#9vs;GX5Q?+c{7uhdyRwm8TVn!8l_I-1j_s!T#HXp=Bv0Bzcu2j zS*cc~Dk@GV&O`zWn8fvX4fo(J+>5VJ3i*lqF-Gnd8&HBpF8Dd<)8|?ZCCK!)VMLQnF6waX(vV<92#X0CyU@k!xPl$n%XY;yO5(|e$5Hal zqK7xJ8-L*dCN?UyL#~-CtToxS9I-U1nE6`8oy&<>=K(ovX;h_>wO;*4N|fd0)_d!r z+A?z6(%P3V#=5$<(39e%b@8z0+JCOEdONn%RGGFG9k1-^$nlJ}bU8GE&bdym==gaZ z6^u@uF`n_Vggukexq`_Rv!zA7;JB_1jAuE%c1!uZv9;r;^?A!J8|{Ske9VO=SMu#J zt!At+Tqp(hzYe)9zuMoNjU5>s9Ud9iqa&H!HnhpNxw&tsJ-$7oMBWw}Pr8z&mlHX*~;hmBv3u9|=dDXj7( zZCjx}QSzgp7&&7~KrJO{oBuP~uoq zsuAlzo#pfJ?Z7hv>l)4v}9uc*>;O5p=U~$=l6% zi++4WImjnQ(a$N9xQNoJ8M zgE&K<4$#0B{I+ybwruFL>_^!rgc)2$sq`5G_>##Nk~!DQu&V+&a@p{Vc))`4eMi} y;n7|_5)F?Bb;1=(nYqw>HnnMPq;f_!+M6)atJ$1^W-7a86eer#v_jr>rTqh{wMc*f 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 956c399187..78309cc819 100644 --- a/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/de_DE/LC_MESSAGES/django.po @@ -4,6 +4,7 @@ # # Translators: # Berny , 2015 +# Marvin Haschker , 2019 # Mathias Behrle , 2019 # Robin Schubert , 2019 # Stefan Rempe, 2018 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" -"PO-Revision-Date: 2019-06-15 07:48+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-08 10:28+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +71,7 @@ msgstr "Authentifizierungs-Mechanismus für die Benutzer. Optionen: Benutzername msgid "" "Maximum time a user clicking the \"Remember me\" checkbox will remain logged" " in. Value is time in seconds." -msgstr "" +msgstr "Die maximale Zeit, die ein Benutzer, der auf das Kontrollkästchen \"Angemeldet bleiben\" klickt, angemeldet bleibt. Der Wert wird in Sekunden angegeben." #: templates/authentication/login.html:11 msgid "Login" diff --git a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po index baced883fa..639cf145e7 100644 --- a/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po index c35590a4b7..9bda1b3d93 100644 --- a/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po index 74263d369f..028b6c2ed6 100644 --- a/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po index 330a8760a0..ce516d47ec 100644 --- a/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po index 0ca2080d9f..6db46cd2dc 100644 --- a/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-07-02 15:51+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po index 0b22b9e577..bd120ac22b 100644 --- a/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po index b1bc987019..52a58c98e2 100644 --- a/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po index 415913a355..c6b18ab59e 100644 --- a/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po index a8d0691fd3..ceb276f2c3 100644 --- a/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-27 12:07+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po index bbb1421744..5c780dbc1d 100644 --- a/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po index 342d8a750b..5990516156 100644 --- a/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-09-23 09:50+0000\n" "Last-Translator: Tomasz Szymanowicz \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po index 42f282ec83..ccd172119d 100644 --- a/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po index 2dc0d186d6..8e69be88a7 100644 --- a/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/pt_BR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po index b52f9345cd..2a02401994 100644 --- a/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-18 15:36+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po index ba816691c6..fb50db95d5 100644 --- a/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po index cc9c583d7b..7eb4d1dc48 100644 --- a/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po index efe2c33976..d9c63ef4c5 100644 --- a/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po index 148cfcba3c..7749aa5ae4 100644 --- a/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po b/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po index 3217491776..e1e53757ff 100644 --- a/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/authentication/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:57-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-06-15 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po index 314f47162d..79517888c2 100644 --- a/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ar/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mohammed ALDOUB , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po index 30de23652a..a125a66eaa 100644 --- a/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bg/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Автоматичен администратор" diff --git a/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po index 4bc1d1ef98..9ea67f2575 100644 --- a/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/bs_BA/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Atdhe Tabaku , 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po index 216aaae759..7a5c0157ed 100644 --- a/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Automatický správce" diff --git a/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po index eb6e3baa17..f1753b0462 100644 --- a/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/da/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Language-Team: Danish (https://www.transifex.com/rosarior/teams/13584/da/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po index e3079ac8c6..07bc8dab27 100644 --- a/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po index 8cbf2b4371..730df3fea8 100644 --- a/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Automatischer Administrator" diff --git a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po index 05a63e7dbb..19c1019991 100644 --- a/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po index d06bfdc1c0..8d9675ca64 100644 --- a/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po index eb601af49f..36b5caf711 100644 --- a/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/es/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Administrador automático" diff --git a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po index cd4e58619e..61822e6ead 100644 --- a/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po index 066e449560..61572e56f9 100644 --- a/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/fr/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" @@ -24,7 +24,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Auto administrateur" diff --git a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po index f443c7a493..f71ec810a8 100644 --- a/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/hu/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: molnars , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po index 7f1cf3c868..4c9ff6be4e 100644 --- a/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/id/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Dzikri Hakim , 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po index c88459188b..5ffe352627 100644 --- a/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Daniele Bortoluzzi , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" @@ -24,7 +24,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Auto amministratore" diff --git a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po index 5332a60921..d35d131303 100644 --- a/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Automātiskais administrators" diff --git a/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po index 80954d65e4..38ef871208 100644 --- a/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/nl_NL/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Martin Horseling , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po index e1873a5e1b..6cfef096b1 100644 --- a/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pl/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Tomasz Szymanowicz , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Automatyczny administrator" diff --git a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po index 70c1ad3d1f..be7dda07fa 100644 --- a/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Manuela Silva , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po index 5d8a77732f..d17f50ee9b 100644 --- a/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/pt_BR/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" @@ -25,7 +25,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Auto administrador" diff --git a/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po index 199f49978d..69747e1e85 100644 --- a/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ro_RO/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "Administrator automat" diff --git a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po index 29e97059bd..fe7091c870 100644 --- a/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/ru/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: mizhgan , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po index 9477a3f548..e757bfabe4 100644 --- a/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po index d1de16c6d1..c86e27ac37 100644 --- a/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/tr_TR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: serhatcan77 , 2019\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po index 36ddba6aab..83cca9ab6c 100644 --- a/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/vi_VN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Trung Phan Minh , 2019\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po index f49a97ddf4..7a69fe5e42 100644 --- a/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po b/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po index 2a706a00ea..17ef966218 100644 --- a/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po +++ b/mayan/apps/autoadmin/locale/zh_CN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-04-14 04:06+0000\n" "Last-Translator: Ford Guo , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/rosarior/teams/13584/zh_CN/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:9 +#: apps.py:15 settings.py:9 msgid "Auto administrator" msgstr "" diff --git a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po index fc3804a8b2..bddd3c5e33 100644 --- a/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ar/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po index e5f836f82b..399e0f8ec5 100644 --- a/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bg/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" @@ -24,7 +24,7 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po index 8da4675531..189ed63e43 100644 --- a/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/bs_BA/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po index a4c40b971e..541d27eb6b 100644 --- a/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/cs/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po index 056e5a0086..7b6c5e0a83 100644 --- a/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po index 2550feefc4..dccf867b08 100644 --- a/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" @@ -24,7 +24,7 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po index 2112dd9573..22e1907d45 100644 --- a/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Hmayag Antonian , 2018\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po index 5b8f810f18..09ffb28fd0 100644 --- a/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,7 +18,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po index acbb0b3105..e781a33cb6 100644 --- a/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/es/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: jmcainzos , 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po index f6362f0517..af38d2bc1e 100644 --- a/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Mehdi Amani , 2017\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po index ffb9d7838f..500d91cb4d 100644 --- a/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/fr/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" @@ -25,7 +25,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po index 28ec107309..824b9089eb 100644 --- a/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: molnars , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po index 6737ff824b..757c9eae8e 100644 --- a/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/id/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po index afda1619c9..3027e308d9 100644 --- a/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/it/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Andrea Evangelisti , 2018\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" @@ -25,7 +25,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po index c6f740d573..dc7f748eb2 100644 --- a/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po index 8a3cf61aa2..8e1981483d 100644 --- a/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/nl_NL/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Evelijn Saaltink , 2017\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" @@ -25,7 +25,7 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po index 299f28c412..b4d576faed 100644 --- a/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pl/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Tomasz Szymanowicz , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po index 5493af60fc..cb505372df 100644 --- a/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Manuela Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" @@ -23,7 +23,7 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po index b32f61e9bf..55e011e16f 100644 --- a/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: José Samuel Facundo da Silva , 2018\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" @@ -24,7 +24,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po index af09ce2053..42ef64df18 100644 --- a/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ro_RO/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" @@ -24,7 +24,7 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po index 4554165d44..6c283658e4 100644 --- a/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/ru/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Daler Abdulloev , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" @@ -25,7 +25,7 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po index 95515bf77f..0085035c79 100644 --- a/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: kontrabant , 2017\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po index b1a6886ab0..93d8235d0b 100644 --- a/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/tr_TR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: serhatcan77 , 2017\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po index 21a71822ff..3651ad1e59 100644 --- a/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/vi_VN/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: Trung Phan Minh , 2017\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" @@ -22,7 +22,7 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po b/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po index 26399ed7b4..fe46ca0028 100644 --- a/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/cabinets/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2017-04-21 16:25+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:50 apps.py:111 apps.py:119 apps.py:122 events.py:7 forms.py:16 +#: apps.py:49 apps.py:110 apps.py:118 apps.py:121 events.py:7 forms.py:16 #: links.py:24 menus.py:16 models.py:47 permissions.py:7 views.py:163 #: workflow_actions.py:22 msgid "Cabinets" diff --git a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po index d17599f866..90745d829c 100644 --- a/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po index 0d5b973fab..6b8c9d74ec 100644 --- a/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-10-16 11:41+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po index 792ffabda0..7db37a9cdf 100644 --- a/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po index 62514b4d29..c69bc114ca 100644 --- a/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-10-21 09:57+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po index 1c169c6e4c..5b50293e29 100644 --- a/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.mo index 93d470e471abc5633c21db130002201e4954ed97..1ad949cf907e6ca0be9eb5254065ddc1fcdff758 100644 GIT binary patch delta 1229 zcmX}sPe_zO7{~ER_ubYtTT{!dtf_P@({)#)Tn(u%bx0Bv@gRZ3(k`)Ut<|Ms4-o_r z5sO_SD54G(bl3{&(#4=ovG@KF)g@@bphJJK@9*8A2gc9)XWp4-o|*NQ{bUR8n*#HO z7@%#SJzi$a0X$U8A0izvCWsjv#uK;}A7U%M#8vnXo3MiGu*NfH1-7I5b>kM?k83c6 z^e>om?!i@T=EXg1!RM$C-e3|JaV7SUjouGqJ&xgOoW>)VM~zcPP4orp@DD1%;PUEt zZ5U#HGtNbn7t`2<7qA^4;AVV{8t@xx;w99ITSCe_%luwQST@Y(}kQH|oPl)Cw}F0Sc)8Mduyd!F|cye?axGU>LoI>U|?B z@hIy1^Uf;`)StfQCJ);1J`UjmQUtSvofu-{WejylCr~RqiAwC6^Db)QXQ*)(Q2onj z@jEtRge;V(jZlAe*ySFKJ2R+KsXW?(>!?$G1N-nPD#5R)t*hWHE+RYQ2gk&$ch^D_ zYX22FM_ND!^Z$=Nt`hD}+3Qd$`f1u8g$|PTTt6uV1@c45DU^&t$!TG#jv_|0G*x*! zO`)H$Kfey$0Bsvhp%wSibm%x^{+@wsmWTXYyw{Rex~ Y?m;Y@8Yu?DKfTdZ?pUhyJKX901A7#2hX4Qo delta 1173 zcmXxjOK1~89LMpoO?;%*+8CepvDMnNwrR3KMN`{@UMdxQML`r{eLw|qF&hxPEEE+l z;-Ls4C?X!Dw4fBcRS-o4Q4moCp@MkSi)cX*^!u9~2PU7H-JO~L{AcpTyX(a>+0+d~ zDN|QdC*~Nl3wJc~Lm5gL(~rAx1zyJGcn4eYF=p{4uEI~a5NA=}HKvVOk8QXN2T|W2 zO8T)Gp|OMqG3Ia#HQ)hm$5*%r({q#eIc%cejZ1M09>-zSJmaW^p5Ov}k6Q3EYQ7&h zAA9E+(`jNRppoanF?3N&-%%6(#kH7aHU;cs3szBqokGob5jE~6 zYTUScKaCBnZ{E?+1Rt;ueNX$2BGyp>-p2-<#1J1MCt{BeZ16?YoZ6wX zssQ?^D*8uo{|r~hmR_CzCaR)WDJ0lkX`wEvQm*szssD>ElrEP?Em8H?pl1e*~xJ6vCxXm@QgY0p?)-KD88buI0e zwiU`-y^>!k`8_2{W={~+3)Nb1E;<|3!&=2V5S}<)tA`i`wKL(^&dlu8U{go>A1z8_ AjQ{`u 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 29be793b8e..d693a73886 100644 --- a/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/de_DE/LC_MESSAGES/django.po @@ -6,14 +6,15 @@ # Berny , 2015-2016 # Bjoern Kowarsch , 2018 # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2018-2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-08-26 01:01+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-08 10:29+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -229,4 +230,4 @@ msgstr "Ausgebuchte Dokumente" #: widgets.py:27 msgid "Amount" -msgstr "" +msgstr "Menge" diff --git a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po index 2817cd43ad..a5b03721f9 100644 --- a/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po index 2368e40bd5..87e27cfc03 100644 --- a/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po index b2aee3e58b..1e071aad36 100644 --- a/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-09-24 21:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po index 48916777df..fe000060c1 100644 --- a/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/checkouts/locale/fr/LC_MESSAGES/django.mo index e824a92fc0add97d91cb085f56367a66a4476d9d..7c5a06f4649f92074bae0fb1eb89c405cd43b829 100644 GIT binary patch delta 1230 zcmXxjOGs2v9LMpKjW-=%lUZh^-JHoOb0%k6)M$jZFt9AcC>Ii#jyljZF(nZNvnZoz zA!Kcff(m=k!WJPxkh*9UF2Y6hSSUn6Qkx)*`u@&Le>n5G_nv#tVvl!!=G4+4Xj4}%~*t;xEg!#IHpnK%%Ub*z(QO?Eznt! z9j^)tnBR19QAbA)2JsSB<73=}Z%_k%Lrwe_wd0C{?0|Jx!+i|3;BG9#3#f%%M~!zE z_1!DfLT1&^{AQkuJp7Fs;17n;W!YrY970v&2p+|5JV%+HA)7Km($I!s+={~(z&of? zOruKs3ALf6-18dhlhMjzTxh~$xE`;dYIYCx;Ure!9BRNH7{cNbV>+-2wbQGp_iiI| zm=~xLOk)b)qrTry9X0PjDf#D_xy%D~+`txmiX_2&$9nvQL98XOT2MRceh{_LQB-Lj zq7LUv)I#2&i;Jid`+V8d??f%E-ADd4P%jU(^J}OH?xRxm8kPEaR7$^~{wXCCQafx# z^>^S19!4r-gJWXH%-z}y(QQME-AD_l{{Le;7m?fz8MZ6dZItHM1);R@N3grry|SlJ z_7plt3T00l(ZN-OX)aA!(HT)FQ+9qGI_+u;O`$^8bJl usqu88&+QtD$NSH_yU)mhmce9i;$*llmE1Gtco&?5spN@teB!J3k@F7{uycg~ delta 1173 zcmXxjPe@cz6vy$C&Nw#KWaISLvZ*n(^x1n8MVUk;Ns&>6wMmj03@V}rGZRsphmg>w zO&Yj}pdcufHj2=qRxSENtLP61xpF0KB8)cG_xENxaOZR1oq6}qId{Hf#xlXTWaPdP zS=uJr)H1Uk?5^g6I2JKGfX8t?j^H|ch^uiHllTTV;vBBPCDiY#qh{N%5!d2D)bG!h zp98x@r-6Y0Q#gux;VJIN_n5$FP5Jv2*73Xp*Wez!fG1G%OrREeh0F01YQcHbd_S-j zJ7Q)n7BB&wRt5%eGv3Cn_!u?eYt+WRqE7rBHQ`@u!X&e4!yc}}e$>W>Q1jhFy*G|} zZ=&-3ORQpj`$$I!het&`76;j%qcCdhrHsz%kT>&(XoRcoKi1PIz=>`FH1$IqfZgS>$dDaIjh{-8|3h@HFuvg$ayGz9Ta>bI\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" @@ -230,4 +230,4 @@ msgstr "Documents verrouillés" #: widgets.py:27 msgid "Amount" -msgstr "" +msgstr "Nombre" diff --git a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po index 49e3ff05f2..3010fd8a3f 100644 --- a/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po index 8e32d3927d..911b8f9a93 100644 --- a/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po index 1f3c8e46ea..7928153d4d 100644 --- a/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po index cb54e981d0..0d827eaacf 100644 --- a/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po index 554f35a5b8..187b469f2f 100644 --- a/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po index 7ea422bb3d..a22098ef56 100644 --- a/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-09-23 09:57+0000\n" "Last-Translator: Tomasz Szymanowicz \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po index 4f49568859..00b911ddb6 100644 --- a/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po index 08705d6007..e4ecd51ac4 100644 --- a/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-10-16 16:50+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po index 49d1d3ed2f..8926c02418 100644 --- a/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-09-03 08:31+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po index 64efcc1aa2..54fa7fb052 100644 --- a/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po index 998c04107f..acaef344b6 100644 --- a/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po index 90b8cb803b..76933e70a3 100644 --- a/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po index eac98570fa..353953d65b 100644 --- a/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po b/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po index 1423fc50c3..c65994b07b 100644 --- a/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/checkouts/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: 2019-08-26 01:01+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ar/LC_MESSAGES/django.mo index d23c806bc6a13e0737c734bc3a83830e8dc2d1c4..2e2e761340592fe9f2b2cb506e5c745a8be905fe 100644 GIT binary patch delta 24 fcmX@hb(U+xIVNsHLtR5l1p^~16NAk+nM#-dV@?NG delta 24 fcmX@hb(U+xIVNrcGhHJ~1p_lHBg4%%nM#-dW3mTd diff --git a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po index f74d2bd732..fa98d32670 100644 --- a/mayan/apps/common/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ar/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "" @@ -123,47 +123,51 @@ msgstr "" msgid "About this" msgstr "" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "License" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "" diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/common/locale/bg/LC_MESSAGES/django.mo index e16c139354d0b246327f245108286d53594f9c4e..c1dbc1e0214ec5186ecad8471df31dd50c26a260 100644 GIT binary patch delta 1105 zcmXZbdrZzz9LMobPmNZ{OuEr+xvV9XCeKr7LUU^s305uoYA99nH zS*2)6oi=GX-oqrEL{bV%ls01yuEuLvY>}Q}0w%7Pu3&Yt^qBSLrbth5Vv`g;OB&cB zU1#3&9a5x+RKHUiBHx=KyXKL|+a>v78P3NRmzQt}aUa&;Lo_yO+bsoSDYCv!;~wn7 zAe_Q|XvvaNF&7tLFNWb=48)gNcJstvT>}=gim}itevHCx_L2EH>oF$O=OQ6S`)X%u=ATX7+7#H*N%Uibq`(7n+d zUxtjgtKQXd5`!4f<%%81`_T}3aPmK{*wQ2|r9TxjupA@tK91lAj6x@$*4WT1G&b-K zv+)aF#_h+Yc|N|K4K0k=d=%3dRLu z1g42NhvK&+KmoOz?WFzF8#t}%+HYeu{%?G&wSB4rH{C0w&{%NBmH&Z@oW!$` z$?^ZH_^OCQaUTBIj|biw^H{sfv!9SYWJhf@>l!v`LSc z;HOoq*-Kpay$lr6APc_ycttG#J%P{yXKa9c@%)r&yfJ`B04~=9R z9*yReq~SB-0yK8&eNNhj{m64`664V8yt#nYWfpqTpNoN5j00GUJ{WL8s>CofHr9cR zcdF0TaT`NO47uXhNd4#oS~z)7lNpCLa~k?fF$X&_20!BjT6ogUIEluF7SY&%dkeRT z%kdUgU?S^liH5P`go|cz>_yhpDKv_47K3pCYu%(3tvngFwV8SUcC&UOaU?WI+=*s>aX K#^?j9wfG;ZV7{vW diff --git a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po index d5a47b1c88..44e0ee0908 100644 --- a/mayan/apps/common/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bg/LC_MESSAGES/django.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-10-16 13:39+0000\n" -"Last-Translator: Lyudmil Antonov \n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" +"Last-Translator: Roberto Rosario\n" "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" @@ -19,7 +19,7 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Обобщение" @@ -124,47 +124,51 @@ msgstr "%(object)s актуализиран успешно." msgid "About this" msgstr "Относно това" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Локален профил" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Редактиране на локален профил" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Документация" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Грешки" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Изчисти всичко" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Форум" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Лиценз" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Настройка" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Изходен код" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Поддръжка" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Инструменти" 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 196fc7a43be2e750829e9937e9b97c34a4132193..3b19ebbb2fbae7b559b7b3cf394b30d8f779c26d 100644 GIT binary patch delta 24 fcmeyU@lj)g3JpW- delta 24 fcmeyU@lj)g3JO^29w!a}V1Nd9 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 215da43067..75dd9c01d7 100644 --- a/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/bs_BA/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Zajednicki" @@ -124,47 +124,51 @@ msgstr "%(object)s ažuriran uspešno." msgid "About this" msgstr "O ovome" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Lokalni profil" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Uredi lokalni profil" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Dokumentacija" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Greške" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Izbriši sve" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Forum" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licence" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Setup" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Izvorni kod" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Podrška" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Alati" diff --git a/mayan/apps/common/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/common/locale/cs/LC_MESSAGES/django.mo index 64fc975c80e77df692fb3ed7d5161c4665311d51..767dd09e348f33689676088e71f27f6c03c3def9 100644 GIT binary patch delta 900 zcmXZaOGs346vy#jOwKe;&J2tsjZTi0rsd>ZkuVnx(I!xllpcr}1^G%D)Z7SqK?!t~ zkQqcfp@J4YMhS_ag4rtQqKydIs#UunMe=)?yZZdkx&QlrobzAmo$Y-;>~lXJkv^T2 zswEATOJ{Ha>v07y;7@e0q(Z903|8~sAeQ5kgw#R)?J0>+`&fhrcocn=QUH(Pag1UM zCMxBsl))VmQ5?Z0oc1Q>u$K5MUc=v5jHx7xVKc_?DhBZ;Uc$R*>n)*e_}X&?eZ=3; z=I4{H6z0eqB$i3+R7sOKb6V=b1H6UZlw}A%ASqRxEo_`YKXDg^Y#!S8KD2|*;}u*) zil{BLd4JF^NUIaflZfB#xo=I)S#JgK=y{t3)3LaKdv6 z$B7?%{=?hEBlS`m^XRBc`pdvhTFW)tZ~*P*t7seNu>m){_&@US737+nQ8jo1Z{Q0Y s$gTO?V#Q9%xtvTlwlt-mM&f0W&g}gMV~?`Q&g}TTvB7NadVIa~5ED9Rg8%>k delta 919 zcmXZaOGwmF6vy#jnd2iHheniUZ2aq_y?p!!Gs?oG+NA_41rb9!8dFXN34vqv7jn@u zi5^so%0;z^0->0M7MbZPf(mAvP>VJpWUCf^5A$Dr?m73|_r0FHlYEsa@)p-gZ?;H{ zlCDOjIL=}-F5zzcg9&tMrJdM^jf}g3QGBvhI!^vwOd?dUPAbL_Zoq0R!6;T>96Qmi zlcy>gqa;E&g?n(uFZ_r*h`-X7Zv=zn>#-MIw7P3(H!zI>ocHtZ z(Vk!#c_n?u0D8Y^Y^U)T?_!Lg6<=c|{=gPoLmL?9Ju-M0?N7YKQv8lK;V-oDt9S?< zJ`CSWXV9)Zi}obbh1k=KpLl>dI-cP?4(%%JIK~ewBW^-_YZq<8qZq*?+D%Mg3EuF% ziQ~lgd@Guzlf+Z#VjdIfXL62bJ3W9sIEi-hWweF!*oG^9yqV+i@l}iLQTwqPhw(m6 z&gB9<;c~Yn(cvW8JKOi&s*Kb$^qxzl2Q$v%qst4AhZbIpItRzc28YKkc4tP?sgc%H Lwrj2<@~P@Sw`p(X diff --git a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po index cefcf29a94..16d8bab414 100644 --- a/mayan/apps/common/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/cs/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-10-15 13:38+0000\n" -"Last-Translator: Michal Švábík \n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,7 +18,7 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Společný" @@ -123,47 +123,51 @@ msgstr "%(object)s byl úspěšně aktualizován." msgid "About this" msgstr "O tom" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Profil národního prostředí" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Upravit místní nastavení" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Dokumentace" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Chyby" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Vymazat vše" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Forum" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licence" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Instalace" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Zdrojový kód" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Podpora" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Nástroje" diff --git a/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/common/locale/da_DK/LC_MESSAGES/django.mo index d7e0823839871142c2f20d714a96d266c8dbbf8f..e23cc667212cfaf1af41ac4b925bcdc3e309b5a6 100644 GIT binary patch delta 24 fcmZ3*=F delta 24 fcmZ3v=oi4wIQa7C0aw(-#0T0ts(xQ zi6{B)?|kQ+IrBYd_uXGqymh&vd}-vM^r-o_7O+z=51$0uxrv(Wdz z8u)0!Q_23X;i?Le58+t2Y?w#@cibWJSI(awE^-b2V1&rffl`(;RU(Zn{A9GqoB<-Y zj1l=Adi_}DaMU=FN;n?g3a7(?ur|@>K{eza$RpAQN5Nh=7(M}O;c<97{2`nSe+uh( zzg%IW2Pcdd!8n-$^+oj%qh$%y{dI5}+yeEY0OFiHl;}qx!IR@qpMMGpo<9!7*C1Q+OQ;S=Dvt1INc1IuYS0%`fvC)E9MbK@eM4A-I0hPoa=ePJ(r2|fx>!TNde`empNy$6TD_o1fZ z8l=vps*KyZF%zn%3!q-S6lUNms5yNRUWJwOMMjWQSwK2KRYNot2Xdzzhb{2Oa1$J{ zFb?@%sD`vd9+f0wr>Ioz>*^)( z_u(mecna&^g&O)dA;FVMF2{CR0;yN&ggrcW3@)l5|CPl1+blHQOXb54R*3wGgEdVe zX{vqHDhdU?o1epcAI`vw=qt#BdNdw)HG-3&7T26aZ-67vS3+!-ZE!4n9I9i_!NJ=9 zFDD1iz&qHu3Txn?^|TvI!P}t&?}VLDU-&T8i=IgKPrz#QlZpO1tU|v8wb zgDr`khnmwva56lZtp5yRgZu{OU}}F{6Hmj5=x3mwzXl zj*Kt2$Hg=SYTMO84OJ7o8$Jm21&5#-bOfqFM`17g50^cQC=%oX3 z&AbDbqEG6K%1m}cAHDn{6SZ_K3DXxD*Z^lkwR9g`fu7FC=T1QWaLG$h4SWrbgMWnQ zIWHa`AzkNoRqGIKJB{7~M2*+T>6p#?qaF=oJ^CHO@8=V}HsP&sLo(N|-rQvFz*PwK zD>xkeQTiOzHmyO_Fs-9cA!J%cA~TU{WH}P8>SvSAiiU=Wh(=>QzZwa;NchM_9k2&d zJHkiv`dG{C5o8fUy5%86`(6i8zdq>JC?%S%ETRRvTCLK8=^tzQCvYe-2Wdt|BO4JN znz#Fq7Ni^LAKRHMOOz>)Qiz6rh7HmbY4Oi4Fcs1FM?UEEJi-7N;0%obnHYZk?8+~hx^~ZgN4J$1cW+@J`$gXdl7A`@rVv; zQ7p1g6~-W>5!sInM09*6M)ZLimdpphb%++aj)_Q5G$X#1Ola$<{j{<>k?Dwz04X73 zkO%tCRK7Z>Dq{n;-E%_MYd20VXPhUunK5P83qmxTF>SWT_cA8z@B?c+znEva$9!zR z$82(X9M3eb+0>dc%}%<*1YuFH3p)H#PH!-d$@pQ&ZCiV|$TI~e>@cCzZH?+Xs3oe@Hf>^>yl$>8dF{l|;kV6t@$R|Pni4%1 zSCcJvTNk(Vnj3x7-%qYBhTQP++d5p&DFxRLlsRF#=@9Fs%zB%#X18_Iq%P~{=!n42 z9fzaG2fRQlp;2w(BnoI+N~;$}#BFkXkdV&35_4-coy5 zWBiOQ7o*4WW~j0ic!qt3{jdx9o?Y|mKcOD{ zD~`h0k!B+>3nOtRW?~r*z$T2xAZFofsOv7_P!0Pl4)maI9D+B!3+`ePbw5whjZ%?8 zShiO$LXu@=sPC7fG14mZWAy`O2WVP0+ANp)HEhD@v1T>2A0pjTl=h!F=)%Bwvsrit z+i_YPUu5V$x__Jcq(rmlxj`DeYNLKO*=!ANPvK^?e~aqCnh8uJhjq*o*|r_15g$Sg z;0P)str%3#&vU?^UEo8hyoLSIPoC#s6fVL_9FE73!B`0OfJ>+cTt!V`H!3r~pziY< zR^T1){QPvY9O{eH$-lm^p9Woc2-Tq%QB!f$tG|sT!%pD=yo{+>mElg!F4UYKL=7N> zO7TS`+m^~nb*Kc@(YdH(Ey^VS(>d5i1Jh-vy$d>UAoWfx!>e9LcN{5 zacD8QX7jKV%kc;*gI7@*?ZJofCQiiw6=h&0DnqrXjs=@I7{b9}+`)s6;xp8vC%gOh zFb1gK%QH*B_fPeOQJWjJR};*@x7( z%w@q*&tW0GgU!s_O4?HvFc6+^`#Jan&*5WuVj(Xj3}a&Z!py$Ge7<<4g8l0!9yR-# z^JA;bc49BS!uf`3wkt+1H5)^F`7$?S>rt6$#=*E3lkf!$s^K&Tn!`4X$6i!>^m6t* z25=)bVgg=AZ7cr@_xd>01Bx&LOFb8$QeA=c*;aV%CvgV#vn$BIw!vRC$a|<8MUo#) z#b8u>B5Ll^u@zTgBHl%9)3{aciz*FAQ{RkR@i3<1->8ly^HR|L(=i2eYRJD*zJ!K2 zJdWyd2WnSbK?ZBx=*;os?)ft8N2)6^441EVJ6coguBEj&g70m`v3L;2=)Bng$h3j~?(8 z!K_#_p%Nqt2n|j}>p-QF*y5h%9|J0}YNfE4Z5zQNcJ{gEQH71*jFdz;Wdff{rM9FB ziE)ZXl}VJiRp+zJJ7%_=m)5_h=w2MP>4X;2{i4;bLiU|sxD==6erQ4RuYqNFZKtQK`feT96Th7B)XCP6^I|nZ%QXpU_%R(T~k4qMTSwY$C=G z+6^;^C}K8|K(KVIk%%OA5le{wmL@98h-t(kVmGm!plBI*dlqY*n)^`%lL>7ftypc- z`NTvbhFDDS!u(&+?}LS6qb`JpE)Q=>481yOpf7Yj?>&E1c3xI)K_EM?FgGW(r(j=X TD6XVqVklulkuOxYsn7op`|~p4 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 71593c61a2..08725e28d0 100644 --- a/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/de_DE/LC_MESSAGES/django.po @@ -7,6 +7,7 @@ # Bjoern Kowarsch , 2018 # Felix , 2018 # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2018-2019 # Mathias Behrle , 2014 # Robin Schubert , 2019 @@ -16,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -26,7 +27,7 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Allgemein" @@ -131,47 +132,51 @@ msgstr "%(object)s erfolgreich aktualisiert." msgid "About this" msgstr "Über Mayan" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Lokalisierungsprofil" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Lokalisierungsprofil bearbeiten" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Dokumentation" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Fehler" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Alles löschen" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Forum" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Lizenz" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Einrichtung" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Quelltext" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Hilfe" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Werkzeuge" @@ -334,7 +339,7 @@ msgid "" "the list normally installed by Mayan EDMS. Each string should be a dotted " "Python path to: an application configuration class (preferred), or a package" " containing an application." -msgstr "" +msgstr "Eine Liste mit Strings aller Applikationen, welche für diese Django-Installation aktiviert sind. Jede Zeichenfolge muss ein punktuierter Pythonpfad zu einer Anwendungskonfigurationsklasse (bevorzugt) oder einem Anwendungspaket sein." #: settings.py:43 msgid "" @@ -342,7 +347,7 @@ msgid "" "those normally installed by Mayan EDMS. Each string should be a dotted " "Python path to: an application configuration class (preferred), or a package" " containing an application." -msgstr "" +msgstr "Eine Liste von Strings, die alle Anwendungen angeben, die über die normalerweise von Mayan EDMS installierten Anwendungen hinaus installiert wurden. Jede Zeichenfolge sollte ein punktuierter Python-Pfad sein zu: einer Anwendungskonfigurationsklasse (bevorzugt) oder einem Paket, das eine Anwendung enthält." #: settings.py:52 msgid "" @@ -352,7 +357,7 @@ msgstr "Name des Formulars, das mit dem Markenanker im Hauptmenü verknüpft ist #: settings.py:61 msgid "The number objects that will be displayed per page." -msgstr "" +msgstr "Die Anzahl der Objekte, die pro Seite angezeigt werden." #: settings.py:68 msgid "Enable error logging outside of the system error logging capabilities." @@ -570,7 +575,7 @@ msgid "" "\"/static/\" or \"http://static.example.com/\" If not None, this will be " "used as the base path for asset definitions (the Media class) and the " "staticfiles app. It must end in a slash if set to a non-empty value." -msgstr "" +msgstr "URL für statische Dateien in STATIC_ROOT. Beispiel: \"/static/\" oder \"http://static.example.com/\". Wenn nicht None, dient diese URL als Basispfad für Medien (die Medienklasse) und die staticfiles App. Sie muss mit einem Schrägstrich enden, falls nicht leer." #: settings.py:368 msgid "" diff --git a/mayan/apps/common/locale/el/LC_MESSAGES/django.mo b/mayan/apps/common/locale/el/LC_MESSAGES/django.mo index 4f87852ea38bb27cae3e887b21dad759f7baad87..cbefc41324864c118ea6206a455b04fb67f9241d 100644 GIT binary patch delta 24 fcmeya`CW6vN=|M=LtR5l1p^~16NAlLIGwoxZ50QF delta 24 fcmeya`CW6vN=|MAGhHJ~1p_lHBg4&GIGwoxZFvWc diff --git a/mayan/apps/common/locale/el/LC_MESSAGES/django.po b/mayan/apps/common/locale/el/LC_MESSAGES/django.po index 2c0a57a36f..bb9b8e3160 100644 --- a/mayan/apps/common/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/el/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Κοινό" @@ -122,47 +122,51 @@ msgstr "%(object)s ενημερώθηκε επιτυχώς." msgid "About this" msgstr "Σχετικά με αυτό" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Προφίλ τοποθεσίας" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Τοποποίηση του προφίλ τοποθεσίας" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Τεκμηρίωση" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Σφάλματα" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Φόρουμ" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Άδεια χρήσης" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Ρυθμίσεις" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Πηγαιος κώδικας" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Υποστήριξη" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Εργαλεία" diff --git a/mayan/apps/common/locale/en/LC_MESSAGES/django.po b/mayan/apps/common/locale/en/LC_MESSAGES/django.po index 0251ea4c4b..f8032a72e7 100644 --- a/mayan/apps/common/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "" @@ -122,47 +122,51 @@ msgstr "" msgid "About this" msgstr "" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "" diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.mo b/mayan/apps/common/locale/es/LC_MESSAGES/django.mo index 3f2b97d99b78b053ed94590e10955021bc7d6320..7707af5657bd0b029a87796537f18bc31ac3e7df 100644 GIT binary patch delta 26 hcmZpD#@PCdaYL~sx1ph~p{0U>k(G(T<~qxEO8|XQ2!j9s delta 26 hcmZpD#@PCdaYL~sw}H8?fvJLlnU#sf<~qxEO8|Yc2#){& diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index eda27a5dcc..cf22521572 100644 --- a/mayan/apps/common/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/es/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-07-05 06:48+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Común" @@ -126,47 +126,51 @@ msgstr "%(object)s actualizado exitosamente." msgid "About this" msgstr "Sobre esto" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Perfil de localización" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Editar perfil de localización" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Documentación" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Errores" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Limpiar todo" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Foro" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licencia" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Configuración" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Código fuente" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Apoyo técnico" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Herramientas" diff --git a/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fa/LC_MESSAGES/django.mo index 18db48fa260868a007f4d728bc2c1a61c7f3afff..d5237d3a9d93b802dec1de7e536ae15f58e4d4cf 100644 GIT binary patch delta 24 fcmbQOF 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "مشترک" @@ -124,47 +124,51 @@ msgstr "%(object)s با موفقیت به روز شد" msgid "About this" msgstr "در مورد این" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "پروفایل محلی" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "ویرایش پروفایل محلی" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "مستندات" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "خطاها" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "انجمن" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "لیسانس" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "نصب" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "کد منبع" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "حمایت کردن" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "ابزار" diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/common/locale/fr/LC_MESSAGES/django.mo index cc5acee62457434605a9e5f98fcf0893282601e0..065a2f4db172f7ac53cb8d3a7f277b4e9d3bb293 100644 GIT binary patch delta 847 zcmXZaOGq1G5Ww*X#kAVA@%^kCHT8i8cYV}X1rI(h+WMj%L@|njpj}7;QYx&VJrpcn zgc1sZ(1RWX!P0{VK|Iz|5uq1FFCHxP5*pBp|6w-gcjN?*|{*(;kt- zOp#I%Db5xt$4+d-DQv+_Y{OFwqBlom3~TWTuA&du@iE3-x83?Kc2WO{`Itn$lAbHJ zcnKY zJi-xtX%{(-KVS`oI9A{Z>JD#Q|KW4;Bn4Z)*1?fc{;S6d+3-u*i!bw~~-S8#OV^P4F%qP@IY+@^ZLp{PX)PBJ- z=O_%+Nlaj=Uim_>Lt*cr#(Uv2O*3S+1&oIFCZpEilhz-O#zLc!@cZaOIA%rK1H;zz RY$Rr3G#r_?4hFJH{14TOVYUDO delta 868 zcmXZaPe_w-9LMpml-Ar+)5@8x=3_2OYPlxb+(K5kbto|ZP*4y&OqV0q;+djC@IZK! zs6${K1fzq47=jQKKvg2aPJW;}6sc|9c)hEpn8#f%*$VsL8aU4szeqLjB%2n)uXPzrs$| zZ!n7Auo0bq6e$WHxoWf--kxC&^-6xB9_S0Z2JjB+CcKMz)PcXC9=wfug*&KMw1@Sm z@u_~)B!bA%jzlO(Q?9!Wd4L+>4C;n+sDH9~e2A}62j0a3#!NSvx2Q=}P?K3fy}}*T z{d(KntH_`xVPmU4c}KBKV|}%w?x&HBC8F`Td8I4a9lsdkRe#$mPew;<>q&XSnk?B# oGiz^DMmH*UA!iPckByDan%Bx|KK-a@6(%m{O2xj_#PM)oA0!}VQ~&?~ diff --git a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po index 846f60b971..c058fd65e8 100644 --- a/mayan/apps/common/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/fr/LC_MESSAGES/django.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-08-22 13:52+0000\n" -"Last-Translator: Frédéric Sheedy \n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" +"Last-Translator: Roberto Rosario\n" "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" @@ -26,7 +26,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Commun" @@ -131,47 +131,51 @@ msgstr "%(object)s mis à jour avec succès." msgid "About this" msgstr "À propos de" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Paramètres régionaux du profil" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Éditer les paramètres régionaux du profil" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Documentation" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Erreurs" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Effacer tout" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Forum" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licence" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Configuration" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Code source" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Support" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Outils" diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/common/locale/hu/LC_MESSAGES/django.mo index b2c0ff9d06c346a4eceed89f3207e0fee878acd2..764a680b812f657ca212432020f19eca70b22736 100644 GIT binary patch delta 24 fcmeC>>gC$-nTgxbP}k5>!NADM#9;G3CVnOWT2}_V delta 24 fcmeC>>gC$-nTgxLOxMU#!NAPQ$Z+#NCVnOWTDu0s diff --git a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po index d2fa6d6d4a..fee9d9c70e 100644 --- a/mayan/apps/common/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/hu/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Általános" @@ -123,47 +123,51 @@ msgstr "" msgid "About this" msgstr "" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "beállítás" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Eszköz" diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.mo b/mayan/apps/common/locale/id/LC_MESSAGES/django.mo index bafbc9c3d40d9fc56f9db582c8e1da63ee4b3e91..042a75cacce1aa6e201557bf9079bc46645e4aea 100644 GIT binary patch delta 24 fcmdnPwTEki6f?J>p{}8&f`O5hiNR)7W^pC}Pj3Zs delta 24 fcmdnPwTEki6f?JhnXZwgf`OTpk>O@lW^pC}Ptyf@ diff --git a/mayan/apps/common/locale/id/LC_MESSAGES/django.po b/mayan/apps/common/locale/id/LC_MESSAGES/django.po index dfdf4daa65..6a2e984834 100644 --- a/mayan/apps/common/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/id/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "" @@ -122,47 +122,51 @@ msgstr "" msgid "About this" msgstr "" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Profil lokl" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "edit profil lokal" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Lisensi" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "" diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.mo b/mayan/apps/common/locale/it/LC_MESSAGES/django.mo index 9af94a3266916be1953e302db10bae5ec558bf06..5893cd36c6925df7f96d6e97c787c1720c735421 100644 GIT binary patch delta 24 gcmewr@GD@$DKTzCLtR5l1p^~16NAlH#g+;J0C^<{od5s; delta 24 gcmewr@GD@$DKTyXGhHJ~1p_lHBg4&C#g+;J0C|ZBr2qf` diff --git a/mayan/apps/common/locale/it/LC_MESSAGES/django.po b/mayan/apps/common/locale/it/LC_MESSAGES/django.po index 8f93dc5de3..ecb19fdd66 100644 --- a/mayan/apps/common/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/it/LC_MESSAGES/django.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Comune" @@ -128,47 +128,51 @@ msgstr "%(object)s aggiornato con successo." msgid "About this" msgstr "A questo proposito" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Profilo Locale" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Modifica profilo locale" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Documentazione" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Errori" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Pulisci tutto" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Forum" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licenza" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Configurazione" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Codice sorgente" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Supporto" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Strumenti" diff --git a/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/common/locale/lv/LC_MESSAGES/django.mo index c233b4ec11f7ace89cc70d796dc9633c1d3b6c28..cdc80ca84cfc1aedd9047620ed8cef952fdd5191 100644 GIT binary patch delta 1105 zcmXZaOGs346vy%3^fb)`l_DQGKGHHRC&p+@D+#kP%~HseEXSJikxpnJNqGq@BeDV) zhDbt@MT<~oV+6WrmryNQSTH15ArTct(9XVp?p=NU=lq}N+&dR>O-Ec4-WAq>OUm|1 zZb{FJY~NxY@h{wlse7aX^kXLWqK|zK(2H}$QV?VJN{QILPfEa>`=zVPrO{HUnte%S zQpPf=4Zjl)mdg_J>OCZ_#y(twHyrO_9PtR2;4@s0ix`hfXx7L3rF=}mby$J9SdXTF zel+J#pxHNtYjM_Z*$2*%h$8V5DMtU$Y$&X-A5em3Llv&V1}6^S7Aoz;XdFH)Jz@S~ zC2NT*s-!Wze}t;Z?>;IW#7FoSzgY}eqxoaf7u;SWy`&|HwbBpbcgLm2957QSeIgFl zOC4C&AdQm`V=*?Ilyb-qH}bh~2F*hwXgcy4)9??PLK05#IJDdh+zi?=7H=bWX#|__ zHzr~2X=xL7qKOC5bnGdbizaa;PNDf^(?|_^bBlL(>twmoPL zzJuvFjCb(`=A%DgSI~oA;(kms^JqHr0XJiLvlN3JXfC{rJMbD-;Up$=zm}W@$!F{i zWTI(}2cz){nu7*#0f%rNd(PTF--)1Ic{7>kdUgEdVVvGIqqE@@&HatLn44Kjbnuk`l*$=71JmN;I=A2ttO8l|iUYByg z?raXGrZeGZuo2ra%!cdOPwWf(qjEhl9#6i<=PuY;2P-PTKMu9YhV-4;d39wJ1E zBG3%e2!c$Bq6-l|MAD1B=z|oLP!T>@VFX3r;lEFxIWu!+=A8fk+^W}zM3xE_1aN!}B5;Czl$ha2;xm3Vc#v;yzsOBWYOj|-$S z@*F#)b-_{xekUH@CBIl#Z;`YVZ(tbS4tO7z6OUmoj^io}E|#J(2F?ByOvOxGhP9ZC zJ~RdNp*jC8n!HJj#MxrMb>KV`p-hDBmMBKiXcEfMJfI3qLIW`j$twK_fH_M;Rz{a2xqi_hh zOJi7rk=0TxdT}jw1>#{e9ea)Dq6u7#lW00Nh18%gf%TjkJ`Zsrn$Dg>^89KKOk6?p zZM)GNd=C?F1h3(HOhvcLs-PPk#C;fV*3oq42W~*uF)0Esqq(pLx8f}<#R*)){fcp0 z8#2&zAQw$*N-!L+qd8~*Kj8!Xh~2f;&(~6CRek|Y0qvNCH!%@kp($uK;9S53Y~g;X zUOELn{EeS6F-V$ekoYYW?6F>6iKgNXEX1dH9RH$uXnmvgkkgn#d=|?%XAldBf1a@R zWj0xzEx@=07TgSCuoFi~=*JG?iqYcG\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,7 +18,7 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Kopīgs" @@ -123,47 +123,51 @@ msgstr "%(object)s veiksmīgi atjaunināts." msgid "About this" msgstr "Par šo" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Lokalizācijas profils" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Rediģēt lokalizācijas profilu" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Dokumentācija" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Kļūdas" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Iztīrīt visu" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Forums" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licence" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Setup" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Pirmkods" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Atbalsts" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Rīki" 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 9ff8eae3aa4a931daf7dcc9cc2b1ff72c58d6aba..54b3bee7ed47468c4e78745715a1e212cfc613d8 100644 GIT binary patch delta 24 fcmZpdYM0t@jh)-jP}k5>!NADM#9;G7b~RQ2S^@^T delta 24 fcmZpdYM0t@jh)-TOxMU#!NAPQ$Z+#Rb~RQ2T4n~q 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 c814346554..1ad9fc3326 100644 --- a/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/nl_NL/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Gemeenschappelijk" @@ -125,47 +125,51 @@ msgstr "%(object)s werden succesvol geupdate." msgid "About this" msgstr "" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Landsinstellingen" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Wijzig landsinstellingen" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licentie" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Setup" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Gereedschappen" diff --git a/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pl/LC_MESSAGES/django.mo index 9868a9c2cb11a872a0ac739b134df433586e7647..7347420953343c5d92ee327b03d54fc013a49955 100644 GIT binary patch delta 835 zcmXZaPe_w-9LMpGxXrbhmOX*ypG|FA>1dCJ)F?a{LFU0k8oQViq=M*yXS)SGP#vN} zc+i7TAc)W@jom~DQs`!Y(-_nm zq)5Azmh`uyZs#d!i1B3{#=Gd^3TE&FCdvDS9r&kHdfzCW=$3Br{Bv4LV78a{@FGU> zYUm`kFrMyJpeqEonK+5B@EBGxhkMwDHOynYk410-Td{z)&>ggVADi$Q_TUoQdz)wr zz6;$)>ebi2KsrM3jfoWgL|Y))FU2s0%{YL3HOkL9EFhcJW4w-QIEz1!CTje&M9nH9 z&DBG+!j{qg_a#PfJs_~wyvAvK6OR9(B}D1BB^<>#I(Qtr!};@gmhl+Azv`^iylM- zZCV5^Y!fY_MJw1|f>h9k&VCiv;cB63*S!g2h7Sqybk5u8JE zm%B)D\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" +"Last-Translator: Roberto Rosario\n" "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" @@ -26,7 +26,7 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Ustawienia wspólne" @@ -131,47 +131,51 @@ msgstr "%(object)s zaktualizowano pomyślnie." msgid "About this" msgstr "O programie" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Profil regionalny" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Edycja ustawień regionalnych" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Dokumentacja" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Błędy" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Wyczyść wszystko" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Forum" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licencja" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Ustawienia" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Kod źródłowy" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Wsparcie" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Narzędzia" diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/common/locale/pt/LC_MESSAGES/django.mo index a9ddfde7063f24151bed416fd32da26a05c082be..bd03e76492561e1dd2ba9a7b5a40810575e78258 100644 GIT binary patch delta 24 fcmeys`GIr8WhQPzLtR5l1p^~16NAn7n1q-BX&VPa delta 24 fcmeys`GIr8WhQO|GhHJ~1p_lHBg4)2n1q-BX@3Vx diff --git a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po index 456a792094..a86c164d05 100644 --- a/mayan/apps/common/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -20,7 +20,7 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "" @@ -125,47 +125,51 @@ msgstr "" msgid "About this" msgstr "" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licença" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Configuração" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Ferramentas" 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 54576439dc03fb1da62ff3cb04bef471e3ecf331..5d2d05b03b0410051e3a5ca3e83bc154a18cc640 100644 GIT binary patch delta 26 icmbO^nQ`W1#trjSxeX0<4J{Q6jI2xyHm_9upbP+X-3W#N delta 26 icmbO^nQ`W1#trjSxed&8jVu)m%&d$IH?LIvpbP+YK?sfj 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 61e57ee40d..d1e931374e 100644 --- a/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/pt_BR/LC_MESSAGES/django.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Comum" @@ -128,47 +128,51 @@ msgstr "%(object)s atualizado com sucesso." msgid "About this" msgstr "Sobre isso" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Perfil Idioma" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Editar perfil Idioma" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Documentação" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Erros" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Limpar tudo" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Fórum" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licença" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Configurações" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Código fonte" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Suporte" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Ferramentas" 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 b48ccfb9ea7c8374e46823857ddd9bb9724a4ccd..3070b653081e29baf877f3cb77769f925bf5e6cd 100644 GIT binary patch delta 1105 zcmXZbT};h!9LMp`=_GL?O43$TtELp^B-)9Hh@Mo3SRSU+0~I+|T{K&rd7L&j(}uC~ zaA$MT)-W`)nTL%F+%SfXtqWY_0^RZc`nR3!_5FVT|KIQT|9yYIb8Osoa@;ji5E&kJ zNm+hrnWQI0k{5p=KV_|wR$~xLa2N~lGhSreJRWYqTg6WPbB&ZhKETUacy*n0&MiG% zFYRI6jxyS$u zmC{N~!d$FHd#?}U@dVoZmny^Tg5U-PTlg-nz(*L1zcB`*svP4nk~|gd{Y*?{r%N#f zYpSL5)H}DZ7`bYs7ua7bg-9y`(q_Dmf6*P@DltaxZPFjCLpLjw*Gq{EtZtAVVCzol zJI~X0i=MGd`uUCeS!}`Hy;27CkBw3sMg*N5C!lpC8PhQbJy?yU7;Yd~NH8?@U<_Nx zpCccyye6mReYlAH0w&-coQ5yaI`Ial;|GkvugD%Wf%aZmvy_ij$dynSsfTr(z|LX- zZQ?<+v$~1dID$j?9_>>0@^yAJqqr6yVAd6cyM?sIWy5wJH0a{=$RLIp=@x{oi~3_w`TvoS*g?bNP8ke553| zlrHH}wv>V2k)M`tk~ZT3%*7FO;YS>1UKkJa@m7wLf7>EOkPk3839oIF27RT++of9O z)f7s7^Q1fYo80A*SN;TPB~p+TFaUFLA$l+jt8oLi;8GmLNW6zO{{?2^YYf4FQYi}~ zF%`?v#`WT2>_c1sa;aBZLU5gez4$J!#|IdSKQI`5%N!S>A9)Pg_(Y87q-!t+%gUuo z)H^DqGvt5pIiA`f9i?7WB^Bd+oJD!7*_{P7(l4k$U*1r-ONwG*$sTDE8}~|Ic^PdF^?!#ZTBCeb#Ubi`RW9dpUEaDa7AVgdPI zZlG->pEf06CB`HZ94GjH2hc9t1YV@xGwumUSsRq$PRq!Q&)Arq=^8rgjtVYr=xXR} QjxXryZfYOD;cjsM17@e4TL1t6 diff --git a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po index 7d6e70bf90..b0f27249e4 100644 --- a/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ro_RO/LC_MESSAGES/django.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-09-03 08:34+0000\n" -"Last-Translator: Harald Ersch\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +19,7 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Comune" @@ -124,47 +124,51 @@ msgstr "Obiectul tip %(object)s a fost actualizat cu succes." msgid "About this" msgstr "Despre asta" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Profilul localizării" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Editați profilul localizării" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Documentație" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Erori" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Curăță tot" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Forum" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Licenţă" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Configurare" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Cod sursă" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Suport tehnic" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Unelte" diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/common/locale/ru/LC_MESSAGES/django.mo index 63fc345c8eec93ee79f69a6fd20999c27660977d..5b23b9de8e5c5074555afe104e96888bddd7c144 100644 GIT binary patch delta 24 fcmeyU`%!m8GZ(j^p{}8&f`O5hiNWSRu4EnnX`KgH delta 24 fcmeyU`%!m8GZ(jknXZwgf`OTpk>Tb(u4EnnY5@me diff --git a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po index 3c6dada53f..2ed77740f4 100644 --- a/mayan/apps/common/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/ru/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Общий" @@ -124,47 +124,51 @@ msgstr "%(object)s успешно обновлён." msgid "About this" msgstr "Информация" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Профиль локали" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Редактировать локаль" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Документация" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "Ошибки" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "Очистить все" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Форум" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Лицензия" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Настройки" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Исходные коды" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Поддержка" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Инструменты" diff --git a/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/common/locale/sl_SI/LC_MESSAGES/django.mo index 049c4280e4eeb0e25d222eb12ed84a6fcd02a46d..b0a80455658f762721ad8b9055f7d88a39d7fd77 100644 GIT binary patch delta 24 fcmX@lcAjlR4Td)j5`hmP}k5>!NADM#9;F`&TcjUT>1x4 delta 24 fcmZovY*gIvnv>hWOxMU#!NAPQ$Z+#F&TcjUU0w%R diff --git a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po index 756d1d455a..40971f89ac 100644 --- a/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/tr_TR/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "Ortak" @@ -124,47 +124,51 @@ msgstr "%(object)s başarıyla güncellendi." msgid "About this" msgstr "Bunun hakkında" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "Yerel profil ayarı" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "Yerel profili düzenle" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "Belgeleme" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "Forum" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Lisans" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "Ayarlar" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "Kaynak kodu" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "Destek" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "Araçlar" diff --git a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.mo index 6f08d7b35fb3f209d80090207610271663e8b673..f65bdd6541229679d2be24b5bc17b80ca5c8aa37 100644 GIT binary patch delta 24 fcmZqXZ06ih%*1VIsB37cU|?irVz9Z6iIoWeOv?qF delta 24 fcmZqXZ06ih%*1VArfX!WU|?otWVpGGiIoWeO)mwc diff --git a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po index 1ab7678733..2615c1eb89 100644 --- a/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/vi_VN/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "" @@ -123,47 +123,51 @@ msgstr "" msgid "About this" msgstr "" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "Bản quyền" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "" diff --git a/mayan/apps/common/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/common/locale/zh/LC_MESSAGES/django.mo index e7b3327e2d416b51f248299d4286f21906229346..3d20430e3f9cc0ddce593b56d0470d4ecf404cdc 100644 GIT binary patch delta 26 hcmaFc!1%U-af7ZZx1ph~p{0U>k(G(TW(!qQX#jQ42V(#L delta 26 hcmaFc!1%U-af7ZZw}F|ik)?uxnU#^@W(!qQX#jRJ2WtQT diff --git a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po index ab556b3699..4febbd4ed6 100644 --- a/mayan/apps/common/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/common/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" -"PO-Revision-Date: 2019-06-29 06:21+0000\n" +"POT-Creation-Date: 2019-11-18 22:34-0400\n" +"PO-Revision-Date: 2019-11-19 02:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -18,7 +18,7 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:89 permissions_runtime.py:7 settings.py:14 +#: apps.py:88 permissions_runtime.py:7 settings.py:14 msgid "Common" msgstr "常用" @@ -123,47 +123,51 @@ msgstr "%(object)s已成功更新。" msgid "About this" msgstr "关于这个" -#: links.py:40 +#: links.py:39 +msgid "Get the book" +msgstr "" + +#: links.py:44 msgid "Locale profile" msgstr "区域配置文件" -#: links.py:45 +#: links.py:49 msgid "Edit locale profile" msgstr "编辑区域配置文件" -#: links.py:50 +#: links.py:54 msgid "Documentation" msgstr "文档" -#: links.py:54 links.py:65 +#: links.py:58 links.py:69 msgid "Errors" msgstr "错误" -#: links.py:59 +#: links.py:63 msgid "Clear all" msgstr "清除所有" -#: links.py:69 +#: links.py:73 msgid "Forum" msgstr "论坛" -#: links.py:73 views.py:109 +#: links.py:77 views.py:109 msgid "License" msgstr "许可" -#: links.py:76 +#: links.py:80 msgid "Setup" msgstr "设置" -#: links.py:79 +#: links.py:83 msgid "Source code" msgstr "源代码" -#: links.py:83 +#: links.py:87 msgid "Support" msgstr "支持" -#: links.py:87 queues.py:15 views.py:210 +#: links.py:91 queues.py:15 views.py:210 msgid "Tools" msgstr "工具" diff --git a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po index d16a667ff2..5272ce8c7b 100644 --- a/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -18,11 +18,11 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "" diff --git a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po index 3c59ba1395..f87e77c137 100644 --- a/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-10-16 14:15+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -19,11 +19,11 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Конвертор" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Трансформация" diff --git a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po index f8e211d797..d877c1ecca 100644 --- a/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -19,11 +19,11 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Konverter" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformacija" diff --git a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po b/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po index 9231254f37..f79abc8c69 100644 --- a/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-10-15 16:46+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,11 +18,11 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Konvertor" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformace" diff --git a/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po index 006e1ea929..e1df44f460 100644 --- a/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -17,11 +17,11 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "" diff --git a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po index d0b1a2cc33..2cd49463c5 100644 --- a/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-08 22:15+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -22,11 +22,11 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Konverter" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformation" diff --git a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po b/mayan/apps/converter/locale/el/LC_MESSAGES/django.po index fa74a1bd98..e9a55390fb 100644 --- a/mayan/apps/converter/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,11 +17,11 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Μετατροπέας" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Μετασχηματισμός" diff --git a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po index f1944f1670..d464cc0460 100644 --- a/mayan/apps/converter/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,11 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "" diff --git a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po index a23fcbe69f..31dd514760 100644 --- a/mayan/apps/converter/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/es/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-28 19:34+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -19,11 +19,11 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Convertidor" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformación" diff --git a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po index 5102ecb9a1..a7540bc827 100644 --- a/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -18,11 +18,11 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "مبدل" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "دگرگونی" diff --git a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po index 2c5b206242..a6875f6bef 100644 --- a/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-09 13:35+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -22,11 +22,11 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Convertisseur" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformation" diff --git a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po index c4c45544a2..62d961ee63 100644 --- a/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,11 +18,11 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Konverter" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Átalakítás" diff --git a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po index 486c3dc592..bb5f9a2cc9 100644 --- a/mayan/apps/converter/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-12 18:08+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -17,11 +17,11 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Pengkonversi" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "" diff --git a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po index e871c5697e..310eb6e537 100644 --- a/mayan/apps/converter/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -19,11 +19,11 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Convertitore" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Trasformazione" diff --git a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po index c87d58d01a..82b87a8794 100644 --- a/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-06-27 13:00+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,11 +18,11 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Pārveidotājs" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformācija" 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 c76fa48929..25341b5233 100644 --- a/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/nl_NL/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -21,11 +21,11 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Converter" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformatie" diff --git a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po index 432082a197..3629bdd2dd 100644 --- a/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -20,11 +20,11 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Konwerter" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Przekształcenie" diff --git a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po index aa50f8b156..4c0c0b610c 100644 --- a/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -20,11 +20,11 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "" diff --git a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po index 567fa21a9b..39a7da4a50 100644 --- a/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -22,11 +22,11 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Conversor" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformação" 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 7667a161ce..c8a66e9a47 100644 --- a/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-08 08:08+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -19,11 +19,11 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Convertizor" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformare" diff --git a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po index 2efd8a171e..2c39f50699 100644 --- a/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -18,11 +18,11 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Конвертер" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Преобразование" diff --git a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po index 3271cfc6bd..783a5ccbd5 100644 --- a/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -17,11 +17,11 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "" diff --git a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po index 9af2a06cb6..4105919009 100644 --- a/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,11 +19,11 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "Dönüştürücü" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "Transformasyon" diff --git a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po index ae537f858a..041663216b 100644 --- a/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -17,11 +17,11 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "" diff --git a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po b/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po index 06eb269f8f..56ada28d9d 100644 --- a/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/converter/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:20+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,11 +18,11 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:22 permissions.py:7 settings.py:12 +#: apps.py:21 permissions.py:7 settings.py:12 msgid "Converter" msgstr "转换器" -#: apps.py:31 models.py:57 +#: apps.py:30 models.py:57 msgid "Transformation" msgstr "转换" diff --git a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po index c70cedaaa8..bb99671732 100644 --- a/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po index 4b33a700bd..f8335484ed 100644 --- a/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bg/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po index 71578ea664..a95456d51b 100644 --- a/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/bs_BA/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Atdhe Tabaku , 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po index 5a414b7b87..c1d28d3a1f 100644 --- a/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" diff --git a/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po index 52c3240c1c..582844c138 100644 --- a/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" diff --git a/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po index d6cb7f26dd..9808fe345f 100644 --- a/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po index 1158d551af..5029c37248 100644 --- a/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/el/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: UE4 Hobbyist, 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" diff --git a/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po index 94d0969e1f..b39551ea53 100644 --- a/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po index 0317765db3..8f3b468d08 100644 --- a/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po index e21863bada..ccdb45ac6a 100644 --- a/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fa/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po index ab95147a45..fb9ad56bac 100644 --- a/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po index 708d99df11..98e14cfdc4 100644 --- a/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po index f3249809cb..e213898def 100644 --- a/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po index 51fe98de73..af677cb5d6 100644 --- a/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Marco Camplese , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po index e580449346..f8f4babab7 100644 --- a/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" diff --git a/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po index 84a95e9964..f01a06e336 100644 --- a/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/nl_NL/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Martin Horseling , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po index 4c44931cb1..a171a8c778 100644 --- a/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po index 751c7ef7db..03b8ac90da 100644 --- a/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po index dff8f739db..c461856104 100644 --- a/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/pt_BR/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po index 95810c199e..08d4b52ef3 100644 --- a/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ro_RO/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" diff --git a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po index e538fbfdc0..2854300f87 100644 --- a/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/ru/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: mizhgan , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po index 776f329491..4cafb02dd1 100644 --- a/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: kontrabant , 2019\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" diff --git a/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po index 23320df5dc..cfecaaf514 100644 --- a/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po index ecf56eb7c8..fcda7a3ab5 100644 --- a/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po index 971b9b22e2..c759b1c962 100644 --- a/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dashboards/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:58-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" diff --git a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po index 28dd3a84e7..5262f76351 100644 --- a/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ar/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" @@ -23,219 +23,219 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "العنوان" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Description" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "النوع" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "الاصدار" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "اسم" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "لا شيء" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -287,34 +287,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "" diff --git a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po index 88fafef009..fcd3797908 100644 --- a/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bg/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" @@ -24,47 +24,47 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "Зависимости" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Етикет" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Вътрешно име" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Описание" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Тип" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "Други данни" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "Декларирано от" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Версия" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "Среда" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "Проверка" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -72,11 +72,11 @@ msgstr "" "Среда, използвана за изграждане на дистрибуторски пакети на софтуера. " "Крайните потребители могат да игнорират липсващите зависимости в тази среда." -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "Конструкция" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -84,11 +84,11 @@ msgstr "" "Среда, използвана от разработчиците за извършване на промени в кода. " "Крайните потребители могат да игнорират липсващите зависимости в тази среда." -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "Разработка" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -96,11 +96,11 @@ msgstr "" "Нормална среда за крайните потребители. Липсваща зависимост в тази среда ще " "доведе до проблеми и грешки при нормална употреба." -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "Производство" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -110,69 +110,69 @@ msgstr "" "Зависимостите в тази среда не са необходими за нормалното използване в " "производството." -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "Тестване" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Име" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "Приложение" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "Трябва да посочите поне едно: app_label или модул." -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Зависимостта „%s“ вече е регистрирана." -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "Инсталиране на пакет: %s ..." -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "Вече е инсталирано." -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "Завършено." -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "Инсталирана е правилна версия" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "Липсваща или неправилна версия" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Няма" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "Не е конкретизирано" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "Пачване на файлове ..." -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "Изпълними файлове, които се извикват директно от кода." -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "Двоичен файл" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -180,51 +180,51 @@ msgstr "" "JavaScript библиотеките са изтеглени от регистъра на NPM и са използвани за " "функционалност на интерфейса." -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "Изтегля се ..." -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "Проверява се ..." -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "Извличане ..." -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "Пакети Python, изтеглени от PyPI." -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "Python" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Шрифтове, изтеглени от fonts.googleapis.com." -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "Google шрифт" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "Декларирано в приложение" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "Показване зависимостите от приложението, което ги е декларирало." -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Клас" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -232,11 +232,11 @@ msgstr "" "Покажете различните класове на зависимости. Класовете обикновено се разделят" " по език или файлови типове на зависимостта." -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "Състояние" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -246,7 +246,7 @@ msgstr "" "зависимостите са инсталирани и са с правилна версия. Грешно означава, че " "зависимостите липсват или е налице неправилна версия." -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." @@ -254,7 +254,7 @@ msgstr "" "Зависимости, необходими за дадена среда, може да не се изискват за друга. " "Примерни среди: производство, разработка." -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Проверка за актуализации" @@ -310,34 +310,41 @@ msgstr "Версията, която използвате, е остаряла. msgid "It is not possible to determine the latest version available." msgstr "Не е възможно да се определи най-новата налична версия." -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Вашата версия е актуална." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "Записи за група зависимости: %s" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "Група %s не е намерена." -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "Групи зависимости" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "Група зависимостите и запис: %(group)s, %(entry)s" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "Запис %s не е намерен." -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Лицензи за други пакети" diff --git a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po index fe6cc03696..24cb49ac11 100644 --- a/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/bs_BA/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" @@ -23,219 +23,219 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Labela" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Interno ime" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Opis" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Tip" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Verzija" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Ime" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Nijedno" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Klasa" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Proveravanje za ažuriranje" @@ -287,34 +287,41 @@ msgstr "Verzija koju koristite je zastarela. Najnovija verzija je %s" msgid "It is not possible to determine the latest version available." msgstr "Nije moguće odrediti najnoviju verziju koja je dostupna." -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Vaša verzija je ažurna." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Ostale license za pakete" diff --git a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po index 173d8c095c..680ca5271e 100644 --- a/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/cs/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" @@ -22,47 +22,47 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "Závislosti" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Označení" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Vnitřní název" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Popis" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Typ" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "Další údaje" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "Deklarováno uživatelem" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Verze" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "Prostředí" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "Kontrola" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -70,11 +70,11 @@ msgstr "" "Prostředí používané k vytváření distribuovatelných balíčků softwaru. Koncoví" " uživatelé mohou v tomto prostředí ignorovat chybějící závislosti." -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "Sestavení" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -82,11 +82,11 @@ msgstr "" "Prostředí používané pro vývojáře k provádění změn kódu. Koncoví uživatelé " "mohou v tomto prostředí ignorovat chybějící závislosti." -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "Vývoj" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -94,11 +94,11 @@ msgstr "" "Normální prostředí pro koncové uživatele. Chybějící závislost v tomto " "prostředí bude mít za následek problémy a chyby při běžném používání." -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "Produkce" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -108,69 +108,69 @@ msgstr "" "kódu. Závislosti v tomto prostředí nejsou nutné pro normální využití v " "produkčním prostředí." -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "Testování" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "název" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "Aplikace" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "Je třeba zadat alespoň jeden: app_label nebo modul." -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Závislost \"%s\" je již zaregistrována." -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "Instalace balíčku: %s ..." -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "Už nainstalováno." -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "Kompletní." -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "Nainstalovaná správná verze" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "Chybějící nebo nesprávná verze" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Žádný" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "Nespecifikováno" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "Opravné soubory ..." -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "Spustitelné soubory, které jsou volány přímo kódem." -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "Binární" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -178,51 +178,51 @@ msgstr "" "Knihovny JavaScriptu stažené z registru NPM a použily se pro front-end " "funkce." -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "Stahování ..." -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "Ověření ..." -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "Probíhá extrakce ..." -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "Python balíčky stažené z PyPI." -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "Python" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Fonty stažené z fonts.googleapis.com." -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "Písmo Google" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "Deklarováno v aplikaci" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "Zobrazit závislosti podle aplikace, která je deklarovala." -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Třída" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -230,11 +230,11 @@ msgstr "" "Zobrazit různé třídy závislostí. Třídy jsou obvykle rozděleny podle jazyka " "nebo typu souboru závislosti." -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "Stav" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -244,7 +244,7 @@ msgstr "" "závislosti a mají správnou verzi. False znamená, že chybí závislosti nebo je" " přítomna nesprávná verze." -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." @@ -252,7 +252,7 @@ msgstr "" "Závislosti vyžadované pro prostředí nemusí být vyžadovány pro jiné. Příklad " "prostředí: Výroba, vývoj." -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Kontrola aktualizací" @@ -308,34 +308,41 @@ msgstr "Verze, kterou používáte, je zastaralá. Poslední verze je %s" msgid "It is not possible to determine the latest version available." msgstr "Není možné určit nejnovější dostupnou verzi." -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Vaše verze je aktuální." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "Položky pro skupinu závislostí: %s" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "Skupina %s nebyla nalezena." -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "Skupiny závislostí" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "Skupina závislostí a položka: %(group)s, %(entry)s" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "Záznam %s nebyl nalezen." -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Licence na další balíčky" diff --git a/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po index fc4e80db4e..7839a71573 100644 --- a/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" @@ -21,219 +21,219 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Etiket" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Beskrivelse" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Type" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Version" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Navn" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Ingen" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -285,34 +285,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "" diff --git a/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/de_DE/LC_MESSAGES/django.mo index 65e7a15ea56b1d084ca6002504a52c05459cdc48..18f42946ec33bdabbf53be3168195f8c11a7481c 100644 GIT binary patch literal 7038 zcmcJTTZ|-S6~{jmL z|8@Po^PTfQ|8r_y-gD`bifx|#6YO`sM=2Nl{H6S`y?U8ad%)Mg_kwSL?*sn{@~7S| z@G>r5!}*nB z_&LZD)Jvd@|634~)E_|c+rL1u?`j5n7`zUYcqE|A_ZG-h>IxRep}GMSp4zYP8Z#06^OhTN{NftaGc4oaN92g*8M0A-#( zf#UyvgVW$87<&{v0zM8t3jPNCJ1Ecn0_Vs&eg(>NuY;lkdl_8fvJaH|M?p+cC&2yS zIS_iND!bS#@5=V69Bk~0L(7XoZY-DX;)aZIfL-Pi9hhf7$S$#)WdAh#6uWH4*emuZ z|G|ZJyPIFJ?KbvLvd^)L4=~Mc61Q@bnBbDZCb1F!$aYf>_SfO}5WBW#_zgT>91Fk7 z&1z|JB7B}@7ylryHZK9oJKSvbLpUn@D>vbo_*Y^pypmYRCYrL>9_4X8%(2A#7WUiO z?_i%{A8a#0Y+SFW{V+-0ATXYzW;z`;>xXXKQ?r>LcxtX?>g)NhZbY%pI-Z-FM9l?m z!f(`WyE-u)H|DCRL$_@b9W}IPIwtf?Sob+kBW*V8LFO6Vh@-YnTSfVX?$XRS9pW-OOg&yQF< zc7myO6DF*A^bsAKFJ-=rC0=nuZNd#dj>5JHQ{DEPtyG6ms%vKFgVr!dFKoJPtQvhS zsp{1@^0IpBN8v#|&q9KzBLj-%g+F`xrhUmx+ATsCnE^*xsudlzas{4oVtD>*9LZ|`KTKPk?Y}S$8oe;V00o}qV>ff z^u?%5oYE2j@A@x{e?ANl?t>LncTVHpZInRVjNz_QY zgcYZ0!6u=-KOyEVNv413!iF4SP{6bM$~OvRIof<15wp z%f=!!#w*;7x7u!?I|B~l0sM?pHcdVEJq~EOseQR_6@$>krk(~pQffFoZ=|t{Z3Rsh zqcBahSCB`h6B%g8Ri_z6&A_-FKXK|&+fj>ATsNg8xxz%rXrkE|kbXq3PTIHaQ0k;5 z{W!<$wL~qI3TJbo9>rp`xH1u@7k9>oYYj=Yr652ZIUXIV&^cp!tU23r_Ni^yo8OZu*Wpx<=ksL?UB%cS# z!R;`uAhLRl297%I)=Z$53)Uk}ez4;`kB=HgKHi2e@ zHmW2mSm72wmL{WmClV-@*xYmU%*8p^dxwnET|Wp|VUh*-mMAAlhAXUc#c@Q&d08xh zDagqTVg~78t@e$l?!#HJrYgC`;Xoe-!oBLI^_Gm%pj706MQQ6MVWx7Vx-8jILj_i= zy|e{8awwTG7A6~_)!yooqs~fM8c3gnvq%U=&6CC}ix2j~bNhnC+4CC>1e~%#aZ0E& zJL{*TZLt-%khEEnk$F8{+wdiGnI=GnGBQ;{Wtk%dG3|Boq3j%`_Vsq1nDP&4O9dHS zg`?Nv3=K7ISmgfLa8_MJV2TF9296X#i(E8vEX^Ff=myDfELL7xRSZ)qHOmnB-bq`@ zy$)2tRjfixR%@ghaaC*hvB+lKi?YH|5^*smOQmP=Sj)xv$$iSx8qQMZt+Mix&3w+R zIGp#*cwp57Q5Fwoi8J^}fm(v*F96m3aoM>ghv=@2DI)QklM8Pfu5m-g@8=+r(*d zw6Ycx5TquGt9sduH%Og(+@#)GCl&5&+Y5KMiVIHL+;z|n#=ALFDr?4VSM^DB3s3LQ zu{Wvrx6-teRHvr8-L8X#hl$@XnzQh%=LS zxc%)|BIXxuZvW|;i92!sLc@e=#jUsWxxCS(?$%peJ7sfIosx#PX;Si)_36{neCZ8p z)J(0_-wvC8bDb#-?VINt?PkaY5wU%)OivxlU*Qg&L%kJHN4VHEG0n2`e-2O3cOPBD zU96@gg>*-B_Sn>w zK9@A(tkXe?@#cb03+%$yT|4Zt;fvQocu91aMAkZJvq#KQ_ZZqgnu@>`RycHEGE0BE zX@*C+Gj^Lm1g$WOL!CRZX=oEH$4W1&^5CEpULn#jPij(WR%vu$x7;~fwAezd)CAP( zoUwYn|6B;mYztg7VU}+3ba7EPObhDKD34hQEo444pGQj@@@5@hOBM_+T56PzG4Z=O zi&T=JznwJ<9EpW7e#76wAmO99V2-{T7g|n9!`2yYE!NPW~s_;@C0*IJ*F+6D7 z49421p(Vbl@u3*@pG*BF3dOxMnKs&%7QfSJ2UYTkrbh6B-x z+XUH#efgbX&n=>86KP$#g>_EK!drIb%$QSgM^jErY#+No@13TS&Nfc&dYZvdXo~!x z5B&>GVRKlHTjWE#|6Eg4J#10=wrJk^qaD1K4{U>#7b|?&>|x8 zgb-yNP-U#Um%*2%zo+`hn?-*=qQ*rQdS!mo$d#t;?KLj7Qtw*$L2J0m99uZ8{hyRCQB}3)EX9BMV`NW#%0cWw%wz=R-!{Uwl6-L4kolFr!e?4X~a6 zq~MRx@KHLHCb3D1EWNEltqPtJNXLu)wT^6k!Rbiy$i^v=AXE`u?WZfjggf@4UI^zH^@bseVwBnDM7~ z8)7G86=OQZn8VnY#s~2}-55Vkp_abkGMvW@Typ%4E10LTsP#NPqF98-Fph3~idpy) zbBsxtNiIAre8N2Zi6!VJOC^R;8`q+d@=s9ZRap(JYs7lRZ5iZ~r+L_Jf zxy)}+2DR`$sv?j0NGQPw7iz&MssacRGss5uObBmcIo9APYQtZ+9bKGa zCGJKgh~Zj1?yM(}Elm%ql6P{bze+#HLI{7LN*mxbhcJk$&lv!InjT~*)ZqU?ZT-nN zMcplBY++OlPGuZOvE8oEw$nXf&u511, 2019 # Felix , 2019 # Mathias Behrle , 2019 +# Marvin Haschker , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" -"Last-Translator: Mathias Behrle , 2019\n" +"Last-Translator: Marvin Haschker , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,77 +25,83 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "Abhängigkeiten" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Bezeichner" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Interner Name" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Beschreibung" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Typ" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "Andere Daten" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "Deklariert von" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Version" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "Umgebung" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "Überprüfen" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" +"Umgebung, in der installierbare Pakete der Software erstellt werden können. " +"Endbenutzer können fehlende Abhängigkeiten in dieser Umgebung ignorieren." -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "Build" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" +"Umgebung für Entwickler. Endbenutzer können fehlende Abhängigkeiten in " +"dieser Umgebung ignorieren." -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "Entwicklung" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" +"Normale Umgebung für Endbenutzer. Fehlende Abhängigkeiten werden in dieser " +"Umgebung Fehler im normalen Gebrauch verursachen." -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "Produktion" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -104,143 +111,153 @@ msgstr "" "Abhängigkeiten dieser Umgebung werden nicht im normalen Produktivbetrieb " "benötigt." -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "Testing" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Name" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "App" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" "Es muss wenigstens eines von beiden angegeben werden: app_label oder Modul." -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Abhängigkeit \"%s\" bereits registriert." -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "Installiere Paket: %s... " -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "Bereits installiert." -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "Vollständig." -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "Installierte und korrekte Version" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "Fehlende oder inkorrekte Version" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Keine" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "Nicht spezifiziert" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " -msgstr "" +msgstr "Dateien werden gepatcht ..." -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "Programme, die direkt durch den Code aufgerufen werden." -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "Binärdatei" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" +"JavaScript Bibliotheken, die aus der NPM Registry heruntergeladen werden und" +" für die Front-End-Funktionalität benötigt werden." -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" -msgstr "" +msgstr "JavaScript" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "Herunterladen..." -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "Verifizieren..." -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "Entpacken..." -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "Pythonpakete, die von PyPI heruntergeladen werden." -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "Python" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." -msgstr "" +msgstr "Von fonts.googleapis.com heruntergeladene Schriftarten." -#: classes.py:716 +#: classes.py:730 msgid "Google font" -msgstr "" +msgstr "Google-Schriftart" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "In App deklariert" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." -msgstr "" +msgstr "Abhängigkeiten nach der deklarierenden App anzeigen." -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Klasse" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" +"Unterschiedliche Klassen von Abhängigkeiten anzeigen. Klassen sind " +"üblicherweise unterteilt nach Sprache oder Dateityp der Abhängigkeit." -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "Status" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" +"Die unterschiedlichen Zustände von Abhängigkeiten anzeigen. True (Wahr) " +"bedeutet das eine Abhängigkeit mit der korrekten Version installiert ist. " +"False (Falsch) bedeutet eine fehlende oder inkorrekte Version der " +"Abhängigkeit." -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" +"Abhängigkeiten für eine Umgebung müssen nicht unbedingt für eine andere " +"erforderlich sein, z. B. Produktion im Vergleich zu Entwicklung." -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Nach Updates suchen" @@ -296,34 +313,41 @@ msgstr "Ihre Version ist veraltet. Die neueste Version ist %s" msgid "It is not possible to determine the latest version available." msgstr "Ermittlung der aktuellsten verfügbaren Version nicht möglich." -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Ihre Version ist auf dem neuesten Stand." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "Einträge für Abhängigkeitsgruppe %s" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "Gruppe %s nicht gefunden." -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "Abhängigkeitsgruppen" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "Abhängigkeitsgruppe und Eintrag: %(group)s, %(entry)s" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "Eintrag %s nicht gefunden." -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Andere Paket-Lizenzen" diff --git a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po index 1232fbbee4..640fdd46ab 100644 --- a/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" @@ -21,219 +21,219 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Ετικέτα" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Εσωτερικό όνομα" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Περιγραφή" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Τύπος" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Έκδοση" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Όνομα" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Κανένα" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Έλεγχος για ενημερώσεις" @@ -287,34 +287,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Έχετε την πιο πρόσφατη έκδοση." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Άδειες χρήσης λοιπών πακέτων" diff --git a/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po index d8a1e4465d..b0f226ecd4 100644 --- a/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,219 +17,219 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end " "functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -281,34 +281,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure " +"your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "" diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po index 2a58f7e4c6..7046af6e62 100644 --- a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" @@ -23,47 +23,47 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "Dependencias" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Etiqueta" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Nombre interno" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Descripción" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Tipo" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "Otros datos" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "Declarado por" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Versión" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "Ambiente" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "Comprobar" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -72,11 +72,11 @@ msgstr "" "software. Los usuarios finales pueden ignorar las dependencias que faltan en" " este entorno." -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "Construir" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -85,11 +85,11 @@ msgstr "" "Los usuarios finales pueden ignorar las dependencias que faltan en este " "entorno." -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "Desarrollo" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -97,11 +97,11 @@ msgstr "" "Ambiente normal para usuarios finales. Una dependencia que falta en este " "entorno dará lugar a problemas y errores durante el uso normal." -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "Producción" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -111,69 +111,69 @@ msgstr "" "funcionalidad del código. Las dependencias en este entorno no son necesarias" " para el uso normal de producción." -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "Pruebas" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Nombre" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "Aplicación" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "Es necesario especificar al menos uno: app_label o módulo." -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Dependencia \"%s\" ya registrada." -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "Instalando el paquete: %s ..." -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "Ya instalado." -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "Completado." -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "Versión instalada y correcta." -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "Versión faltante o incorrecta" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Ninguno" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "No especificado" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "Parcheando archivos..." -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "Ejecutables que son llamados directamente por el código." -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "Binario" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -181,51 +181,51 @@ msgstr "" "Las librerias de JavaScript descargadas el registro de NPM y utilizadas para" " la funcionalidad de front-end." -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "Descargando ..." -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "Verificando ..." -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "Extrayendo ..." -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "Paquetes de Python descargados desde PyPI." -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "Pitón" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Fuentes descargadas de fonts.googleapis.com." -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "Fuente de Google" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "Declarado en la aplicación" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "Mostrar dependencias por la aplicación que las declaró." -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Clase" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -233,11 +233,11 @@ msgstr "" "Mostrar las diferentes clases de dependencias. Las clases generalmente se " "dividen por lenguaje o por los tipos de archivos de la dependencia." -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "Estado" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -247,7 +247,7 @@ msgstr "" " las dependencias están instaladas y son de una versión correcta. \"Falso\" " "significa que faltan las dependencias o que existe una versión incorrecta." -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." @@ -255,7 +255,7 @@ msgstr "" "Las dependencias necesarias para un entorno pueden no ser necesarias para " "otro. Ejemplos de entornos: Producción, Desarrollo." -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Verificar actualizaciones" @@ -311,34 +311,41 @@ msgstr "La versión que está utilizando está obsoleta. La última versión es msgid "It is not possible to determine the latest version available." msgstr "No es posible determinar la última versión disponible." -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Su versión está al díá." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "Entradas para el grupo de dependencia: %s" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "Grupo %s no encontrado." -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "Grupos de dependencia" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "Grupo de dependencia y entrada: %(group)s, %(entry)s" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "Entrada %s no encontrada." -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Licencias de otros paquetes" diff --git a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po index cc1bb1447a..9b6f0dc8b0 100644 --- a/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" @@ -22,219 +22,219 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "برچسب" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "نام داخلی" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "توضیحات" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "نوع" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "نسخه" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "نام" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "هیچ یک" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "کلاس" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "بررسی برای به روز رسانی" @@ -286,34 +286,41 @@ msgstr "نسخه ای که استفاده می کنید قدیمی است. آخ msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "نسخه شما به روز است." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "مجوزهای دیگر بسته" diff --git a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.mo index 94ae08ac016771da7c07454643155e81b6829b96..f6d0b7955346c55cf48bd49201d78f308475695c 100644 GIT binary patch delta 2094 zcmZA1TWB0r9LMpqP14wlZ8mAWCibK@CN=4#u{PE1HPRv#DxuW}jStT5&L#tsndw|M zi4|5`@Wr6k)CWtch<1W^R94+?^Q|C8Ag9CG$^=IqS* zpZ%Sg{JHs~{>rzljjt(=AzC|a(=w%=z`jO4I9_Q|sufRS1D?a>IE(zL`P8>D%lVb` z{1ZIL`89kJJGf~DPU0#&j%$^wsF&!hX5cKY#|!ujUd6j{SF=)E@oAI-Cs8JN3;9#? z>G@@3LRCx0uc7ArYiz@RQ0{BFNvR2J$1~Jdr|1kYFu?NGU;%qEz%6(d<;IUuCc2KS zP5q1=_y^vB*_BG&jD5HpbI6~Xqokh0=W#E}gjbPk z)u(tXeuc6nzo+L-#3$c(pe(EhyRaW6xyMlozkr0Grg1Nx!ip69oQ@RwGQHpjl&F8f zJ2AtT$1)T^8GoIaOGYEK15m2_jm+N?(z3pkDcVjoVoC^d-h;4Szo%0$hqid|G~NDbAF>##Q+--q{deh?+W2&L|H zmi*tKbDDuKFh{Pk6|HQvOmqNq_!vszmr)9SfUAM_(fCL@CsT66sTT5%VYuYN4vQ0p;y5P#(g=xC4EZLbE8*S5bcX zyZ8_;pv>Dt46^kVgU-Wrwxt8dkTBG9D8KAgq_#SZvL%<0MJ zl>Bdzx#Xd%AM(cVmQ<2`+QdmeO&%IK1{O(PKUs_vX5q=PhfhgL9yHl15?4EE576pI zk`O1|>3~E%NRzGDk&ela>XP?=JDvM!5)=RY)JB>-Z1Nz=Yt}=Py_Nl3dTdQkWE*;E z$*YU|XmV^@MBS4r4_y5q#N?kE7JvtU?*Nb%C`u~MqG-d^cJ}_yH`;N8rwlJrM1FsktBHMHO^nR;s zIi4>Q8fw4gTW-;E3sZVySGBx6*D&&kSvHRp0^5(YW9I`ikX04E3D@z=BI}}#E(PAW zesuT{ix{=TD41fUMIDFfviaJLwlJ|S#cop8bnIx#sLrogpUIk0Va#?%b;)+D&@c== z^Zv@i#+Wyui}lq=$^2AO%Jh9SBfcy+rUb(R#;e&?&o)$KVYNB=1*Ti5XBX1(y*SYE zjqqG6iO;v8;ni)06Y#c|;vKlKd&qDJ0xZQi>bWG2V;|ndXV}90 zcD%r>n2sBmz$t9RIn;xTsDXkkpE;}&*JBLVVh^suAygL6Vj)f=o3g&SE((pa#h2V9CCfB3)L6QB1i0J=j3I50$A=)P!lA!rS;B zJHtyUkFafx(~F%rSVI0a@pU>h;VaYv-lBH?3pd~&XP8$(ziY;B>_W0{7f=hmf*Uc7 z%HTuP_%o;s{=`Q(k6Or`6gNwiEb7+J;x7Dx8n}$@D#bC>PU}zu9Y&q)QQVKiu04&c z)v~A!JVCuxFHkA}h@7<55?XMokq@1T9@5Hd2;J%~Vh5q~UM@(WyKRxf9l(G(D3!!&;xp0rXcV2B>w05GN2<0-t qq%YT--{a4HD~$Rk^NRX&SBozCbD8ize{L~4TGKO diff --git a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po index 09fc0300ef..f838158283 100644 --- a/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/fr/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" @@ -25,57 +25,57 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "Dépendances" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Libellé" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Nom interne" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Description" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Type" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "Autre données" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "Déclaré par" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Version" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "Environnement" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "Vérifier" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "Build" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -84,11 +84,11 @@ msgstr "" "utilisateurs finaux peuvent ignorer les dépendances manquantes dans cet " "environnement." -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "Développement" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -97,11 +97,11 @@ msgstr "" "dans cet environnement entraînera des problèmes et des erreurs lors d'une " "utilisation normale." -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "Production" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -111,142 +111,146 @@ msgstr "" "la fonctionnalité du code. Les dépendances dans cet environnement ne sont " "pas nécessaires pour une utilisation normale en production." -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "Test" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Nom" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "App" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "Besoin de spécifier au moins un: app_label ou module." -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "La dépendance \"%s\" est déjà enregistrée." -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "Installation du paquet: %s ..." -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "Déjà installé." -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "Complété." -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "Version installée et correcte" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "Version manquante ou incorrecte" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Aucun" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "Non spécifié" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " -msgstr "" +msgstr "Modification des fichiers ..." -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "Des exécutables appelés directement par le code." -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "Binaire" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" +"Les bibliothèques JavaScript sont téléchargées à partir du NPM et utilisé " +"pour les fonctionnalités front-end." -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "Téléchargement ..." -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "Vérification ..." -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "Extraction ..." -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "Paquets Python téléchargés depuis PyPI." -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "Python" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Polices téléchargées à partir de fonts.googleapis.com." -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "Google Font" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "Déclaré dans l'application" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." -msgstr "" +msgstr "Afficher les dépendances par l'application qui les a déclarées." -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Classe" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "État" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" +"Les dépendances requises pour un environnement peuvent ne pas l'être pour un" +" autre. Exemples d'environnements: production, développement." -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Vérifier les mises à jour" @@ -301,34 +305,41 @@ msgstr "La version que vous utilisez est obsolète. La dernière version est %s" msgid "It is not possible to determine the latest version available." msgstr "Il n'est pas possible de déterminer la dernière disponible" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Votre version est à jour" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "Entrées pour le groupe de dépendance: %s" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "Groupe %s introuvable." -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "Groupes de dépendance" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "Groupe de dépendance et entrée: %(group)s, %(entry)s" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "Entrée %s introuvable." -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Licences des bibliothèques tierces" diff --git a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po index cc8765467d..f85a1867cd 100644 --- a/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: molnars , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" @@ -22,219 +22,219 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Cimke" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Leírás" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Típus" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Verzió" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Név" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Semmi" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Osztály" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -286,34 +286,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "" diff --git a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po index 1bc27d308a..cf331c99ef 100644 --- a/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/id/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" @@ -22,219 +22,219 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Label" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Nama internal" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Deskripsi" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Tipe" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Nihil" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -286,34 +286,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "" diff --git a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po index 8d54edcfad..9306a80d37 100644 --- a/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Giovanni Tricarico , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" @@ -24,219 +24,219 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Etichetta" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Nome interno" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Descrizione " -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Tipo" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Versione" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Nome " -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Nessuno" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Classe" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Controlla aggiornamenti" @@ -288,34 +288,41 @@ msgstr "La versione che stai usando non è l'ultima. L'ultima versione è %s" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Sei alla versione più recente" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Licenze altri pacchetti" diff --git a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po index cd4b7a368c..11d5505d27 100644 --- a/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" @@ -21,47 +21,47 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "Atkarības" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Etiķete" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Iekšējais nosaukums" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Apraksts" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Tips" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "Citi dati" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "Deklarēja" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Versija" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "Vide" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "Pārbaudiet" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -69,11 +69,11 @@ msgstr "" "Vide, ko izmanto programmatūras izplatāmo pakešu veidošanai. Gala lietotāji " "var ignorēt trūkstošās atkarības šajā vidē." -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "Būvēt" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -81,11 +81,11 @@ msgstr "" "Vide, ko izstrādātāji izmanto, lai veiktu izmaiņas kodā. Gala lietotāji var " "ignorēt trūkstošās atkarības šajā vidē." -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "Attīstība" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -93,11 +93,11 @@ msgstr "" "Normāla vide gala lietotājiem. Trūkstošas atkarības šajā vidē radīs " "problēmas un kļūdas normālas lietošanas laikā." -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "Ražošana" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -107,69 +107,69 @@ msgstr "" "funkcionalitāti. Atšķirības šajā vidē nav nepieciešamas normālai ražošanas " "izmantošanai." -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "Testēšana" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Nosaukums" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "App" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "Nepieciešams norādīt vismaz vienu: app_label vai moduli." -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Atkarība \"%s\" jau ir reģistrēta." -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "Pakotnes instalēšana: %s ..." -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "Jau instalēta." -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "Pabeigts." -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "Instalēta un pareiza versija" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "Trūkst vai ir nepareiza versija" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Nav neviens" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "Nav precizēts" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "Notiek failu lāpīšana ..." -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "Izpildāms, ko tieši sauc par kodu." -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "Binārs" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -177,51 +177,51 @@ msgstr "" "JavaScript bibliotēkas lejupielādēja no NPM reģistra un tika izmantotas " "front-end funkcionalitātei." -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "Notiek lejupielāde ..." -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "Verificēšana ..." -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "Izvilkšana ..." -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "Python paketes lejupielādētas no PyPI." -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "Python" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Fonti, kas lejupielādēti no fonts.googleapis.com." -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "Google fonti" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "Paziņots lietotnē" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "Rādīt atkarības pēc lietotnēm, kas tās deklarēja." -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Klase" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -229,11 +229,11 @@ msgstr "" "Rādīt dažādu atkarību klases. Klases parasti tiek sadalītas pēc valodas vai " "atkarības faila veidiem." -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "Valsts" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -242,7 +242,7 @@ msgstr "" "Rādīt dažādos atkarību stāvokļus. True nozīmē, ka atkarības ir instalētas un" " ir pareizas. False nozīmē, ka trūkst atkarību vai ir nepareiza versija." -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." @@ -250,7 +250,7 @@ msgstr "" "Atkarības, kas nepieciešamas vienai videi, var nebūt nepieciešama citai. " "Vides paraugi: Produkcijas vide, Izstrādes vide." -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Meklēt atjauninājumus" @@ -305,34 +305,41 @@ msgstr "Lietotā versija ir novecojusi. Jaunākā versija ir %s" msgid "It is not possible to determine the latest version available." msgstr "Nav iespējams noteikt jaunāko pieejamo versiju." -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Jūsu versija ir atjaunināta." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "Ieraksti atkarības grupai: %s" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "Grupa %s nav atrasta." -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "Atkarības grupas" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "Atkarības grupa un ieraksts: %(group)s, %(entry)s" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "Ieraksts %s nav atrasts." -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Citas paketes licences" diff --git a/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po index ab1135930a..b5b685beb2 100644 --- a/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/nl_NL/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Lucas Weel , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" @@ -23,219 +23,219 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Label" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Omschrijving" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Soort" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Versie" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Naam" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Geen" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Klasse" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -287,34 +287,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Andere pakketlicensies" diff --git a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po index 5a8700a471..be1ac091b9 100644 --- a/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pl/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" @@ -24,219 +24,219 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Etykieta" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Nazwa wewnętrzna" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Opis" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Typ" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Wersja" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Nazwa" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Brak" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Klasa" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Sprawdź aktualizacje" @@ -288,34 +288,41 @@ msgstr "Ta wersja programu jest nieaktualna. Najświeższą wersją jest %s" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Wersja programu jest aktualna." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Pozostałe licencje" diff --git a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po index f3c712b508..c0a78f8fa2 100644 --- a/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Manuela Silva , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" @@ -23,219 +23,219 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Nome" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Descrição" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Versão" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Nome" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Nenhum" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -287,34 +287,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "" diff --git a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po index c7ff2329f8..34d698609e 100644 --- a/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" @@ -24,219 +24,219 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Rótulo" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Nome interno" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Descrição" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Tipo" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Versão" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Nome" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Nenhum" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "classe" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Buscar atualizações" @@ -289,34 +289,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "Não é possível determinar a última versão disponível." -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Sua versão está atualizada." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Licenças de outros pacotes" diff --git a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po index 183b618841..8fbfe9a39c 100644 --- a/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ro_RO/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" @@ -24,47 +24,47 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "Dependenţe" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Conținut etichetă" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Nume intern" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Descriere" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Tip" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "Alte date" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "Declarată de" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Versiune" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "Mediu inconjurator" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "Verificare" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." @@ -72,11 +72,11 @@ msgstr "" "Mediul utilizat pentru a construi pachete distribuite ale software-ului. " "Utilizatorii finali pot ignora dependențele care lipsesc în acest mediu." -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "Build" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." @@ -84,11 +84,11 @@ msgstr "" "Mediul fost folosit de dezvoltatori pentru a face schimbări de cod. " "Utilizatorii finali pot ignora dependențele care lipsesc în acest mediu." -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "Dezvoltare" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." @@ -96,11 +96,11 @@ msgstr "" "Mediu normal pentru utilizatorii finali. O dependență lipsă în acest mediu " "va duce la probleme și erori în timpul utilizării normale." -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "Producție" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " @@ -110,69 +110,69 @@ msgstr "" "codului. Dependențele în acest mediu nu sunt necesare pentru utilizarea " "normală în producție." -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "Testare" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Nume" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "App" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "Trebuie să specificați cel puțin una: app_label sau modul." -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "Dependența \"%s\" deja înregistrată." -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "Instalarea pachetului: %s ..." -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "Deja instalat." -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "Complet." -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "Versiunea instalată și corectă" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "Versiune lipsă sau incorectă" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Nici unul" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "Nespecificat" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "Patching fișiere ..." -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "Executabile care sunt apelate direct de cod." -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "Binar" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." @@ -180,51 +180,51 @@ msgstr "" "Bibliotecile JavaScript descărcate din registrul NPM și folosite la " "funcționalitatea front-end." -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "JavaScript" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "Descărcare..." -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "Se verifică ..." -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "Se extrage ..." -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "Pachetele Python descărcate de la PyPI." -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "Python" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "Fonturi descărcate de la fonts.googleapis.com." -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "Font Google" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "Declarate în aplicație" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "Afișați dependențele după aplicația care le-a declarat." -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Clasă" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." @@ -232,11 +232,11 @@ msgstr "" "Arătați diferitele clase de dependențe. Clasele sunt de obicei împărțite în " "funcție de limbă sau de tipurile de fișiere ale dependenței." -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "Stare" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " @@ -246,7 +246,7 @@ msgstr "" "sunt instalate și că au o versiune corectă. Fals înseamnă că lipsesc " "dependențele sau există o versiune incorectă." -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." @@ -254,7 +254,7 @@ msgstr "" "Este posibil ca dependențele necesare pentru un mediu să nu fie necesare " "pentru altul. Exemplu de medii: producție, dezvoltare." -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Verifică pentru actualizări" @@ -310,34 +310,41 @@ msgstr "Versiunea pe care o utilizați este depășită. Ultima versiune este %s msgid "It is not possible to determine the latest version available." msgstr "Nu este posibil să se determine cea mai recentă versiune disponibilă." -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "Versiunea dvs. este actualizată." -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "Intrările pentru grupul de dependență: %s" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "Grupul %s nu a fost găsit." -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "Grupuri de dependență" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "Grupul de dependență și intrările aferente: %(group)s, %(entry)s" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "Intrarea %s nu a fost găsită." -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Licențe pentru alte pachete" diff --git a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po index 86991c7176..00291ff8df 100644 --- a/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/ru/LC_MESSAGES/django.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: lilo.panic, 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" @@ -27,219 +27,219 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Ярлык" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Внутреннее имя" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Описание" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Тип" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Версия" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Название" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Ничего" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Класс" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "Проверить обновления" @@ -291,34 +291,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "Лицензии других пакетов" diff --git a/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po index d823e8f6e8..f79974ef76 100644 --- a/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: kontrabant , 2019\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" @@ -21,219 +21,219 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Oznaka" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Opis" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Različica" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Ime" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Brez" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "Razred" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -285,34 +285,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "" diff --git a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po index 0bb545d7b7..d2aa66e226 100644 --- a/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/tr_TR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: serhatcan77 , 2019\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" @@ -22,219 +22,219 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "Etiket" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "Dahili adı" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Açıklama" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "Tür" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Versiyon" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "İsim" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "Yok" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -286,34 +286,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "" diff --git a/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po index 38b6fe99e4..4246cd4fec 100644 --- a/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/vi_VN/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" @@ -22,219 +22,219 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "Mô tả" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "Phiên bản" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "Tên" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "None" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "" @@ -286,34 +286,41 @@ msgstr "" msgid "It is not possible to determine the latest version available." msgstr "" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "" diff --git a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po index e95b20382a..0789489b91 100644 --- a/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" @@ -21,219 +21,219 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:27 links.py:43 permissions.py:7 +#: apps.py:26 links.py:43 permissions.py:7 msgid "Dependencies" msgstr "" -#: apps.py:33 apps.py:68 apps.py:76 +#: apps.py:34 apps.py:69 apps.py:77 msgid "Label" msgstr "标签" -#: apps.py:36 +#: apps.py:37 msgid "Internal name" msgstr "内部名称" -#: apps.py:39 apps.py:71 apps.py:80 +#: apps.py:40 apps.py:72 apps.py:81 msgid "Description" msgstr "描述" -#: apps.py:43 classes.py:172 +#: apps.py:44 classes.py:186 msgid "Type" msgstr "类型" -#: apps.py:47 classes.py:174 +#: apps.py:48 classes.py:188 msgid "Other data" msgstr "" -#: apps.py:51 +#: apps.py:52 msgid "Declared by" msgstr "" -#: apps.py:55 classes.py:172 +#: apps.py:56 classes.py:186 msgid "Version" msgstr "版本" -#: apps.py:59 classes.py:173 classes.py:813 +#: apps.py:60 classes.py:187 classes.py:827 msgid "Environment" msgstr "" -#: apps.py:63 classes.py:174 +#: apps.py:64 classes.py:188 msgid "Check" msgstr "" -#: classes.py:65 +#: classes.py:67 msgid "" "Environment used for building distributable packages of the software. End " "users can ignore missing dependencies under this environment." msgstr "" -#: classes.py:68 +#: classes.py:70 msgid "Build" msgstr "" -#: classes.py:72 +#: classes.py:74 msgid "" "Environment used for developers to make code changes. End users can ignore " "missing dependencies under this environment." msgstr "" -#: classes.py:74 +#: classes.py:76 msgid "Development" msgstr "" -#: classes.py:78 +#: classes.py:80 msgid "" "Normal environment for end users. A missing dependency under this " "environment will result in issues and errors during normal use." msgstr "" -#: classes.py:80 +#: classes.py:82 msgid "Production" msgstr "" -#: classes.py:84 +#: classes.py:86 msgid "" "Environment used running the test suit to verify the functionality of the " "code. Dependencies in this environment are not needed for normal production " "usage." msgstr "" -#: classes.py:87 +#: classes.py:89 msgid "Testing" msgstr "" -#: classes.py:172 +#: classes.py:186 msgid "Name" msgstr "名称" -#: classes.py:173 +#: classes.py:187 msgid "App" msgstr "" -#: classes.py:274 +#: classes.py:288 msgid "Need to specify at least one: app_label or module." msgstr "" -#: classes.py:279 +#: classes.py:293 #, python-format msgid "Dependency \"%s\" already registered." msgstr "" -#: classes.py:305 +#: classes.py:319 #, python-format msgid "Installing package: %s... " msgstr "" -#: classes.py:310 +#: classes.py:324 msgid "Already installed." msgstr "" -#: classes.py:313 classes.py:318 classes.py:322 +#: classes.py:327 classes.py:332 classes.py:336 msgid "Complete." msgstr "" -#: classes.py:348 +#: classes.py:362 msgid "Installed and correct version" msgstr "" -#: classes.py:350 +#: classes.py:364 msgid "Missing or incorrect version" msgstr "" -#: classes.py:379 +#: classes.py:393 msgid "None" msgstr "没有" -#: classes.py:388 +#: classes.py:402 msgid "Not specified" msgstr "" -#: classes.py:405 +#: classes.py:419 msgid "Patching files... " msgstr "" -#: classes.py:444 +#: classes.py:458 msgid "Executables that are called directly by the code." msgstr "" -#: classes.py:446 +#: classes.py:460 msgid "Binary" msgstr "" -#: classes.py:463 +#: classes.py:477 msgid "" "JavaScript libraries downloaded the from NPM registry and used for front-end" " functionality." msgstr "" -#: classes.py:466 +#: classes.py:480 msgid "JavaScript" msgstr "" -#: classes.py:500 classes.py:733 +#: classes.py:514 classes.py:747 msgid "Downloading... " msgstr "" -#: classes.py:503 +#: classes.py:517 msgid "Verifying... " msgstr "" -#: classes.py:506 classes.py:736 +#: classes.py:520 classes.py:750 msgid "Extracting... " msgstr "" -#: classes.py:685 +#: classes.py:699 msgid "Python packages downloaded from PyPI." msgstr "" -#: classes.py:687 +#: classes.py:701 msgid "Python" msgstr "" -#: classes.py:714 +#: classes.py:728 msgid "Fonts downloaded from fonts.googleapis.com." msgstr "" -#: classes.py:716 +#: classes.py:730 msgid "Google font" msgstr "" -#: classes.py:795 +#: classes.py:809 msgid "Declared in app" msgstr "" -#: classes.py:796 +#: classes.py:810 msgid "Show dependencies by the app that declared them." msgstr "" -#: classes.py:800 +#: classes.py:814 msgid "Class" msgstr "" -#: classes.py:801 +#: classes.py:815 msgid "" "Show the different classes of dependencies. Classes are usually divided by " "language or the file types of the dependency." msgstr "" -#: classes.py:806 +#: classes.py:820 msgid "State" msgstr "" -#: classes.py:807 +#: classes.py:821 msgid "" "Show the different states of the dependencies. True means that the " "dependencies is installed and is of a correct version. False means the " "dependencies is missing or an incorrect version is present." msgstr "" -#: classes.py:814 +#: classes.py:828 msgid "" "Dependencies required for an environment might not be required for another. " "Example environments: Production, Development." msgstr "" -#: links.py:11 views.py:35 +#: links.py:11 views.py:41 msgid "Check for updates" msgstr "检查更新" @@ -285,34 +285,41 @@ msgstr "您使用的版本已过时。最新版本为%s" msgid "It is not possible to determine the latest version available." msgstr "无法确定最新版本。" -#: views.py:32 +#: views.py:33 +#, python-format +msgid "" +"Unexpected error trying to determine the latest version available. Make sure" +" your installation has a connection to the internet; %s" +msgstr "" + +#: views.py:38 msgid "Your version is up-to-date." msgstr "您的版本是最新的。" -#: views.py:49 +#: views.py:55 #, python-format msgid "Entries for dependency group: %s" msgstr "" -#: views.py:62 views.py:107 +#: views.py:68 views.py:113 #, python-format msgid "Group %s not found." msgstr "" -#: views.py:75 +#: views.py:81 msgid "Dependency groups" msgstr "" -#: views.py:95 +#: views.py:101 #, python-format msgid "Dependency group and entry: %(group)s, %(entry)s" msgstr "" -#: views.py:119 +#: views.py:125 #, python-format msgid "Entry %s not found." msgstr "" -#: views.py:137 +#: views.py:143 msgid "Other packages licenses" msgstr "其他软件包许可证" 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 9a6386459a..eb3e609235 100644 --- a/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -18,35 +18,35 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Key ID" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "النوع" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "" diff --git a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po index 72d733b599..cb5540f33e 100644 --- a/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-10-16 14:38+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -19,35 +19,35 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Джанго GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Ключ ID" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Тип" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Дата на създаване" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Няма срок" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Срок" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Дължина" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "Потребител №" 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 9d7688596a..95e95c5c4c 100644 --- a/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -19,35 +19,35 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "ID ključa" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Tip" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Datum kreiranja" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Ne ističe" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Rok upotrebe" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Dužina" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "ID kosrisnika" diff --git a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po index 7f94f00118..334dc94462 100644 --- a/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-10-15 17:41+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,35 +18,35 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "ID klíče" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Typ" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Datum vytvoření" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Bez vypršení platnosti" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Datum vypršení platnosti" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Délka" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "uživatelské ID" diff --git a/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po index d49fcdc315..44d06c9671 100644 --- a/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -17,35 +17,35 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Type" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "" 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 24c25fcb72..bb3aaee2ff 100644 --- a/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/de_DE/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-19 09:33+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -23,35 +23,35 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Schlüssel-ID" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Typ" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Erstellungsdatum" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Ohne Ablaufdatum" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Ablaufdatum" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Länge" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "Benutzer-ID" diff --git a/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po index 3a736a26f8..6b992a83cf 100644 --- a/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,35 +17,35 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Αναγνωριστικό κλειδιού" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Τύπος" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Ημερομηνία δημιουργίας" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Χωρίς λήξη" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Ημερομηνία λήξης" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Μήκος" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "Αναγνωριστικό χρήστη" diff --git a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po index 990741af39..eb0104f591 100644 --- a/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,35 +17,35 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "" 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 64b0ddd668..1c29900474 100644 --- a/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-03 05:43+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -20,35 +20,35 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Identificador de llave" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Tipo" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Fecha de creación" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "No expira" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Fecha de expiración" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Tamaño" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "ID de usuario" 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 a30c4ccd8c..a2a75806b6 100644 --- a/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -19,35 +19,35 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "شناسه کلید" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "نوع" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "تاریخ ایجاد" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "بدون انقضا" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "تاریخ انقضا" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "طول" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "شناسه کاربری" 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 d06900f324..4970fe7cc6 100644 --- a/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-05 02:55+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -22,35 +22,35 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "ID de la clé" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Type" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Date de création" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Pas d'expiration" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Date d'expiration" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Durée" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "ID Utilisateur" diff --git a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po index 5828df2fb9..18f175290b 100644 --- a/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,35 +18,35 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Kulcs ID" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Típus" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "Felhasználói azonosító" 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 9affd76018..baa98a32b3 100644 --- a/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-12 17:32+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -17,35 +17,35 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Tipe" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "" 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 ee3c51a474..cc118db2de 100644 --- a/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -19,35 +19,35 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "chiave ID" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Tipo" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Data di creazione" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Nessuna scadenza" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Data scadenza" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Lunghezza" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "User ID" diff --git a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po index 52bde48de8..46f487713d 100644 --- a/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-31 12:03+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,35 +18,35 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Atslēgas ID" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Tips" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Izveidošanas datums" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Nav beidzies derīguma termiņš" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Derīguma termiņš" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Garums" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "Lietotāja ID" diff --git a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po index 4a1bdc2bd3..d69b733e55 100644 --- a/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -19,35 +19,35 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Sleutel-ID" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Type" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Aanmaakdatum" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Geen verloop" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Verloopdatu" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Lengte" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "Gebruikers-ID" 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 f4987652b1..d43aab23b2 100644 --- a/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -20,35 +20,35 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "ID klucza" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Typ" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Data utworzenia" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Bez wygaśnięcia" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Długość" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "ID użytkownika" 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 7884f8df9a..44dafa74cb 100644 --- a/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -19,35 +19,35 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "ID da chave" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "" diff --git a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po index 3289171595..dbdc893506 100644 --- a/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -21,35 +21,35 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "ID da chave" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Tipo" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Data de criação" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Sem expiração" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Data de expiração" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Largura" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "ID de usuário" 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 6a2403a8d3..6fea21914c 100644 --- a/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -19,35 +19,35 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "ID cheie" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Tip" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Data creării" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Fără dată de expirare" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Data expirării" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Lungime" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "Identificatorul utilizatorului" diff --git a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po index 5cc178f77c..4efb2f1589 100644 --- a/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -18,35 +18,35 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "ID ключа" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Тип" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Дата создания" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Не устаревает" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Дата окончания" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Длина" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "Идентификатор пользователя" 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 76fbcdd55a..43cc1d5d9e 100644 --- a/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -17,35 +17,35 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "" diff --git a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po index a9f438fb5d..b5ec762328 100644 --- a/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,35 +19,35 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Anahtar Kimliği" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "Tip" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "Oluşturulma tarihi" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "Süresiz" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "Son kullanma tarihi" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "Uzunluk" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "Kullanıcı adı" 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 ab7d27412a..b6639e0005 100644 --- a/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -18,35 +18,35 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "Key ID" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "" diff --git a/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po b/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po index c0e4c1f00f..99f19e25bf 100644 --- a/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/django_gpg/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-04-14 03:23+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,35 +18,35 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:33 +#: apps.py:32 msgid "Django GPG" msgstr "Django GPG" -#: apps.py:48 apps.py:51 forms.py:17 +#: apps.py:47 apps.py:50 forms.py:17 msgid "Key ID" msgstr "密钥ID" -#: apps.py:52 forms.py:34 models.py:55 +#: apps.py:51 forms.py:34 models.py:55 msgid "Type" msgstr "类型" -#: apps.py:54 forms.py:23 models.py:36 +#: apps.py:53 forms.py:23 models.py:36 msgid "Creation date" msgstr "创立日期" -#: apps.py:57 +#: apps.py:56 msgid "No expiration" msgstr "没有过期" -#: apps.py:58 forms.py:27 models.py:40 +#: apps.py:57 forms.py:27 models.py:40 msgid "Expiration date" msgstr "过期日期" -#: apps.py:60 forms.py:32 models.py:47 +#: apps.py:59 forms.py:32 models.py:47 msgid "Length" msgstr "长度" -#: apps.py:63 forms.py:19 models.py:52 +#: apps.py:62 forms.py:19 models.py:52 msgid "User ID" msgstr "用户ID" 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 1e50620999..c908f3cb08 100644 --- a/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Mohammed ALDOUB \n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po index 5511eccf6b..8cfffb5642 100644 --- a/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-10-16 14:48+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po index 7bd0135401..b9d105b4d4 100644 --- a/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: www.ping.ba \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po index e9b05620e3..66bfc093a1 100644 --- a/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-10-15 16:58+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po index 48200c7fe5..aa3f461693 100644 --- a/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po index 7de68157c1..e449978897 100644 --- a/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-26 21:45+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po index 1f6aaff10a..9b84b9c9e8 100644 --- a/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po index 20dcf7cbc7..7cdeda1842 100644 --- a/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po index c09b2f6a16..d0824bb78c 100644 --- a/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 06:38+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po index 29aa9fedd3..86405fa4db 100644 --- a/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po index fb4bc75ffc..bda7b34efa 100644 --- a/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 13:23+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po index 9c09ef80ed..bdde98aad7 100644 --- a/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: molnars \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po index f79fb832e8..0cc846b535 100644 --- a/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po index 06146591cd..4e2fd4e42d 100644 --- a/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-28 11:56+0000\n" "Last-Translator: Daniele Bortoluzzi \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po index bc9f5743f3..62d473c223 100644 --- a/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-31 12:03+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po index 1a620b8c51..834d257f24 100644 --- a/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Johan Braeken\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po index 64b8206794..7725ee7718 100644 --- a/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Wojciech Warczakowski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po index 491cf8e308..545e739704 100644 --- a/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Emerson Soares \n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po index 6baa4bab1d..302b5f5607 100644 --- a/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/pt_BR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po index e45d9980b8..34e29754d8 100644 --- a/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 18:46+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po index 53a5155f21..0a08f2b832 100644 --- a/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Sergey Glita \n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po index ab18d2505f..1246fc6f26 100644 --- a/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po index 4a9d0de13a..941aeda412 100644 --- a/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po index 3b3da2ae37..d70e2d2624 100644 --- a/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: Trung Phan Minh \n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po index fdd874e38b..03ce10937c 100644 --- a/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_comments/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-05-17 05:50+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po index 15ebf6221b..9c43c19626 100644 --- a/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po index 389dc88ef2..2d9aa4a3d4 100644 --- a/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-10-16 15:29+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" 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 f49c2e4600..afdc846505 100644 --- a/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po index 66bd75ad80..625f7bdcc1 100644 --- a/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-10-18 11:48+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po index 310d1344be..2a041ab204 100644 --- a/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_indexing/locale/de_DE/LC_MESSAGES/django.mo index 3564e5c22fd3d0b81c7abbb49311e7bd362fdf47..b83bfb4bc80daff077c7126de9f61da97f92901b 100644 GIT binary patch delta 1897 zcmZwIOKeP09LMoLs#>MAv|3azHMH8HL%jy$T~(?cwJ0G*RYJgC$DGN3hf{2ocg&-O<5*9?lLWIQkcjqoFob*4Rb8qiG=YRg^O#3u)Wv1Jio^aA= z%ZQ=G#qMVHSk#jb+Pg%vh4>zKVPP+`EWC_qcn=rgb1cQ|B(pkPhnd)cdcF($;BOp) z$;oDY&0Gu6VQia#gD{MGVL9eu9cExFhVc?A(RY}Oe^80!^fpVyaj54bI0CDXN2~=e z;66;iyc9j>n&s2cixC`-706<&5f5MsF2z5nqAXz8n6Wqb)%%Xh3ia~dl2`d4pYiNvveGd zD=_SP9Itcz0ac+B4CW<-O5{-n^>^sJ;5o(EW+1g_WbWbS3IAu0~a8J(9RJDyduHUu*S?i0OnXqwV-#)87_Xd%+pBBBGQ~1!fRah*`u` zLXGXUabAxKA;-p+5bTo8By_mcR5>;Njd;!Bb1pHKSVoi+BZ-9sh1B}vZ8oUfYLf`I z&)cs6>hHL|1>QkLeI=(6+V3%hT3H;c#1Nq~HJ;Gf(E;^ZAit(@TSIff24{1_hT0v@ z*7nzl9Z3mcClG5t-7l+qX($vdp5lax!zCq!#kAgwqp{{-Ra3Mfwk6u!*c5guqD|X3 nH#lX{Sk0!o+9qduy?0~QCjZ9R`r1hQ`?S`S_^8!6Kf3(|HOH|v delta 1807 zcmXxkYfQ~?9LMo*bWul2>4MS;hwJlH@XMhPC9)Y%1|DWIW`}>{KRra*h|2{7Cj8Rq- zDa3^lW;<06;~(W=xY;s%g!?f*!Ymn2;8^U!rPzxV7&0o@zY-I9?m@MGjHB^0PQ)RM zHuGC_q#0w|L`=fTs19D7f@?7W_o5fuQ44*DX*h^lNLZBF7)(O7&&0`Cf;6#Oyn+oF ziY}Mh`ORXfsADFk;~Zo&wjNut7L}brR8k7r1}nD`RKF_J&NevD^%%qR9*oCU$4&>2+5-DKuxq8wZK-#HdJO$A%E84 z*yVT&{Yu4sDqYx*O1+QeYlm&9opd^0L$&X9yo1wtzKdGecie{|vB69pz*3$sA|Kg1 zWRLa(HU6Ji@~@OfaDZC*3{1sb)PO6nImB!$HuC&B&g?Ljvt3=HC&(-Nf@|@w`2i0Q|aY}QrV9a@Fl9lPt3$v@~?^Jq6e!`{SF{&v*Sop zyM&sc2erU^I2}Kr+DCH3dvF4B5AB(sif;28)JlJ&I=DCo-P!^?hoxA9uTYsP7#}=S zFRI@%=eY)z+D6nu_M;{~hH7^nwcwkmcK$vp`rbZ6UBX1RpGV3kp*pN)8(PpdRL6EC zt9BXZU=Q-euy4-$U#OkA*p(KVh`NL+s0>X(u9+1hb|HBXsHeKR`ui{uOn*L(_sg zjzqoBM-mcPBtMQuq5?&OO?B$bWlNm;Vw^>2Q40uVtCUbthKEZwm1O3(6-1fywglaT zcD#yU?!eD41WEz_ml8$9JYpd+Tu5BtC^AvMe4K>k61v#BODeh(Dj7k7@0F&}rx%9B z`<0lP#B8FNs3vr3DoVEUqoSLjTcN8pT;>i}Pzl%Vs2~anl}bWCXF5buZ7YfSgi02X zucmoa()ET?MR, 2015-2016 +# Marvin Haschker , 2019 # Mathias Behrle , 2019 # Mathias Behrle , 2014 # Robin Schubert , 2019 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" -"PO-Revision-Date: 2019-08-26 01:02+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" +"PO-Revision-Date: 2019-11-08 10:44+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -297,7 +298,7 @@ msgstr "Keine Indizes vorhanden." #: views.py:161 #, python-format msgid "Rebuild index: %s" -msgstr "" +msgstr "Indices wiederaufbauen: %s" #: views.py:191 msgid "Available document types" diff --git a/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po index 1beff38720..8e27951585 100644 --- a/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po index 08e9432d74..503b6cac76 100644 --- a/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po index 15f1aa0062..e97bd1cb16 100644 --- a/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-09-24 21:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" 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 81bcce3e91..50eb46948c 100644 --- a/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "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.po b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po index 42781d6b94..2422c3e313 100644 --- a/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po index 36615bdabc..3148d0b876 100644 --- a/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po index 88ba82c9b5..7e5cf4c94d 100644 --- a/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po index 07da4f870a..224366947b 100644 --- a/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/it/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-28 11:43+0000\n" "Last-Translator: Daniele Bortoluzzi \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po index abec67d502..8e0f6f7dbb 100644 --- a/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" 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 699ad95e8f..6c9648b8df 100644 --- a/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po index aaf47ae978..62357938f3 100644 --- a/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po index 40f144eb6f..8d5b1722b9 100644 --- a/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po index 69970f3f21..40a35d80d7 100644 --- a/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po index 38d925f57c..abe0986c28 100644 --- a/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-09-03 08:35+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" 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 a355c3fc0a..f57c26b20a 100644 --- a/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po index 51e1f39046..5f1b12bbcf 100644 --- a/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po index 41650a0567..0e5cd50d0f 100644 --- a/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po index 3afc86ce18..3b12a9c6e2 100644 --- a/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po index 611a20dc72..0827911011 100644 --- a/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_indexing/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:35-0400\n" "PO-Revision-Date: 2019-08-26 01:02+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po index 1d71f0b6c0..24625ad8cc 100644 --- a/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ar/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mohammed ALDOUB , 2018\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" @@ -22,15 +22,15 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "المحتوى" diff --git a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po index 0bd6aa325c..970d5a4b3e 100644 --- a/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/bg/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" @@ -22,15 +22,15 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Разбор на документи" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Резултат" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Съдържание" diff --git a/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po index c4d986a7ca..79e887b097 100644 --- a/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/bs_BA/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" @@ -23,15 +23,15 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Gramatička analiza dokumenta" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Rezultat" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Sadržaj" diff --git a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po index 64294f7547..6fac1a8b49 100644 --- a/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" @@ -21,15 +21,15 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Analýza dokumentů" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Výsledek" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Obsah" diff --git a/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po index 7bd2f90b54..12e67ae7a2 100644 --- a/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" @@ -21,15 +21,15 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Resultat" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Indhold" diff --git a/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.mo index 01c316ecb55e621044849d47477e5a04e9357964..0961a3ce7f2e6d9785866ca95f4c1bcaf71bd6af 100644 GIT binary patch delta 1446 zcmbW$OGs2v9LMpaj#*|pO%JuKu9~B!qe2gQ7zS!65rq^%n;d3t-f$i^bH_H)Af!PE z5#l0{S` zM7mHFxQMDy6qWcGs*(>dtFxHl!NJ#9fdRI~Z<)Hh?O4xyCu)2U`P7V{h4--zpW|*^ z#3o$H`xA8}K_(x?Zq&F_LH$+YCv=>|S9ly(F@t{6sB&7|pp;=aJ&m940^ax^zp zobuJCM(-r7zHmC?4BIKIGagpQ1t;Ip7PoUXrH>1qBc4+k^hrP7v{yjxI*fJ-jIYaipvo=pkPS2G!)ood8)9(-28!P0N I%NBgU0K}HpVE_OC delta 1087 zcmXxjJ!q3b9LMo%jnP_7Y+7GxY<#pPX_~ectZ3CrPzn}xh~QGhn)Hb@U=m1^rGr7R zY6TT6St^K|gKnW9=vF~Dr{W-r3Jzj7angd{-{tYhJ)e6?a`*q=J@weV-rDDouWl%V z)V6XJJMbv>;e=-ymHNkc5MO%ZpHP|flddBe z#>1G#D$b*h`VV$vN09t$=Sg;<9Z#TAl|~0$BwJ=4C-H$d{{zeP|Kc!~2y+CVq83<1 zW$Gth#7?5<#cN2SO+VG4>i*f3si}zgKO2#E`R#qsoU))hp^K>7OM>hr+ gbI!>^#`d$R!szT!Hb2+!w?AxM3nvj6}9 diff --git a/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po index 1d8f37bd1c..5bb0f56274 100644 --- a/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/de_DE/LC_MESSAGES/django.po @@ -8,15 +8,16 @@ # Berny , 2018 # Robin Schubert , 2019 # Mathias Behrle , 2019 +# Marvin Haschker , 2019 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" -"Last-Translator: Mathias Behrle , 2019\n" +"Last-Translator: Marvin Haschker , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,15 +25,15 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Dokument parsen" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Ergebnis" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Inhalt" @@ -45,7 +46,7 @@ msgstr "" #: events.py:12 msgid "Document parsed content deleted" -msgstr "" +msgstr "OCR-Inhalt des Dokumentes gelöscht" #: events.py:16 msgid "Document version submitted for parsing" @@ -66,7 +67,7 @@ msgstr "Inhalte" #: links.py:22 links.py:27 msgid "Delete parsed content" -msgstr "" +msgstr "OCR-Inhalt löschen" #: links.py:39 links.py:77 views.py:225 msgid "Parsing errors" @@ -183,8 +184,8 @@ msgstr "" #: views.py:37 msgid "Delete the parsed content of the selected document?" msgid_plural "Delete the parsed content of the selected documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Den OCR-Inhalt des auswählten Dokumentes löschen?" +msgstr[1] "Den OCR-Inhalt der ausgewählten Dokumente löschen?" #: views.py:71 #, python-format diff --git a/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po index 99ca585d30..a0bf0bd097 100644 --- a/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/el/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" @@ -22,15 +22,15 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Ανάλυση εγγράφου" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Αποτέλεσμα" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Περιεχόμενο" diff --git a/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po index f2873fb4c8..da1556c539 100644 --- a/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,15 +18,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "" diff --git a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po index 965800e59a..aa588c4960 100644 --- a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" @@ -21,15 +21,15 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Análisis de documentos" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Resultado" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Contenido" diff --git a/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po index 6067a387c5..1d75f09235 100644 --- a/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Mehdi Amani , 2018\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" @@ -22,15 +22,15 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "تجزیه و تحلیل سند" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "جواب" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "محتوا" diff --git a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po index 657abb5c14..74dfeba977 100644 --- a/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/fr/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" @@ -25,15 +25,15 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Analyse de document" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Résultat" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Contenu" diff --git a/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po index 38f141c104..f46cafaf8a 100644 --- a/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: molnars , 2018\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" @@ -22,15 +22,15 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "dokumentum értelmezés" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Eredmény" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Tartalom" diff --git a/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po index 0eb675f343..c9afd83eee 100644 --- a/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/id/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" @@ -22,15 +22,15 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Isi" diff --git a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po index b9e44fce04..272c971f5b 100644 --- a/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/it/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Daniele Bortoluzzi , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" @@ -25,15 +25,15 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Analisi del documento" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Risultato" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Contenuto " diff --git a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po index 4ed51641ef..b38668590e 100644 --- a/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" @@ -21,15 +21,15 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Dokumentu analīze" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Rezultāts" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Saturs" diff --git a/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po index 588be33ce4..a851b45605 100644 --- a/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/nl_NL/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Lucas Weel , 2018\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" @@ -24,15 +24,15 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Resultaat" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Inhoud" diff --git a/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po index e52d90bc26..9f3777a24c 100644 --- a/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pl/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Wojciech Warczakowski , 2018\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" @@ -23,15 +23,15 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Wynik" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Zawartość" diff --git a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po index a2363e4bc0..9efd32df7c 100644 --- a/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pt/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Emerson Soares , 2018\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" @@ -22,15 +22,15 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Conteúdo" diff --git a/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po index 6be072c6ee..5687eb0a66 100644 --- a/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/pt_BR/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: José Samuel Facundo da Silva , 2018\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" @@ -24,15 +24,15 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Análise de documentos" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "resultado" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Conteúdo" diff --git a/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po index 84eb0be525..425659b9f3 100644 --- a/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ro_RO/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" @@ -24,15 +24,15 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "Analiza documentelor" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Rezultat" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Conținut" diff --git a/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po index f435329bd3..e40dd38ddd 100644 --- a/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/ru/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: lilo.panic, 2018\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" @@ -23,15 +23,15 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Результат" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Содержимое" diff --git a/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po index ca85100f39..14c1531729 100644 --- a/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: kontrabant , 2018\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" @@ -21,15 +21,15 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Vsebina" diff --git a/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po index a48acfdd40..7da2ab0ad0 100644 --- a/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/tr_TR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: serhatcan77 , 2018\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" @@ -21,15 +21,15 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "Sonuç" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "İçerik" diff --git a/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po index 9206f1bd30..58e21fdde6 100644 --- a/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/vi_VN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: Trung Phan Minh , 2018\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" @@ -21,15 +21,15 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "Nội dung" diff --git a/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po index 0fdc1cb00c..ebf84f43b3 100644 --- a/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-25 00:49+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" @@ -21,15 +21,15 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:57 events.py:8 permissions.py:8 settings.py:7 +#: apps.py:56 events.py:8 permissions.py:8 settings.py:7 msgid "Document parsing" msgstr "文档解析" -#: apps.py:131 models.py:78 +#: apps.py:130 models.py:78 msgid "Result" msgstr "结果" -#: apps.py:136 apps.py:140 links.py:16 links.py:33 models.py:27 +#: apps.py:135 apps.py:139 links.py:16 links.py:33 models.py:27 msgid "Content" msgstr "内容" 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 ea1a451f51..1e31319f4d 100644 --- a/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po index 2a02db6211..70846aff08 100644 --- a/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-16 16:25+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po index 63d42f4677..e468c9582a 100644 --- a/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/bs_BA/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po index 4d835e2ca9..ec51334397 100644 --- a/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-15 17:41+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po index 22a7bf09e3..3d5684dde1 100644 --- a/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po index 463020de58..2d9a192192 100644 --- a/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-05-08 22:16+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po index 96305851cd..7ea3a6c657 100644 --- a/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po index 155cdaee36..29b6b73f9e 100644 --- a/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po index 8cf19797f8..918c318421 100644 --- a/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-30 16:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po index 026593deee..b3f650cfe9 100644 --- a/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po index 203f83e9c9..307d4c98d8 100644 --- a/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-05-17 12:04+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po index 45821e3f16..9b48b0a6e0 100644 --- a/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po index 2e22a81778..8cbebf753f 100644 --- a/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-05-12 17:54+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po index 4c6cad8588..7786de35aa 100644 --- a/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-08-28 12:12+0000\n" "Last-Translator: Daniele Bortoluzzi \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po index 8f8351b411..10939a3591 100644 --- a/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-27 13:01+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po index a2cf4fac61..9a4a89ef6d 100644 --- a/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po index fca2bb10ab..ef53bbc700 100644 --- a/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po index 854f49eade..93a7258d2a 100644 --- a/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po index e9f68dbfb7..7815b2fdd3 100644 --- a/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-27 00:24+0000\n" "Last-Translator: Rodrigo de Almeida Sottomaior Macedo \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po index 6202770020..f2f63b4f06 100644 --- a/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-05-02 05:17+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po index d38c25d67b..bef4791f6f 100644 --- a/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/ru/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po index dfc96c9e56..5894daf639 100644 --- a/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po index ebec211063..2cb3632397 100644 --- a/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po index a3e300cf2e..fa276cd35a 100644 --- a/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po index 799c4aa0ec..41d91c8bee 100644 --- a/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_signatures/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 02:59-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ar/LC_MESSAGES/django.mo index 73cc1592d74b541a186a204ca4a61a355fdd7f6b..fa29ee9a0e53e17f1f7a29ca24048dede186cc2b 100644 GIT binary patch delta 24 gcmdnNzJq=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "لا شيء" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "مستخدم" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "تعليق" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "العنوان" @@ -206,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "" @@ -266,75 +266,79 @@ msgstr "" msgid "Workflow state action" msgstr "" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Event type" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.mo index 7200bfd281e8e85e5772244d4685d26cec7bd71d..ced1f87911272c4a1ff75bfc75933e038c55e884 100644 GIT binary patch delta 1428 zcmXZbYfQ~?9LMp`A=g^W3XSSSDkaXTTu!-!kjSNyT&Lt(Ih=aXGCNO@1;qjv3Hu}#wTcTKNg}ZojzQReHb}i+JP^SuY5Bk zrqXVF%)Bi#6x2f=RCt|dQ4=6SRe-Nenq+LY^ebE;vDQkoA5JcTR#uS zVkuhYYS1>+fi~aoP#o@)QizLi4IT{AupK`_Tj(p=j&qqc9;>hjkE3nqJ#u*EtxQ2Yl$1tO7jL8qLg_O$xmuwP_?5i{3R48E|jLQzA9;KqvIHc;YZ|<>c`=j zw#a!g3!{nmgbdY^iaVoyV1pJ3bSYPfuCuOa8h>lSd zumVqDyo-(C1LD!kq>K0(Yp@|-`hg$N?!x=!PD;Z`k8L0ht@fpO6?fqkj9kG#4m)uZ z>ucFcX#-xyQv8dSfs#UrBb%4bqfuv<$biv^*j_0<>uK=qj4}^!!&HeD141c_zA64QN>(9j72L& zGJ0`g$Xc|^dIfEsx5eb&PB^T@xg^WcI-0NsyU>S|*EyNlf@EKvn2CRotjj~%%mxf6 zLw(4rdb-~E_e?2s#@Ayy&)bk!^`?x}*(LIj|3*B8mXYxrodNkcf%pRQ)g6AAThW`G zlT>3A3tqx7o_BX#A31xX$D8i;xjh-#S>7}cpOGueYwOZW0_FQ^tIO;Bfoyk?zhXzA R&X2X_fj$0?)a16A{{aP&$l?G1 delta 1454 zcmXZbS!~Qv6vy%3Sb`x^R7-4Av`Tf?#h_Z0s#>d5D`L8YCNop1A`&|GH6AobyojAz zLQ)STMTis;Z5q?5< zqEs#^W13Wm$8iAnyYL_JyCf+Jd!|c1{EQZRlcl9N1|MM^KEuQmsTRK@UzMgxOr?F; z!MwLq711j$>`HeN6=g`##OrVqhVdG9V;nYRx(%I2o9OxssT$wlLd?mMCfjqk0573E z_X*jnMr6Br@-dINDmx+#XK;ZF<~_6%J;(LfgUc{0M=Hhxn2Vig6AmQs+kK3|EohlL zjJBcIX!AwSba6bAWCd{ro{liE9e+eyXfU(cjw^5i9>i661#Lrrk;AKOmOJ@T!u49%|8!lua+l3+2%tJc$W&=?A=zaqov4K2l=u4FL5gVz&ISWfX%YL{0ywwp5ShrN&&0z z8cy(VQVRK;c-kWR1b<=(PZdeOvCm@H3xCm48c%v`1G#9m--1_hFJ8gKCH&*C11niy zff70%AL1H}rC^jz$M0SA=2Ql;P^;vBS66ks}5 z_Id)XSs$a#^ShM%+X>@VyQZi{yKxCa*opixG^fmEW(SgebzmmOkS?;W;$BbTU^4Up zc~xK5x_{5ya`${QCUde>&%^)# 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 57ab77b54c..bc50044b33 100644 --- a/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bg/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-10-16 19:08+0000\n" -"Last-Translator: Lyudmil Antonov \n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" +"Last-Translator: Roberto Rosario\n" "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" @@ -18,65 +18,65 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "Работни потоци" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "Текущо състояние на работен поток" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Информирай за текущото състояние на избрания работен поток" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Информирай за стойността на завършване на текущото състояние на избрания работен поток" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Няма" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Сегашно състояние" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Потребител" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Последен преход" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Дата и час" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Завършване" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Преход" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Коментар" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "Кога?" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "Тип на действието" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "Тригери" @@ -100,7 +100,7 @@ msgstr "Действие" msgid "Namespace" msgstr "Именно пространство" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Етикет" @@ -207,7 +207,7 @@ msgstr "Тази стойност ще бъде използвана от дру msgid "Internal name" msgstr "Вътрешно име" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Работен поток" @@ -267,75 +267,79 @@ msgstr "Входни данни за действия" msgid "Workflow state action" msgstr "Действие на състояние на работния поток" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "Състояние на изхода" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "Състояние на местоназначението" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Преход на работния поток" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "Преходи на работния поток" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Тип на събитието" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "Събитие задействащо прехода на работния поток" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "Събития задействащи прехода на работния поток" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Документ" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "Копие на работния поток" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "Копия на работния поток" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Дата и час" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "Запис в дневника на работния поток" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "Записи в дневника на работния поток" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "Не е валиден избор на преход." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "Прокси за изпълнение на работния поток" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "Прокси сървъри за изпълнение на работния поток" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "Прокси сървър за състояние на работния поток" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "Прокси сървъри за състояние на работния поток" diff --git a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.mo index 03e5e16904c9df81ae41860e804a7a1c2f185bf4..9d3b3ce83b0e993d1f80caa8ac8b6166eb1d77c4 100644 GIT binary patch delta 24 fcmZ1+wK!_SM=5SYLtR5l1p^~16T{7aq|}7~ZW{;P delta 24 fcmZ1+wK!_SM=5RtOI;%q1p^Z+6VuIqq|}7~Zhi;m 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 db21b989d1..af99380fa2 100644 --- a/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/bs_BA/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" "MIME-Version: 1.0\n" @@ -18,65 +18,65 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "Radni tok" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "Trenutno stanje toka posla" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Vratite trenutno stanje odabranog toka posla" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Vratite završnu vrijednost trenutnog stanja izabranog toka posla" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Nijedno" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Trenutna stanje" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Korisnik" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Poslednja tranzicija" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Datum i vreme" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Završetak" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Tranzicija" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Komentar" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "Kada?" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "Vrsta akcije" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "Uzroci" @@ -100,7 +100,7 @@ msgstr "Akcija" msgid "Namespace" msgstr "Imenovani prostor" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Labela" @@ -207,7 +207,7 @@ msgstr "Ova vrijednost će koristiti druge aplikacije za upućivanje na ovaj tok msgid "Internal name" msgstr "Interno ime" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Radni tok" @@ -267,75 +267,79 @@ msgstr "Podaci o ulaznoj akciji" msgid "Workflow state action" msgstr "Stanje akcije radnog toka" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "Stanje porekla" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "Stanje destinacije" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Prelazak na radni tok" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "Prelazak na radni tok" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Tip događaja" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "Događaji tranzicije radnog toka" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "Događaji tranzicije radnog toka" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Dokument" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "Primjer posla" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "Primeri toka posla" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Datum i vrijeme" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "Unos tragova u procesu toka posla" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "Unos tragova u procesu toka posla" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "Izbor tranzicije nije validan." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "Vrijeme radnog toka proxy" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "Vrijeme radnog toka proxies" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "Proxy za izvršavanje radnog procesa" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "Radni proksi za izvršavanje posla" diff --git a/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/cs/LC_MESSAGES/django.mo index e7e97af0df9a02ec41a6291c70c6c2b8e982d4e8..68b0d6b4efd8917da3f1ce0ed90bf142bf6e873b 100644 GIT binary patch delta 1428 zcmXZceN4?!9LMqRMd*eekR*zVsH=NZQA%j6jb?c)%Pi||Om(+zHV<2u)ju{&t;HX0 zMw^h0$rxkEjDI|Bw)`P&4B5oUyv+L^^>6xl=U!Y_ChTbGzkz`2=blW_qmpNZ+{#of3a8}Jr-Fg?p`Hg3T< ztj8F}JDO!7+fP9owcI$0Q8;<2*?gRVn=v1!;c?uHXPvw&+boBC45nZys$Q*=526O_ zz?s;C(Rd#d@OgH~Yzm3b6lma|7>WN-6NvPhC1Ivx8LFWl)p0XU#WtLX=Wrfg#AJMe ziqt2}$L|=8={~bm%nOlFM^&g0)?o~`qbhbIQM5kfYeW1^$5@uF`st_%Z9olFiyF8d z74nmgJ*WsgLiIm@svjCAafHMVRLAwp!V@}%<>Wgs5kH_-I*M~JDmR>8gmL8aP#u?{ zwz3MxwgS~Yh-!BV711lm0z>wcghDZZpv<7?>Y5PzO%J zZj8rX)WH3y2n{;VM^OFz#bU-cHyg8pf-+o=$B}J8Y{4Y*7f=y+fNJ*wHSW8TP2o3`Yc+2_3bIiZ51`(F zt*DjsVg}ws4-R4?My;U^E<{DBx9_rhd6L)X@fDfxgs5=Mw(|nUt^r delta 1447 zcmXZcTS$~a7{>9}QcEja4~d!DmX?-TyOzgHEh!9?D8eG?u&H6VxRBEEVueD2=)wx^ zA}Gm_iZHT-j1&@!q9{5Mb<+ugy2yf}6V(4{zh&9q%zQKR&b%|<_8knnbujF5eME3H z%3r}L#e6w)$WSdRIJXF0D=U@eH#huuUcQFSG7nn`Q z9T8hYpzjjn}elW+#k!c1I;t1$*oVIy92>IsX?a;c}I8*5Pg_Bi!+ zRKQ-GhJ!d2A7K){UKBK&OyMUD3LNP%i^4e60#YyqOC4)b1NWjP?!YP7gOPXz)9^aZ z#22Vc{lI(-^M)2si0RZTgA_E8AC*GYU3d<)(g7rkb{qNHSAOC#gKevSA!Xdr3j5_=w{$CNH$JSkwv&P&+C|9nm&NKXMIhFDg(k zPQU?7#35ARXQ&K~InSdw2h9_U%ZP8O6bfmm#R5EmB*pGyC;r6-?BwAJ{DV4@G6n^( z33XJjFakfJGV%qrpztEI4LBJ$VLfifVe}H;Qj5)&;u_=)vm?lTu>r>qs7sner+qjF zEATX~!gr|4I={qhHddkP0p!iK4pfG2pkCK|s0BX6pw93u1+9F{dGH+-Flw3EdQ8Oe z*o3JVK)oeLF&4W}~{`|CbLn?zi%vL19X1=nmwf9@HS4wno%| zvzUZeQ4>BuE&M%d;;)X8WueQQjA^uYVhUbEW#BPt+#6Kf&t+>u|4<3#W-Dn}f$De| z^$*yE+Q|@R;T_DuF-*p^Ya6sKEHeP%\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,65 +18,65 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "Workfows" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "Aktuální stav workflow" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Vrátí aktuální stav vybraného workflow" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Vraťte hodnotu dokončení aktuálního stavu vybraného workflow" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "žádný" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Aktuální stav" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Uživatel" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Poslední krok" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Datum a čas" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Dokončení" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Krok" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Komentář" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "Když?" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "Typ akce" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "Spouštěče" @@ -100,7 +100,7 @@ msgstr "Akce" msgid "Namespace" msgstr "Jmenný prostor" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Označení" @@ -207,7 +207,7 @@ msgstr "Tuto hodnotu použijí jiné aplikace k odkazu na toto workflow. Může msgid "Internal name" msgstr "Vnitřní název" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Workflow" @@ -267,75 +267,79 @@ msgstr "Vstupní data akce " msgid "Workflow state action" msgstr "Akce stavu workflow" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "Původní stav" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "Cílový stav" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Krok workflow" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "Krokz workflow" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Typ události" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "Spouštěcí událost kroku workflow" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "Spouštějí události kroků workflow" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Dokument" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "Instance workflow" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "Instance workflow" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Datum, čas" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "Záznam protokolu instance workflow" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "Položky protokolu instance workflow" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "Toto není platná volba kroku." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "Workflow runtime proxy" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "Workflow runtime proxies" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "Workflow state runtime proxy" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "Workflow state runtime proxies" diff --git a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.mo index 933e90a061eb49e139ebccd8a5353cf0df05833d..f4c3c64de6ddbf5479d0e09600c1f7c04d5c5363 100644 GIT binary patch delta 24 fcmeBU>toxnfRWqKP}k5>!NADM#BlR!#$-kSQuqd9 delta 24 fcmeBU>toxnfRWq4QrE~t!NA1I#B}p&#$-kSQ(FdW diff --git a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po index 9b35706a8c..386679fe39 100644 --- a/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/da_DK/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -17,65 +17,65 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Ingen" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Bruger" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Etiket" @@ -206,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "" @@ -266,75 +266,79 @@ msgstr "" msgid "Workflow state action" msgstr "" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Dokument" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/de_DE/LC_MESSAGES/django.mo index 09640aa212b85dca4b5db82470fff61e766d67a0..ee6c49423e2b0ca79af63d752a4d780014f50435 100644 GIT binary patch delta 4519 zcmZ|S3vg7`9mnyL5FkQ;00|^O@Iry`N?>_KC=!s+5D6+qd78>5xk;8RyL5L$FhEzM zU>iZI%fpJX2#VtHa#p3&*3yF7hdON)8CyEeXxp(2rBvv2O6xHF{`Q^-Oyvy!e9k?) z_dNdRoSos34aYX6#Xs(svBOXf5JQN%uEzWc5BA^><(A&Y+?r<0bS&n%rH?Tqa6fLx zcd#8-W*gHD&tXrzh~4oD4#jSLjj6|x*nnGbsxfi%PbzsdjO}Mkf1Hb147dbW@LWfu zI{F!EPQSzg`~Vl?=hzENbBsygLd?QXP!s+;Y61nh#xRtbiC@Dzun*o)x2+E5)O za4$Vcr~#`{?}gF9wWta0!c4|DuTv?+ z?jWHaF9Z1s5NgRu(Q4>oey%{(RHSj3pBQp=< z+Vg5EnrSPl<1MI^@5YU|&wf5E-}~NVoJ#vV`@9~tHCvH6o2O9kA3c$p7S z3;BIM`PYii(m)o?71T;{$m>lw1GQIWn2wF86*Qq%)NY@*p|@QW5KbZWhVG0d;aRDj=Rp`SSR7cx!Jf1+M_5wbEgGiqr4`K!O=49%OQ9p_ijZmRI10|e4K<` za6M`wan#oAL}hZfeSR6W_eW6gzlPkBxcMm+o!Z}^QuQhJ#fwPxOa=#lY@6Yz@6AH3 zXc6j~twqkKc@#B)J*a_?q0ZFXw*8M7<@pklT+=`&Lv;T)Q_;ZtP%BR&i#ESNrRpq} zU=I0HMk`uBB;!5L>;O< zs0kfM{ltEPn!sgL%6m^XW&`G-4(*OO6@BqA-i~i$KkPfjyLKZ`1589+(<d&JNXXZ3-D@LQf??cvR<{*W_S~L0O{Hs!g0F)f3XdHzwXVf0`vL8 zgZLCajrZf^na13Q2^@?6KyI2D%$?)BnR3+OU5CodPSl=1i`tr((7_*}w(JZJVSMu$ z6}^x#iz|m&s2_}a9Du7(D|-laHri2p*J0gjKYtN5&{5R)PGEoh(0+avb9ugK+cQha zzh*du3cn3z6sm(NR0dqs1mdVY+=)53ABW(NQ7Qfib;!zRduOQ$_5H1=iFBY2-BDD= z-bdDKuFNL?>Tu>9uY*OX2{q#wjH6P000-eId=oEVI=;$@Ohc785hWtTN3)*>cfc**R(?RcEUi>tAXX9IA$Aa*rNCB3TEo_M)OlHEpNCne;Wvo& z#8BJz3>MjXi^gBVLx*k9Y28ieIxZ!2N~aL%go>Z2BXmo2C7XyY#J35RDndV6-zD^G zdONX=c$nBsR1E9B zNgmF1(h^4obW3DscO5&gE)cs>Kjyj*lRp_SJ$?Kd4dM?vwc*vP-B8Slg<^=C5s3 zE!OB>GnL}xrM&u#u5Qd92qt_5Io$)HXv`m~O;i-j%Bl<3HmifE69^@y6%0=tDacH0 zD|n%NZNP1DS^~kK6K&MW=#sZsY;B`I)Zj)PKmV@I*!JlC5le1bSX4#F%~2e7C?F~Vnt4G%kxT&FCO% zYLPW+Qp-;UAWcIyL5fGVKo;a!iwPN~XTQ^S(Ik`1sk~^SgbYP$*J7~gzKh3uGfNH)!NOvXEyfKd^~ut<}O z{jmsRu?E>KvllhcKGgl+p;CVqYw!YUg3}`{7hwkNDs<_G!&H>oo~P|F#GDS4R^aO3@9}z%8gf z{L5}TqO6GpVl@3uyPbu)z6iDQ5*&<+aUkx-0eBLXxmK*hI36+=J<;Spk4iWjt{Y2n z71p6v7|1K3J&!_V#%Z@RF_(4@7U9d7kLOSW#&AM)_$FZzR-x|Shn4s>>b?{g%h&6) z4wbqCsF|Kd-S_~tLMI!pElNfXv`Isyemv@Rn}s^Gi%^-|fD>>l`r>)i1TLXc|0gPA zu2#FFgVWmEPN)ZjpiXxb>hSePWh5Izu>e_wDMbxjgSu`PYC#_(yJya!25v?T=!mn< zN(j>LGKo}H@Q zGR-K|g37QQf5vS6-p|TZCF*Ud!v~CS4p6DUMm9bWgC4U|6@g6NBwz_nKyAtUxC1}8 z+xeV09p2ff3~fVY>!#qG< zSreaP4V;b2$OP1$SD-Ss7OSxqb?E$4jp18moH!AOp?3k;nRWx}Ir~z{zh18sbacVf zwwLV-Z=p{6ebg!TC(n9t402q|P*g@rP?>lJmBCGRdkbpCpP&}<1!|l#*cGq3s034K zK~3Z#Y5+e@piXNq)S=2mrFI7D`Z7$zw zc3q_sLM4a42%6~>)C8uZ23(5Ma1}1aQ@8}P7?o$5gUC5FS5OlPU=~_wF7Cu)oP~E$ zTRLT!b$u0*RF~OLMIVx1P#L(7+S4`+MgQT}A&f%p-3Zk8VI1oEd031U=!+*X0#BkA z@GEx1Td1vhXzLiE-`W3;R5Va9>cTh-!*uTj95xK6J=N}Ch??LU}{@D6Gs$FU!t zLZ!GBqcM)JP7{tqA9Umps7WRf^9g-_ybse#mJ_?xL20ls^Kdp1M7&DqwP8V~l+dI( zZ{9S+qry1eiO;}E#1jPP+WUDgMt0V_kWCtY4-J*Kh%JN;+f&2>;{RoW-6+9ALf`b4 z39VQ~XG29>w}e=s24y3`nSE47*|nKoS-%dE(ysC(G1Xh+UB+Bu3K41diCK2N5|!o( zLT}J3#ArfggM}H7y$EfOioO*+h@EPvDF3xY5iyQmN(yO`-##vV)jQ_!83zH?f$g zBihTeRPu-_yJIOnXV-t^ML3CAB8yPjstr!H>fXQ6s!p`q>rmh7IHI@R zH_*17L{CQ7^ZxFc5smJU$UdIYk)aOHt{zD~p4-v${oLzf2f44s9`amt?)Pzj7$4-> z6F~W7g>El_No9Fu, 2015 # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2018-2019 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -20,65 +21,65 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "Workflows" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "Aktueller Status eines Workflows" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Den aktuellen Status des ausgewählten Workflows zurückgeben" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Den Ergebniswert des aktuellen Status des ausgewählten Workflows zurückgeben" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Keiner" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Aktueller Status" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Benutzer" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Letzter Übergang" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Datum und Zeit" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Fertigstellung" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Übergang" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Kommentar" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "Wann" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "Aktionstyp" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "Trigger" @@ -102,7 +103,7 @@ msgstr "Aktion" msgid "Namespace" msgstr "Namensraum" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Bezeichnung" @@ -120,7 +121,7 @@ msgstr "Ja" #: forms.py:181 msgid "Optional comment to attach to the transition." -msgstr "" +msgstr "Optionaler Kommentar, der an den Übergang angehängt werden soll." #: handlers.py:62 #, python-format @@ -209,7 +210,7 @@ msgstr "Dieser Wert wird von anderen Programmteilen verwendet, um sich auf diese msgid "Internal name" msgstr "Interner Name" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Workflow" @@ -269,75 +270,79 @@ msgstr "Daten der Eingangsaktion" msgid "Workflow state action" msgstr "Workflowstatusaktion" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "Herkunftsstatus" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "Zielstatus" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Workflow Übergang" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "Workflow Übergänge" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Ereignistyp" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "Workflowübergangstriggerereignis" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "Workflowübergangstriggerereignisse" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Dokument" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "Workflow" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "Workflows" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Zeit" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "Workflow Logeintrag" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "Workflow Logeinträge" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "Kein gültiger Übergang." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "Workflow-Laufzeitproxy" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "Workflow-Laufzeit-Proxies" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "Laufzeitproxy für Workflowstatus" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "Runtime-Proxies für Workflowstatus" @@ -430,11 +435,11 @@ msgstr "Workflows für Dokument %s" msgid "" "This view will show the state changes as a workflow instance is " "transitioned." -msgstr "" +msgstr "In dieser Ansicht werden die Statusänderungen beim Übergang einer Workflow-Instanz angezeigt." #: views/workflow_instance_views.py:87 msgid "There are no details for this workflow instance" -msgstr "" +msgstr "Zu dieser Workflow-Instanz sind keine Details vorhanden" #: views/workflow_instance_views.py:90 #, python-format @@ -482,7 +487,7 @@ msgstr "Keine Workflows vorhanden" #: views/workflow_proxy_views.py:94 msgid "There are no documents in this workflow state" -msgstr "" +msgstr "In diesem Workflow-Status befinden sich keine Dokumente" #: views/workflow_proxy_views.py:97 #, python-format @@ -534,12 +539,12 @@ msgstr "Es sind keine Workflows definiert" #: views/workflow_views.py:166 #, python-format msgid "Delete workflow: %s?" -msgstr "" +msgstr "Workflow löschen: %s?" #: views/workflow_views.py:182 #, python-format msgid "Edit workflow: %s" -msgstr "" +msgstr "Workflow bearbeiten: %s" #: views/workflow_views.py:196 msgid "Available document types" @@ -602,12 +607,12 @@ msgstr "Status für Workflow %s erstellen" #: views/workflow_views.py:460 #, python-format msgid "Delete workflow state: %s?" -msgstr "" +msgstr "Workflow-Status löschen: %s?" #: views/workflow_views.py:483 #, python-format msgid "Edit workflow state: %s" -msgstr "" +msgstr "Workflow-Status bearbeiten: %s" #: views/workflow_views.py:514 msgid "This workflow doesn't have any states" @@ -621,12 +626,12 @@ msgstr "Übergänge für Workflow %s erstellen" #: views/workflow_views.py:577 #, python-format msgid "Delete workflow transition: %s?" -msgstr "" +msgstr "Workflow-Übergang löschen: %s?" #: views/workflow_views.py:600 #, python-format msgid "Edit workflow transition: %s" -msgstr "" +msgstr "Workflow-Übergang bearbeiten: %s" #: views/workflow_views.py:635 msgid "" @@ -683,11 +688,11 @@ msgstr "Vorschau von %s" #: widgets.py:22 msgid "Workflow preview" -msgstr "" +msgstr "Workflow-Vorschau" #: workflow_actions.py:22 msgid "Document label" -msgstr "" +msgstr "Dokumentbezeichnung" #: workflow_actions.py:25 msgid "" @@ -696,7 +701,7 @@ msgstr "Der neue Bezeichner, der dem Dokument zugewiesen werden soll. Kann eine #: workflow_actions.py:30 msgid "Document description" -msgstr "" +msgstr "Dokumentbeschreibung" #: workflow_actions.py:33 msgid "" diff --git a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.mo index e2cf8d794be9cd297393841b4f9c1ba2607fb5d1..07b64989f27aacfcc8fe69dc6bf55ff052da045e 100644 GIT binary patch delta 24 fcmcZ}aXn&#hA_9Gp{}8&f`O5hiQ#5rVHHULWO@dr delta 24 fcmcZ}aXn&#hA_8*rLK{Qf`N&ZiRorzVHHULWZed? diff --git a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po index 4ece00863b..9ec22336d1 100644 --- a/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/el/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,65 +17,65 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "Ροές εργασίας" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "Τρέχουσα κατάσταση μιας ροής εργασίας" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Επιστέφει την τρέχουσα κατταση της επιλεγμένης ροής εργασίας" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Επιστρέφει την τιμή ολολήρωσης της τρέχουσας κατάστασης για την επιλεγμένη ροή εργασίας" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Κανένα" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Τρέχουσα κατσταση" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Χρήστης" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Τελευταία μετάβαση" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Ημερομηνία και ώρα" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Ολοκλήρωση" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Μετάβαση" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Σχόλιο" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "Πότε;" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "Τύπος ενέργειας" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -99,7 +99,7 @@ msgstr "Ενέργεια" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Ετικέτα" @@ -206,7 +206,7 @@ msgstr "Αυτή η τιμή θα χρησιμοποιείτε από τις ά msgid "Internal name" msgstr "Εσωτερικό όνομα" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Ροή εργασίας" @@ -266,75 +266,79 @@ msgstr "" msgid "Workflow state action" msgstr "Ενέργεια κατάστασης ροής εργασίας" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "Κατάσταση προέλευσης" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "Κατάσταση προορισμού" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Μετάβαση ροής εργασίας" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "Μεταβάσεις ροής εργασίας" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Τύπος συμβάντος" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "Συμβάν ενεργοποίησης μετάβασης ροής εργασίας" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "Συμβάντα ενεργοποίησης μεταβάσεων ροής εργασίας" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Έγγραφο" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "Περιστατικό ροής εργασίας" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "Περιστατικά ροής εργασίας" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Ημερομηνία και ώρα" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "Εγγραφή ημερολογίου περιστατικού ροής εργασίας" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "Εγγραφές ημερολογίου περιστατικών ροής εργασίας" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "Άκυρη επιλογή μετάβασης." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po index 77771cbeaa..daed730d5b 100644 --- a/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,65 +17,65 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "" @@ -206,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "" @@ -266,75 +266,79 @@ msgstr "" msgid "Workflow state action" msgstr "" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.mo index 3eaaf3d8d4d1d3e5198d0d966239e66afea12ed8..8cfe15c4172338164e506b28b36fcabdb36297f2 100644 GIT binary patch delta 26 icmX@#&v?F{al?HzZbL&|LrVn%BP$cb&9Bs+DgXe4PzhlG delta 26 icmX@#&v?F{al?HzZUakQBNGK9Ln{N*&9Bs+DgXe4kO^e~ 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 73e95d9f7e..1649819344 100644 --- a/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/es/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 21:05+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -19,65 +19,65 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "Flujos de trabajo" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "Estado actual de un flujo de trabajo" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Devolver el estado actual del flujo de trabajo seleccionado" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Devolver el valor de finalización del estado actual del flujo de trabajo seleccionado" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Ninguno" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Estado actual" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Usuario" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Última transición" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Cantidad de completación" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Transición" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Comentario" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "¿Cuando?" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "Tipo de acción" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "Disparadores" @@ -101,7 +101,7 @@ msgstr "Acción" msgid "Namespace" msgstr "Categoría" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Etiqueta" @@ -208,7 +208,7 @@ msgstr "Este valor será utilizado por otras aplicaciones para hacer referencia msgid "Internal name" msgstr "Nombre interno" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Flujo de trabajo" @@ -268,75 +268,79 @@ msgstr "Datos de la acción" msgid "Workflow state action" msgstr "Acción del estado del flujo de trabajo" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "Estado origen" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "Estado destino" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Transición de flujo de trabajo" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "Transiciones de flujo de trabajo" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Tipo de evento" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "Disparador de transiciones de flujo de trabajo" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "Disparadores de transiciones de flujo de trabajo" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Documento" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "Instancia de flujo de trabajo" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "Instancias de flujo de trabajo" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Fecha y hora" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "Entrada de registro de la instancia de flujo de trabajo" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "Entradas de registro de las instancias de flujos de trabajo" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "No hay opción valida de transición." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "Proxy de tiempo de ejecución de flujo de trabajo" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "Proxies de tiempo de ejecución de flujo de trabajo" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "Proxy de tiempo de ejecución de estado de flujo de trabajo" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "Proxies de tiempo de ejecución de estado de flujo de trabajo" diff --git a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.mo index 9ec997c9d8b7333d5d58b598be4c954a15b47121..d51533b2dc1615d8553fe0e22a3a93b794628294 100644 GIT binary patch delta 24 fcmdm*x;1r!zZAEjp{}8&f`O5hiQ(obsb~oRWg7<# delta 24 fcmdm*x;1r!zZAEDrLK{Qf`N&ZiRtDjsb~oRWqt=1 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 9bad0a748a..e7383a9cbb 100644 --- a/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fa/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" "MIME-Version: 1.0\n" @@ -19,65 +19,65 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "گردش کار" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "وضعیت فعلی جریان کاری" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "وضعیت فعلی جریان کاری انتخاب شده را بازگردانید" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "مقدار تکمیل وضعیت کنونی جریان کاری انتخاب شده را بازگردانید" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "هیچ یک" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "وضعیت فعلی" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "کاربر" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "آخرین گذار" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "تکمیل" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "گذار" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "اظهار نظر" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "چه زمانی؟" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "نوع اقدام" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "راه اندازی" @@ -101,7 +101,7 @@ msgstr "عمل" msgid "Namespace" msgstr "فضای نام" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "برچسب" @@ -208,7 +208,7 @@ msgstr "این مقدار توسط برنامه های دیگر برای ارج msgid "Internal name" msgstr "نام داخلی" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "گردش کار" @@ -268,75 +268,79 @@ msgstr "Entry action data" msgid "Workflow state action" msgstr "Workflow state action" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "کشور مبدا" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "حالت مقصد" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "گذار گردش کار" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "گذارهای کاری" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "نوع رویداد" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "رویداد رویداد انتقال جریان کاری" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "انتقال گردش کار باعث وقایع می شود" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "سند" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "نمونه گردش کار" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "نمونه کارها" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "زمان قرار" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "ورودی به لاگ یک مورد از گردش کار" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "ورودیهای لگ یک مورد از گردش کار" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "یک انتخاب منتخب معتبر نیست" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "پروکسی زمانبندی گردش کار" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "پروکسی کارآمد در زمان اجرا" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "پروکسی زمان اجرا وضعیت " -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "پروکسی زمان اجرا وضعیت " diff --git a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.mo index 54f76d2e3fe383058d7a22d87e7d31a9a6c29503..8425dedc13776cf0e2e339df27a4bf0225765d82 100644 GIT binary patch delta 3026 zcmXxm2~gB!7{~Ev1p|RaMMMz{5D_s^mcxS(4c(r z2=C#;_)tf)8JL7Ku^O|?y!Ho;uH5JoVb%%rFpLQ&Vln;c+|)pyqSo{|cE>X~25+Jp zhenz?I0nP;5^BNMQ48qa*^H?y2NUseY|s2wL4!rwa@0T$#^4@*{}2Y#KZV-iS&YXY zup8dRIP4N-##}ZKHC_>F!pW%T=3qQ7L@j751~b1k(@4g{r~!WU_wOQ6x1L?h5-95Muofu?n@*Hmq7T5P_O6+TTy}(iqB( zfjAy3u?W9FP1uD5_Q!nehx1Vjs>5Xb8a3b@T!0 z_wJ;jogYKx@Jr-G*>|YaTt%H{R}bH*aHB$+ipV%Kbsq z^B*9m#A~0>P}QDBh3YbP#9K)8ERX^q+SUX0yw8g8F0)PeEdELS2Qj~mP4Nw|8h6uwAGhLoW>?W%K^>!;s8roY)ke@G zJfnlNOLuiqEL>5oEfa3ZoN zn~O?qBa#xYeM^JFv|uXhUCcs-=n_uAdD*_>cLLYYzmM9<8n&U+QHwgydr`G?1WWJ~ zPQ=t4@{cP~6JJ24w6Gzn0rFo!L&Y&4RZR7$5T3?nyn)lOA=md8Ovq4vjOfqxTZ4M8 z1+|e&s1$||^ZlZxU=00CjKe2TkuArbUK&eiD5ra{6c3_u(|NeBc%o4c48X290+p&_ zR0>K^DJjD!T!gXsI_moePzyMY+UR9uPu6J!@z)o}(HM=hQ7iulRTJk>#q%#}pu{|1 zj&raF{V7<3uObJ>qVj#!Ux>>2GVG4qkZf8r4#VH^N%R!(f1h%FMtViwSGEz@= z3$@}tkNN&|Dn_Mb2?k)sNM}dLEY~ilZD@w)O>WHQTEX@IOBJgXYW7C|%`K?OwmD^? z{oULBcdN0^sSowK8l0rCk?wl>v$$4sZFUxgjZJuiRw|cXm0T*Wo$Bz?QLS}a!=88T zbqd{at{qO9yT5Czv)!HO+0AFmx!&TUCLjEz9f?Z$J}!r=m}?W)dagZ9*WAlH2bEWp zE-Wjpbe1JXH7!oe3kdaiQayv?)6%muJxwQjeH9Zlyu7sHXyXFMlNZ^veZqp_Hp&#n%3Uz3f9K(#w)9n*)X43AIzpdH_ogV)?hU@>T9%2LZzyWPQq+CZF&*ciHuM^HWPNL(k%@;;6I}HA*O91OVpp>a3?k9C z64dxpn1vPi5N<+(W{ubvzd&v5CPrdBVb;Q3kRc19qnwx0&`v8+6E8=Fd;_jP*ZX~Z za`?Ge4 zSNYfur=U(yjyh45*LP4U+J#zpFAl&%s9Lz>jbB4;@D}o8(J91V1HDMNZXAM&z$nba zGSozCus9(e2lFu-D^MG9F%wUqCTztes0u5Emr(PaLOrfsDIi65DCz(+QTIEWXz1ik zs2ms7P+``a4m%-;KJz9(hU} zJ4i!S`xz=!7f{7`8Ht+RMlGB`A?S12s1uDu>eA+*7Ishz)}U&s-WzYm#q=*ALABA` ztfHTdZO{KI8anY-~?q95^N4l6hKNRj(M!E;y8l=Jda9I3#ul5#YNb;U-OOKviyG*C!y!{zDXK8?r(oqP< z<6xYRq|f%C7CM9c*ahB5r*+^II!HEeJc%|7m5SA<4cFlo+=rUCkXkM&+DHi|;*;36Fe-AZk@~ZG)B(@p5WIvc%48~A^E;_D z+S4dOg?b!nfq9-wP$yl9aoB{~(C4U=oI@?x>h)tO?N0PFQ70UXoWUlbQo9zFlA}mn zI(C)D`wS#fVG7Z4oQP$G;m5B5*VAu7o#Z)=p{Jt?^*pac6;mC~zytU+`iBx;tUxW? zj4WlpqiUenFl~hVPo$w@T7wGVK|G3I;w*f1c=$h;R^+?LCX5KX7)5$cR-^m9;=9glpaSUCn98n4ipjhj)qxs5&WU(^jrBg5Zx8K_hhqEb+VO37I4 zf>TiUEyQlP5mT@p74j3vnd}zobGgODe;kcc8Y+ezsG>Q6n&2vCpp6QjxF=TAEkPa> z`yMH13p^Umbup&WpN3@7s;~%;;3WJDm9oc6_(O#AO2~{((7*uoV@FXty@BbNHaeV& zB8;H_&uI5ROr>v^n-n`J?`;MaaIN9`|D{URORG1uwRqT3t8I6e#pVRw^hP)09=9ph z@zuK_|Cqpg^eeg6aaFtP{o^yWrAKt9d&fWB_l`R?kmlRrE(_%N zYTW&SVBT(iw~A{o7q!^-pS2!QJ-+X9xm@L3Te&uK)ivG=tV(kC2mOt;!BG*hxdj6T X=BMZ87v_f=uk}8k()dmB%*g)$LFiB7 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 954319d452..16fe1acf94 100644 --- a/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/fr/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" "MIME-Version: 1.0\n" @@ -21,65 +21,65 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "Flux de travail" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "État actuel d'un flux de travail" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Fournir l'état actuel du flux de travail sélectionné" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Renvoyer la valeur d'achèvement de l'état actuel du flux de travail sélectionné" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Aucun" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "État actuel" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Utilisateur" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Dernière transition" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Date et heure" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Finalisation" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Transition" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Commentaire" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "Quand ?" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "Type d'action" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "Déclencheurs" @@ -103,7 +103,7 @@ msgstr "Action" msgid "Namespace" msgstr "Espace de nommage" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Libellé" @@ -210,7 +210,7 @@ msgstr "Cette valeur sera utilisée par d'autres applications pour faire référ msgid "Internal name" msgstr "Nom interne" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Flux de travail" @@ -270,75 +270,79 @@ msgstr "Données d'action d'entrée" msgid "Workflow state action" msgstr "Action d'état du flux de travail" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "État d'origine" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "État de destination" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Transition du flux de travail" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "Transitions du flux de travail" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Type d'évènement" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "Événement déclencheur de transition du flux de travail" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "Événements déclencheurs de transitions du flux de travail" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Document" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "Instance du flux de travail" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "Instances du flux de travail" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Date et heure" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "Entrée de la journalisation de l'instance du flux de travail" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "Entrées de la journalisation du flux de travail" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "Choix de transition invalide." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "Proxy d'exécution du flux de travail" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "Proxies d'exécution du flux de travail" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "Protocole d'exécution de l'état du flux de travail" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "Proxies d'exécution de l'état du flux de travail" @@ -684,7 +688,7 @@ msgstr "Prévisualisation de : %s" #: widgets.py:22 msgid "Workflow preview" -msgstr "" +msgstr "Aperçu du flux de travail" #: workflow_actions.py:22 msgid "Document label" 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 ff3560587489ed39d1a6279042728b98f6e9441e..b987b8cb8d11624fa521367c0090457bc5d90f46 100644 GIT binary patch delta 24 fcmdnVwUcWD4>Px+p{}8&f`O5hiQ#5(W+f&7O}_

PxcrLK{Qf`N&ZiRor>W+f&7P9g5D&MZp{}8&f`O5hiQ#5ho^Cb(QE~5D&M3rLK{Qf`N&ZiRorpo^Cb(QPl=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Brak" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Aktualny stan" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Użytkownik" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Data i godzina" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Komentarz" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -100,7 +100,7 @@ msgstr "" msgid "Namespace" msgstr "Przestrzeń nazw" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Etykieta" @@ -207,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "Nazwa wewnętrzna" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Obieg dokumentów" @@ -267,75 +267,79 @@ msgstr "" msgid "Workflow state action" msgstr "" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Typ zdarzenia" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Dokument" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.mo index 813a5dda8c0e4b5df680ee69a2b972b429b176cd..24660650592a99501266eea786f141f0033ebf3a 100644 GIT binary patch delta 24 fcmZ3*wu)`TW=3v9LtR5l1p^~16T{8>7;_i_S;q#+ delta 24 fcmZ3*wu)`TW=3uUOI;%q1p^Z+6VuK67;_i_S}F$8 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 ffe064d4af..f262807ec3 100644 --- a/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/pt/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -17,65 +17,65 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Nenhum" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Utilizador" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Comentário" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Nome" @@ -206,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "" @@ -266,75 +266,79 @@ msgstr "" msgid "Workflow state action" msgstr "" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Tipo de evento" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/pt_BR/LC_MESSAGES/django.mo index 67e2cf4a6e46011b23e39c18aa976c835d916f21..8a6fae39d808fd0229eb475e89b106bc7ec1fda1 100644 GIT binary patch delta 24 fcmexb_qA@rV 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "Fluxos de trabalho" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "Estado atual de um fluxo de trabalho" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Retorna o estado atual de um fluxo de trabalho selecionado" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Retorna o valor de finalização do estado atual de um fluxo de trabalho selecionado" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Nenhum" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Estado atual" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Usuário" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Última transação" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Data e hora" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Finalização" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Transações" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Comentário" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "Quando?" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "Tipo de ação" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "Acionadores" @@ -103,7 +103,7 @@ msgstr "Ação" msgid "Namespace" msgstr "namespace" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Rótulo" @@ -210,7 +210,7 @@ msgstr "Este valor será usado por outros aplicativos para referenciar este flux msgid "Internal name" msgstr "Nome interno" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Fluxo de trabalho" @@ -270,75 +270,79 @@ msgstr "Dados da ação de entrada" msgid "Workflow state action" msgstr "Ação do estado do fluxo de trabalho" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "Estado original" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "Estado de destino" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Transição do fluxo de trabalho" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "Transições do fluxo de trabalho" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Tipo de Evento" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "Evento acionador de transição do fluxo de trabalho" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "Eventos acionadores de transições de fluxos de trabalho" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Documento" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "Instância do fluxo de trabalho" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "instâncias do fluxo de trabalho" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Hora e data" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "Entrada do registro de instâncias do fluxo de trabalho" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "Entradas do registro de instâncias do fluxo de trabalho" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "Não é uma opção de transição válida." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "Proxy de tempo de execução do fluxo de trabalho" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "Proxies de tempo de execução do fluxo de trabalho" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "Proxy de tempo de execução do fluxo de trabalho" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "Proxies de tempo de execução do fluxo de trabalho" diff --git a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.mo index 320f0d24586f49dd5a3ed104422aa2b20548f1ee..08ff5fb26c3a1646b45d708cfd38524beb3f3139 100644 GIT binary patch delta 1428 zcmXZcT}YE*6u|Mb%<|jRO37(cQ**Z3bY^~JrP;`o!Za)vwLT0RKBGSz6imvLSqWYgUk^P=M@AJOrJm)>nhWkwS`%HHZgd3Mk zB4=_$+R(9Fq(Ve4=ZO^H6yC-}tH>>Uf)VJ=7fHY_)bFQo1)fDe2Jjdyj z8DnfBR^sK^#E`>GG^`Yf!a&H^NG|dg-S`(1(Y;FKI(ji4lkFl!n2Y2pyKy1*ATi`3 zrr<=#PpJ3(#$_1eF!*5La0GW$f%Eyk4fVlIsEPC<$;(63oy=ky&ZSHVn2CCy6LnoV zlC!j+R%ieziVR{hPGUBGHbN88g~1(UVGEuHb8o~^mLUIt3li*m0k+=hO z{a(}n=TIv%idygK)CY|seJ9UR1AYtn6Sc(Q zbeJaK#Kl;Rxc3T z?x-L8@h*0wYn{j*e1@E0$yy&Qbq#8>wIT;a22c}wg__VC)aSiJL*Mxi26`cNL+~Bt zpq6Sg?#Ct!!$+8b0o3&~sJ-zO!!e>V7$^?4R~Dg`Itz7OF{WWXY69(*)Ss%#X(n{% zn(!4&!EwyQY19B=8~G8!bkz03sFnPHdOe=^tIxBd#&uP1 z4VL~m6Ln0Cp#>vph%&UIHdixpa^xs-FytoY;0)ftNLR3Vhew8@ip_S1%~4{p7nC|3 p`F8%IYCZlATZ7Nj=5O_Mczvaodhfo2z78+?J-!z2NNnyk%RkAYuvY*8 delta 1425 zcmXZbOGuPa6u|K_hUTk$Qs(p1Y%FbTX0lA}VUs$&M9Qp;9t zOc2py)5Aq-S!l%cpu~`NEh5s)c15dNR8-Rc^oWg=2M2tjzh2$b{a6kURbZlKAavKAff|*W{RalJVD*G@K&mb}6 zGG^g;)Q_mY`-R1r;4(#$8I-%M9o67mzBi)2xCJ$l9wd2rfVz_z%tISxO2Y!w-?>oN zRUtXcVbltRk)p^oT!<661V5S4iTIV)4h+oT!Pck;k&guVrwQG{LYzc$kXbB3X9c^# zW@JhZpa!^rTA2~l($8QH&Y~u4X7koCgCf+DjH2#v3b)~3%*HLNMdo1}YQP}sk%ci8 zZ(tJMLro-tTA6Xwgx{h5?l)>h^DF-!g(+SJHB9Wm7`%uEUP67*2-0`*95vwAs6S9k z97Bg`0xn#D9@HJSq6X?h-T5_~kB>0}C(uj($p;1vOxUYL>aiX577XJUe#34Yt>##; zmTZYFJ*Zv&0=20;YenL4C+1@-YQiUQFP_F0oWy2yuj6(QU(V_PpCYm3C(@weCJWu6 zA9Y847{&oSiFF%94&gK828&T^mD-EiY)6rcB4O0T#!wS_jrzW~XzH1NXP^(VHd<%2 z7`0Rl=*JeEgO9KfBdF`AQG4SH#$v3;3Y3J}E9t1EHc;19U>-K1CeZGo{!~@YF`+wu z8C^JwR7nW)IF317!7U5`aLg&IKW=pV>IT|bCg$@i$wlR4j9EJ2N1SKnln z-ejVYiBU8#j)thg64d7MBR57mkqaUHXvb;1gK=J~c?XC46DxBaPKUe7aJj49m1R!; m61V$8osL~WUq>k5>pUK;Ha7c$zCfE%9}M}A45yadH2wjtYp~(~ 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 ba900c9979..93ed60f00f 100644 --- a/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ro_RO/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-10-29 12:27+0000\n" -"Last-Translator: Harald Ersch\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" +"Last-Translator: Roberto Rosario\n" "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" @@ -18,65 +18,65 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "Fluxuri de lucru" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "Starea curentă a unui flux de lucru" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Obțineți starea curentă a fluxului de lucru selectat" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Obțineți valoarea finală a stării actuale a fluxului de lucru selectat" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Nici unul" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Starea curentă" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Utilizator" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Ultima tranziție" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Data și ora" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Finalizare" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Tranziție" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Comentariu" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "Cănd?" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "Tipul de acțiune" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "Declanșatoare" @@ -100,7 +100,7 @@ msgstr "Acțiune" msgid "Namespace" msgstr "Spațiu de nume" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Etichetă" @@ -207,7 +207,7 @@ msgstr "Această valoare va fi utilizată de alte aplicații pentru a face refer msgid "Internal name" msgstr "Nume intern" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "Flux de lucru" @@ -267,75 +267,79 @@ msgstr "Datele privind acțiunile de intrare" msgid "Workflow state action" msgstr "Acțiune de stare de flux de lucru" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "Stare originală" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "Stare destinație" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Tranziția fluxului de lucru" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "Tranziții ale fluxului de lucru" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Tip eveniment" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "Evenimentul de declanșare a tranziției fluxului de lucru" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "Evenimente de declanșare a tranzițiilor fluxului de lucru" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Document" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "Instanță de flux de lucru" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "Instanțe de flux de lucru" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Marcă temporală" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "Înregistrare din jurnalul instanțelor fluxului de lucru" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "Înregistrări din jurnalul instanțelor fluxului de lucru" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "Nu este o alegere de tranziție valabilă." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "Proxy runtime pentru fluxul de lucru" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "Proxy-uri de runtime pentru fluxul de lucru" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "Proxy de runtime pentru starea fluxului de lucru" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "Proxy-uri runtime de stare de flux de lucru" 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 15d2a3b58ddc5547d43dc4bd99946f2e96084637..bb96debedf51fa009bcc16f5216dd9d80cb82924 100644 GIT binary patch delta 24 fcmZqYZ|C1Ig_+yXP}k5>!NADM#BlR`<`>KWQ)C9& delta 24 fcmZqYZ|C1Ig_+yHQrE~t!NA1I#B}p~<`>KWQ^yA4 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 255731ffa6..05008375be 100644 --- a/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/ru/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" "MIME-Version: 1.0\n" @@ -18,65 +18,65 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Ничего" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Текущее состояние" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Пользователь" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Дата и время" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Завершение" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Переход" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Комментарий" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -100,7 +100,7 @@ msgstr "" msgid "Namespace" msgstr "Пространство имен" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Надпись" @@ -207,7 +207,7 @@ msgstr "" msgid "Internal name" msgstr "Внутреннее имя" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "" @@ -267,75 +267,79 @@ msgstr "" msgid "Workflow state action" msgstr "" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Тип события" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Документ" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.mo index cc04a62239964d6a2043322a2b2fac97286c46a9..9211fa87ad89d1e2e3034a9e4a99836be0df16bd 100644 GIT binary patch delta 24 gcmX@Zc7|=kLPl;wLtR5l1p^~16T{7G7#A=C0A8&J9RL6T delta 24 gcmX@Zc7|=kLPl-_OI;%q1p^Z+6VuIW7#A=C0ACOXCIA2c 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 11c36982d2..b1e88aff8a 100644 --- a/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/sl_SI/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -17,65 +17,65 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Brez" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Komentar" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "Namespace" msgstr "Imenski prostor" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Oznaka" @@ -206,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "" @@ -266,75 +266,79 @@ msgstr "" msgid "Workflow state action" msgstr "" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "Dokument" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.mo index aaba2e92c06690a5fe47a55a7530702bceefe19f..945e4444ad3c292d3333c49263416e5bef3b2cee 100644 GIT binary patch delta 24 fcmca*eam`7wIH{lp{}8&f`O5hiQ(op!4Mt*XQl@> delta 24 fcmca*eam`7wIH{FrLK{Qf`N&ZiRtDx!4Mt*XbA^D diff --git a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po index 8942a74ec0..8e8d607ac8 100644 --- a/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/tr_TR/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -18,65 +18,65 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "İş Akışları" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "Bir iş akışının geçerli durumu" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "Seçilen iş akışının geçerli durumunu döndürür" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "Seçili iş akışının geçerli durumunun tamamlanma değerini döndürür" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "Yok" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "Mevcut durum" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Kullanıcı" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "Son geçiş" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "Tarih ve saat" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "Tamamlama" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "Geçiş" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Yorum Yap" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -100,7 +100,7 @@ msgstr "" msgid "Namespace" msgstr "Alanadı" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "Etiket" @@ -207,7 +207,7 @@ msgstr "Bu değer, bu iş akışını referans olarak diğer uygulamalar tarafı msgid "Internal name" msgstr "Dahili adı" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "İş Akışı" @@ -267,75 +267,79 @@ msgstr "" msgid "Workflow state action" msgstr "" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "Kaynak Durum" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "Hedef durum" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "Iş akışı geçiş" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "İş akışı geçişleri" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Etkinlik türü" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "belge" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "İş akışı örneği" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "İş akışı örnekleri" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "Tarih saat" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "İş akışı örneği günlük girişi" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "İş akışı örneği günlük girdileri" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "Geçerli bir geçiş seçeneği değil." -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "İş akışı çalışma zamanı vekili" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "İş akışı çalışma zamanı vekilleri" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "İş akışı durum çalışma zamanı vekili" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "İş akışı durum çalışma zamanı vekilleri" diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.mo index 5a666904c6967cb68c31a457129bdfa84b9c93d6..01e434d6906587ee3aa4fa0f1220e8d3334bee02 100644 GIT binary patch delta 24 fcmbQsI+t~W0VB7ep{}8&f`O5hiQ#5z#w11nOKb(5 delta 24 fcmbQsI+t~W0VB78rLK{Qf`N&ZiRor*#w11nOV0(S diff --git a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po index 7038bc167b..3e3b41ed73 100644 --- a/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/vi_VN/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -17,65 +17,65 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "None" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "Người dùng" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "Chú thích" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "" @@ -99,7 +99,7 @@ msgstr "" msgid "Namespace" msgstr "" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "" @@ -206,7 +206,7 @@ msgstr "" msgid "Internal name" msgstr "" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "" @@ -266,75 +266,79 @@ msgstr "" msgid "Workflow state action" msgstr "" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "Loại sự kiện" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "" diff --git a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.mo index 12e6e062fdc713008f2e4c1661c66b9fa033e2fb..b3bb37a1d11086d5bca79fe2b492526bf50ffe9e 100644 GIT binary patch delta 24 gcmcbbdo_2%V(^b diff --git a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po index 01c91f6389..6fbd45733d 100644 --- a/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/document_states/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:45+0000\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -18,65 +18,65 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:62 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 +#: apps.py:61 events.py:8 links.py:18 links.py:47 links.py:150 links.py:179 #: models.py:61 views/workflow_proxy_views.py:75 views/workflow_views.py:139 msgid "Workflows" msgstr "工作流" -#: apps.py:104 apps.py:111 +#: apps.py:103 apps.py:110 msgid "Current state of a workflow" msgstr "工作流的当前状态" -#: apps.py:105 +#: apps.py:104 msgid "Return the current state of the selected workflow" msgstr "返回所选工作流的当前状态" -#: apps.py:112 +#: apps.py:111 msgid "" "Return the completion value of the current state of the selected workflow" msgstr "返回所选工作流的当前状态的完成值" -#: apps.py:165 apps.py:176 apps.py:186 apps.py:192 +#: apps.py:164 apps.py:175 apps.py:185 apps.py:191 msgid "None" msgstr "没有" -#: apps.py:170 +#: apps.py:169 msgid "Current state" msgstr "当前状态" -#: apps.py:174 apps.py:201 models.py:514 +#: apps.py:173 apps.py:200 models.py:517 msgid "User" msgstr "用户" -#: apps.py:180 +#: apps.py:179 msgid "Last transition" msgstr "最后的流转" -#: apps.py:184 apps.py:197 +#: apps.py:183 apps.py:196 msgid "Date and time" msgstr "日期和时间" -#: apps.py:190 models.py:211 +#: apps.py:189 models.py:211 msgid "Completion" msgstr "完成" -#: apps.py:204 forms.py:178 links.py:162 models.py:369 models.py:510 +#: apps.py:203 forms.py:178 links.py:162 models.py:372 models.py:513 msgid "Transition" msgstr "流转" -#: apps.py:208 forms.py:182 models.py:516 +#: apps.py:207 forms.py:182 models.py:519 msgid "Comment" msgstr "评论" -#: apps.py:231 +#: apps.py:230 msgid "When?" msgstr "何时?" -#: apps.py:235 +#: apps.py:234 msgid "Action type" msgstr "操作类型" -#: apps.py:251 +#: apps.py:250 msgid "Triggers" msgstr "触发器" @@ -100,7 +100,7 @@ msgstr "操作" msgid "Namespace" msgstr "命名空间" -#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:343 +#: forms.py:121 models.py:48 models.py:199 models.py:280 models.py:346 msgid "Label" msgstr "标签" @@ -207,7 +207,7 @@ msgstr "其他应用程序将使用此值来引用此工作流程。只能包含 msgid "Internal name" msgstr "内部名称" -#: models.py:60 models.py:197 models.py:341 models.py:388 +#: models.py:60 models.py:197 models.py:344 models.py:391 msgid "Workflow" msgstr "工作流" @@ -267,75 +267,79 @@ msgstr "进入操作数据" msgid "Workflow state action" msgstr "工作流状态操作" -#: models.py:346 +#: models.py:334 +msgid "Unknown action type" +msgstr "" + +#: models.py:349 msgid "Origin state" msgstr "原始状态" -#: models.py:350 +#: models.py:353 msgid "Destination state" msgstr "目标状态" -#: models.py:358 +#: models.py:361 msgid "Workflow transition" msgstr "工作流流转" -#: models.py:359 +#: models.py:362 msgid "Workflow transitions" msgstr "工作流流转" -#: models.py:373 +#: models.py:376 msgid "Event type" msgstr "事件类型" -#: models.py:377 +#: models.py:380 msgid "Workflow transition trigger event" msgstr "工作流流转触发事件" -#: models.py:378 +#: models.py:381 msgid "Workflow transitions trigger events" msgstr "工作流流转触发事件" -#: models.py:392 +#: models.py:395 msgid "Document" msgstr "文档" -#: models.py:398 models.py:503 +#: models.py:401 models.py:506 msgid "Workflow instance" msgstr "工作流实例" -#: models.py:399 +#: models.py:402 msgid "Workflow instances" msgstr "工作流实例" -#: models.py:506 +#: models.py:509 msgid "Datetime" msgstr "日期时间" -#: models.py:520 +#: models.py:523 msgid "Workflow instance log entry" msgstr "工作流实例日志条目" -#: models.py:521 +#: models.py:524 msgid "Workflow instance log entries" msgstr "工作流实例日志条目" -#: models.py:528 +#: models.py:531 msgid "Not a valid transition choice." msgstr "不是有效的流转选择。" -#: models.py:561 +#: models.py:564 msgid "Workflow runtime proxy" msgstr "工作流运行时的代理" -#: models.py:562 +#: models.py:565 msgid "Workflow runtime proxies" msgstr "工作流运行时的代理" -#: models.py:568 +#: models.py:571 msgid "Workflow state runtime proxy" msgstr "工作流状态运行时的代理" -#: models.py:569 +#: models.py:572 msgid "Workflow state runtime proxies" msgstr "工作流状态运行时的代理" diff --git a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po index 9adc63eb86..b9287180dc 100644 --- a/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "الوثائق" @@ -857,75 +857,75 @@ msgstr "أقل نسبة مئوية (%) للسماح بالتكبير داخل ا msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "النسبة المئوية لتكبير أو تصغير في صفحة الوثيقة لكل مستخدم." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "" diff --git a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po index 8dea56c0e4..9f04a5d981 100644 --- a/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-16 21:23+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Документи" @@ -857,75 +857,75 @@ msgstr "Минимален процент (%) допустим за интера msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Процент приближаване или отдалечаване на страницата на документа, приложен за потребителя" -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Януари" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Февруари" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "Март" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "Април" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Май" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "Юни" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Юли" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "Август" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "Септември" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Октомври" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "Ноември" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "Декември" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Нови документи на месец" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Нови версии на документи на месец" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Нови страници на документи на месец" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Общо документи на всеки месец" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Общо версии на документи на всеки месец" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Общо страници от документи на всеки месец" diff --git a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po index a7e6d8d5d3..4d9056e9b3 100644 --- a/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -21,7 +21,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Dokumenti" @@ -858,75 +858,75 @@ msgstr "Minimalni dozvoljeni iznos u procentima (%) po korisniku da zumira stran msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Iznos u procentima zumiranja stranice dokumenta po korisničkoj sesiji." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Januar" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Februar" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "Mart" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "April" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Maj" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "Jun" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Juli" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "Avgust" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "Septembar" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Oktobar" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "Novembar" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "Decembar" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Novi dokumenti mesečno" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Nove verzije dokumenta mesečno" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Nove stranice dokumenta mesečno" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Ukupni dokumenti svakog meseca" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Ukupne verzije dokumenata svakog meseca" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Ukupne stranice dokumenta svakog meseca" diff --git a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po index 076d0b6f4e..84b6676f3b 100644 --- a/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-22 18:57+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Dokumenty" @@ -857,75 +857,75 @@ msgstr "Minimální částka v procentech (%) umožňující uživateli interakt msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Částka v procentech přiblížení nebo oddálení stránky dokumentu na interakci uživatele." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "leden" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "únor" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "březen" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "duben" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "květen" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "červen" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "červenec" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "srpen" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "září" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "říjen" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "listopad" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "prosinec" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Nové dokumenty za měsíc" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Nové verze dokumentů za měsíc" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Nové stránky dokumentu za měsíc" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Celkem dokumentů za každý měsíc" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Celkem verze dokumentů v každém měsíci" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Celkový počet stránek dokumentu v každém měsíci" diff --git a/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po index 29573eb25a..2fe23818d8 100644 --- a/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Dokumenter" @@ -857,75 +857,75 @@ msgstr "" msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Januar" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Februar" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "Marts" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "April" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Maj" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "Juni" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Juli" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "August" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "September" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Oktober" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "November" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "December" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Nye dokumenter pr måned" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Nye dokumentversioner pr måned" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Nye dokumentsider pr måned" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Antal dokumenter for hver måned" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Antal dokumentversioner for hver måned" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Antal dokumentsider for hver måned" 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 9afd549b4bc85f8b78496cabcba30cce84c75aea..0d4aaad61641045a68863e6bb5dfcd428dc636fe 100644 GIT binary patch delta 7180 zcmZ|Td3=<`9mnwrR|rP}2}giL9w3ke$OQxlh!7frAcPx16b)pPY)E!>vw=X+ZE3Mo zys1zSthH9FSW%;RfPxx1J+MX87OGGY(N?5l1?thycW28`<|KSnDcpdUwPwf z%+J4%iTpjW#eIe}B*vH&+#YAl@5x`Aq*`M>>t@VkJc<2qSa<7u97=g5_Q&m*jwhT6 zJvdkA;{Xg|AG{yaaECQwJ|WYWia1(dhdJ09cVlxrfF2&i68r``U{R_uEpZlh#Cg~r zYcK~JFdsJ~V=_mv5Wm1;%(~2&DJEh}n2bi)gjtx_)AoD}s)2eOj&ij=g!lp zk)6fqnBp1J7K7Lu8?YBXfEw6NWXxtS4v&yIPNo4b<1A*+Y(S0ZIpm&ZH`d|_?2Plc ztETiORCyD|Vk4@7ZK&02LXG?b?1IOz6P`m|7f-Jvn#wdX%&N)944jT_umN@At*9Gq zL^bdTs=+Ooi_fEG4o##+?|;hR}_Y zQJbniYD%Z08lI0$SdLXVfSq|Ou0?e)m5V~y4+r9U=Pp!7zDCVZiwx#Jo=h^s*5*k^ zEkQnNjix%QQRl64$Je1o_6+K}J$N}D!cmx%X^&5HR-mT-W>kmnMcr>lgiNa#W8Oyf z>^+_(o;33*GMMN>CqOz29*4tFGgXM{z)V-JLY;Rrw#GY9_gU+XKZWm8ejU}${q#aJ z5P5=3GMSyI-Txt~r?C{;U8Kfr&1TxL59+!M)aEKg-Ea=ZV>PNn4X91L8jEo= zw#9#AJK8rtkcp+DEf1}Fo`fZsf*dl7kZoZ$U=VkphdH@+k4$wgK+Q}T%kh_}8T%4- z-?ONW$K=^1YZaCC??gr;?v2qYMqN;dnt_R^r(+iKXF`0?bMr9j{HIapZ$k~F3DwY> z&UdjT)DPPvNALH5MKIE(rM9D#S?b+`}nF=McOGtS4^lo#N1d=cAY zyCJs2-BD9N47=jhs3i+xCtQUQWj2vfkDfuT@pk72sI@(VN!XUwHL{+lk))wUoP}dC zAN8iJN6p;RsI}gXKHTH#vxnM&77S(m)xc;f)PdPJ25-P=_&ZF*uTc%P;u}RHibsto z8#Ur$)D+Le1iS`yzbaHm!l;2ouruC|@%Z#G=3hPBNrl$*O?(SKMBb9-QHIk6_aXbv z9K|Z^SYR7kjvXl9jva9m>c(5J6~2OM@C}@Ue?xU>2=^s)mV=p;r@3+iW>DUQJb7jp>ilmp4SN>y zNbC78B6Ez2kC0>LHST^rHvfqo(L!87xyF^h!i|*AV{cqnWPd-rgj)NLF%`c;%~S%kfmy+Ac#~cQ^LH&8W5A zjV_5@IS*tLTO~raLdAJA1;Ca+;A9Iu`O;wHmrFJ zX~TSq7ac@-w(2GorkQ6t`o8qopNOqh9gDe|xb z#bVTZ;%Zl3hV3b@#vDEW>&fWCy{IWak6keFTH9bIW>X%EYVaoP!DIF_RL3@5XE)&% z97y>%YDN<0+okM_x^E8ZzT=(qF@g3?9U1j#C2I4mL0!;@M{qxCY9G7a&eRUn`Fn6A z9zyMz#2c(B*o+SL!|v2)mfB5Rgqn#d*aJft(Fu2w>4cA=ruY@?kMH9&Y_`CTbf&W$ z)nL7I1@g);x8voy4)d|oLc7)zQTIEFT9S5U_I{~l%)h28hl&u6Mcw#0)N{H6TjFkv z$G1>Ra2Pcs|3vMDW%4A zsw4YR4gCej;K!&<+l#kROYD#1F&DM_>v1JMjFWY|!v18dN1eAE7hzL`Oe&e&O1t(Y z*qd?ywG{W@W%xL1&Gx$E$5A6`?YCdQUD2alfO=nCgXtJXb#NoL#)mK#H)9b-8p#xr zIg6T-5mk1i1#a7!Jc0)CohMJi{sF6=aU097ef4TEcJV*IK)QC6K*j@h`4xoGlX~M(> z?B=U;-ik?j{@0Pw?%#}YxDz#keaJGKW2nt`WzgPWJ}#jg#0)&)>O0(MpZ{K%Nqq^b zqxGoGcbhA3LfwB0#?ijnP3C2M7qvEb-Ndtx>#zy0;?cMcJJj;)2m`1F^1}B20`pK) z`wk}IXE+MKL*Bw>M4f#+@4>#552N--v&GDRHklMMdJkNM8c{jw#c~&F3io3!ev40G z2E+dZKg4nPO1+(_7EA5kslxTtFTu9haT(`eD(bO3jQx=Rdf4y(^alIoGZeMUk4t(|wLw>u=D*)a7<>T!Eb^mtb>Th^TI=W0!+kg$zrdlGc8fiKo--IB6T<Pp2UUZBXiaj-oh>fGZ{_i`PAlm*cLB-4knjF{EbMUGdu7N zVjXdq=s{dat@QjKq@=ZekkIZfCjLpZ<>D=YKVX!?ZDRG06-IZ6qZi=Q8o%X6g} zSVHJG!#r2_DE24XN2q+8%p>l=CLBOrSK- ze~cJG>?V{#L_MLmsM6;IuK@Fa+W#q;7YL<6#Op*1jsAeYBd#KP5tpXFQur^ScY)G3 z#GTQcF@M5ru2;IBNFl!xJ$w#-ODJt5#%TNlIgm`DhL}wJi^wMusXu{-h|z@7b;Lv> zo?}WK@gEp{o8gbdZG_SwcaHL35Zj5%iT8=_L=|yy{$C+~R28JK#hk=h#J#R8mJ<4Z zq0&&|`e@F6Rewpo6UPcL7N2#;zQW-|j=OFu`BEZ{a^yc`J|dK+5o4n{el9!P=ptej zWZ*zof6Dm;{@UeV#k*bpN@t4mA#5Oe6Pt-9g2exSxaphZUL%eW?TIx+N8%k~81Wb4 zE<&l=VxGs=T>FwMivdI)br;g7WHt~lyNX!ncX%1+wTp@H^P560aSxF}wB*1(yfm$+ zFoBqKX(jpQoLl7TzQ$gZx2m3ak(fh_CzReJenYe%enR}5=tKL_)Qt6%UNr0781gOl`<67GNiS}HL!ho^fiL8hhk`ZUl1l%=O0TrK z+6!0uyl|*AP+J}h)s%+)!9cCI#Ls~RK5t=lFyJf8_QuuwYs3CP#s59AI#?UdZXA+- zI$_?d2}NG8+$;6Uf(z?ve1Y&luP)$U>+EQ;;z<*Pn&zn$`?G*-eL?wS2=lRS1 z^sd4e@P$glzA}&gc)n74dErLcjeW-LiYd;^%gP<@<>igY8!{l5)Mip?Z8&SDhEQD^ z4u(c}lS@O3{Q>XF(%OZUi@4|IHPMPOm98SY#&<MbSm@%3t3e@~V87 NUX?)BnK4VV8iN^TvCU$c)r_?whqM%iw4 z71f=FbfYUKS`d}eCQFFA-Lj;v=<}U(=Jo2l{GRtY=lTEtXa7G_3;yt`y5Z&drjGX- zLrV2BrV*C=8?#>daMcrUeeh1oSvxz_z*`TcU46W13~7 z33kB+n2S}|-*}7(jIkpefvx#s8>;7@qZ$Z}HKrZb!*uMAwQ;_432J03aUi~qccO2c zF-CX;=>*!MeB#b>H*o(Nw-ghS@WRF%d6e0EROxT^NIUP#aVO*{BBZ!Bp&z znvuDvjxR>tx8C^*s+}ri*3Aj*g;$$0|9!}GW=GV)WvC0ELp|tK)TVj|HKmtO4PVCt zcnc@uem2k|Opdo5ti&0V_hKtd<00~X)bp33W~e-Y`PZg-l?qM$Uewy0#9+MU>b;p3 zjVKm%eI|Cou6P&Db>HuGeuA3nOQ?o#qn_6)iJ9^;rX#8&cY8QHoFp>{>8zQ8Ay|f* z@~xb=@WO!{1TQsl~?7_0jklrlK11qZb-+BsRd-sLk%lC8M4eV*oC} zQ&@(YiDItu#+9fW*Pu4j4%7pyP$N5u>d-~hroDl=*dW<1-6#yCJPCbqHqvpAnMdPYQBVUhsOu9^BS}Lw)ZUqmdT(?^UDp$J-#~1SBV2hc z`p~}FNG1=T#}0TCM`GJ_`vzNswJ3jpL+~gL#P|$5vJzB>7o(QF}(Tm#C*e%KEi;0DxvJ3VCL$?QRm^cH?Tp^kBU4*Lar;~6}U{4?)$;fGDHt7^CoO4Ac3);l2py zZg+c>GZwX`%}_UVKy9u()S6C5Z!AHbj>k}YWHD-wtV3<;ZKx&O2vXPiW z{R&LMkIG%)J&~F zosySO&wUdatN8)7Wa)jGe>SGc?rW<54k*QkC?7%{mlQsDC78#M{bF86AH0sVZEhli zG(DJ(+PDfeW9v{ex)J$j_VS?yg9q?O3`QZZ0MmZ}^B+KF5f!nx3f0rsa4DX}7%aTk zzCxFyuG@m8xF2Fti*eW+ zQ*kne;0Dx<+ffg$LO(q2{1Q_rpL6B9gY71cMs+L$wHXIs9rR2fquo6RHKk9X*7Pju z!rpoI!ZE1R@G!Q-Cs7^Pjhgaz@dh5jwRms{uU))88T`Q@05l^CM) ze~wH;j@4CEM?y!~P1gilQO-wA)k4&ou0uU|GwQ)_I**|`ei7B78>qcfd!)TS9>1oX zjS<-BerAUDO*$Ff&=GlUo1UnK7CKkp9dvL#Mp0ir%5K_SsF`>Nb=bZ#z+C7qvI=&q+7;_$E{xxO&snC>+LT##%1}MrfcM}Q)Na3w3$gxK``?Ni zu$Jmk*ZqW(uq|(|XxxIaxDT7)Y1C49kF)QSXw;H*@{rL5`KXbUVq<&)tH&A=53TxxXs1A9)AfpSfARE@)LOo#k1iNcD zpdaN*RLAzBZu}OtbibiG;6KssfiTqbnxYy^M$Jek)QE?n?wf_|8IM_HGiDwB#uwXA zBi+h;YBzs~T7nD6KNCLLZ93;l45xk**2PNn$M;dk^b=%t%nztNHgJl)e>^^{^It+H zkuQFBUqnr{=e{K-QJ;_6-SbhKuFRERKsB%%)!;GQgI}U%WPPDA6}SlxVBR$QXMNOk zjx6Qbm_+-gBWI-u$D*e8Bx*#z;9XdoFNa_^?1j%@b3BjQ8-d04jTVoZu{_j(rlH;^ z>rpfKDe6t?HIx6~#dP$XBXgEacRV!9PF3*3cGDE&dg|xlo!D?T>yHW86whNk29(&% zn}&@j=U@Si7aXM25lMOKmw0BdJd>W&Xp-^r1piKN{;`3C7_vY=_%13(upj zkDg;qLodo&o^J>xZ8jyXvG&hEB8ZD##G15#%o^gqTK{herPV|~Vyg_R;L0!BlxZbdS2mU1#yK?`pr`P*^p07 zr`B3Y=eQ~O zEFzTtMm$PXsX+RP=t6Wi(*6z>vx@hEu{&G}BpbO|w?_z$5!;cC)FGPNjA!Frfg z^99}@f{8IibB+IBWc2^!{87`9MwAevh}pz1gpxPc%))%)01-&JKh~tiWZocd5=)5@ z#A)I@(S}GTYSJ@gt`Sjc@bAP0LMhi`F5wxMk8ysCZ@K&+EG2dkqlwOh{ullcY)AZ$ z=uO-~WD}7@IPoN*)PZ=P@cfgH+e92UPsWkNVPZ3(^eItH%p~q2l-3eYRp;z$dK~%B zYRWt(-sM|5A9FsAy2@v{5Ryx=Muar3J#|E#kfP9^?9gt@v~&S, 2015-2016 # Felix , 2018 # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2015,2018 # Stefan Rempe, 2018 # Stefan Rempe, 2018 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" -"PO-Revision-Date: 2019-09-24 04:46+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" +"PO-Revision-Date: 2019-11-08 11:14+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +27,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Dokumente" @@ -217,7 +218,7 @@ msgstr "Seitenbereich" msgid "" "Page number from which all the transformations will be cloned. Existing " "transformations will be lost." -msgstr "" +msgstr "Seitenzahl von der alle Transformationen übernommen werden. Bestehende Transformationen gehen verloren." #: forms/document_type_forms.py:42 models/document_models.py:45 #: models/document_type_models.py:60 models/document_type_models.py:146 @@ -429,7 +430,7 @@ msgstr "Alle Seiten" msgid "" "UUID of a document, universally Unique ID. An unique identifier generated " "for each document." -msgstr "" +msgstr "UUID des Dokuments. Eine eindeutige Identifikation für jedes Dokument." #: models/document_models.py:49 msgid "The name of the document." @@ -863,81 +864,81 @@ msgstr "Minimaler erlaubter Zoom in %, den Benutzer interaktiv wählen können." msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Betrag in Prozent für Ansicht vergrößern/verkleinern pro Benutzer Aktion." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Januar" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Februar" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "März" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "April" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Mai" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "Juni" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Juli" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "August" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "September" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Oktober" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "November" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "Dezember" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Neue Dokumente pro Monat" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Neue Dokumentenversionen pro Monat" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Neue Dokumentenseiten pro Monat" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Summe der Dokumente im Monat" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Summe der Dokumentenversionen im Monat" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Summe der Dokumentenseiten im Monat" #: templates/documents/document_print.html:12 msgid "Document page image preview" -msgstr "" +msgstr "Dokumentenseitenbild" #: templates/documents/forms/widgets/document_page_carousel.html:16 #, python-format @@ -953,7 +954,7 @@ msgstr "Keine Seiten für die Anzeige vorhanden" #: templates/documents/forms/widgets/document_page_image.html:13 msgid "Document image" -msgstr "" +msgstr "Dokumentbild" #: utils.py:18 #, python-format diff --git a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po index af3164ba81..b60c5e5b01 100644 --- a/mayan/apps/documents/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/el/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Έγγραφα" @@ -857,75 +857,75 @@ msgstr "Ελλάχιστο επιτρεπτό ποσοστό (%) σμύκριν msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Βαθμός μεγένθυνσης / σμύκρινσης σε μια σελίδα εγγράφου ανά χρήστη." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Νέα έγγραφα τον μήνα" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Νέες εκδόσεις εγγράφων τον μήνα" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Νέες σελίδες εγγράφων τον μήνα" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Σϋνολο εγγράφων κάθε μήνα" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Σύνολο εκδόσεων εγγράφων κάθε μήνα" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Σύνολο σελίδων εγγράφων κάθε μήνα" diff --git a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po index 5366d36a49..b52b86bfaa 100644 --- a/mayan/apps/documents/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/en/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2017-08-15 01:59-0400\n" "Last-Translator: Roberto Rosario\n" "Language-Team: English (http://www.transifex.com/rosarior/mayan-edms/" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 models/document_models.py:94 -#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:233 +#: permissions.py:7 queues.py:26 settings.py:14 statistics.py:238 msgid "Documents" msgstr "" @@ -855,75 +855,75 @@ msgstr "" msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "" diff --git a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po index e818f55f84..1abb7b0e66 100644 --- a/mayan/apps/documents/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 21:06+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Documentos" @@ -857,75 +857,75 @@ msgstr "Cantidad mínima en porcentaje (%) a permitir al usuario disminuir la p msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Cantidad en porcentaje a acercar o alejar una página de documento por cada interacción del usuario." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Enero" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Febrero" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "Marzo" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "Abril" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Mayo" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "Junio" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Julio" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "Agosto" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "Septiembre" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Octubre" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "Noviembre" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "Diciembre" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Nuevos documentos por mes" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Nuevas versiones de documentos por mes" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Nuevas páginas de documentos por mes" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Total de documentos cada mes" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Total de versiones de documentos cada mes" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Total de páginas de documentos cada mes" diff --git a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po index 9e8964ffd6..0c39ec7456 100644 --- a/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "اسناد" @@ -857,75 +857,75 @@ msgstr "حداکثر درصد(%) اندازه کوچک نمایی بوسیله msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "اندازه بزرگنمایی/کوچک نمایی یک صفحه از سند جهت تعامل با هرکاربر" -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "اسناد جدید در هر ماه" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "نسخه های جدید سند در هر ماه" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "صفحات سند جدید در هر ماه" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "مجموع اسناد در هر ماه" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "نسخه های سند کامل در هر ماه" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "صفحات سند مجموع در هر ماه" diff --git a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po index 43c131fd48..9b667d54ea 100644 --- a/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -24,7 +24,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Documents" @@ -861,75 +861,75 @@ msgstr "Minimum en pourcents (%) de la valeur du zoom arrière interactif autori msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Valeur en pourcentage du zoom avant ou arrière d'une page de document par interaction de l'utilisateur." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Janvier" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Février" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "Mars" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "Avril" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Mai" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "Juin" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Juillet" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "Août" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "Septembre" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Octobre" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "Novembre" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "Décembre" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Nouveaux documents par mois" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Nouvelles versions de document par mois" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Nouvelles pages de documents par mois" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Nombre total de documents chaque mois" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Nombre total de versions de documents chaque mois" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Nombre total de pages de documents chaque mois" diff --git a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po index 1c71f6aaa9..f19be7026e 100644 --- a/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "dokumentumok" @@ -857,75 +857,75 @@ msgstr "Egy dokumentum oldal százalékos (%) kicsinyítésének aránya egy lé msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Egy dokumentum oldal százalékos nagyításának vagy kicsinyítésének aránya egy lépésben." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Új dokumentumok havonta" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Új dokumentum verziók havonta" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Új dokumentum oldalak havonta" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Dokumentumok számossága havonta" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Dokumentum verziók számossága havonta" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Dokumentum oldalak számossága havonta" diff --git a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po index 9d9f963d99..a6fe029b56 100644 --- a/mayan/apps/documents/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Dokumen" @@ -857,75 +857,75 @@ msgstr "Jumlah minimal dalam persen (%) yang diperbolehkan bagi pengguna untuk m msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Satuan dalam persen untuk memperbesar atau memperkecil tampilan halaman dokumen per interaksi pengguna." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "" diff --git a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po index d9579814af..79ff21deb8 100644 --- a/mayan/apps/documents/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/it/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -22,7 +22,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Documenti" @@ -859,75 +859,75 @@ msgstr "Quantità minima in percentuale (%) per consentire all'utente di ingrand msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Percentuale dello zoom di una pagina del documento per l'interazione dell'utente." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Gennaio" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Febbraio" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "Marzo" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "Aprile" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Maggio" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "Giugno" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Luglio" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "Agosto" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "Settembre" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Ottobre" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "Novembre" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "Dicembre" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Nuovi documenti per mese" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Nuove versioni dei documenti per mese" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Nuove pagine di documento per mese" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Totale documenti per ogni mese" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Totale versioni di documento documento per ogni mese" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Totale pagine documento per ogni mese" diff --git a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po index 324e7fe2b2..fb30415d0f 100644 --- a/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Dokumenti" @@ -857,75 +857,75 @@ msgstr "Minimālā summa procentos (%), lai ļautu lietotājam interaktīvi att msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Summa, kas procentos palielināta vai samazināta dokumenta lappusē katrai lietotāja mijiedarbībai." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Janvāris" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Februārī" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "Marts" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "Aprīlis" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Maijs" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "jūnijs" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Jūlijs" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "augusts" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "Septembris" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Oktobris" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "Novembris" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "Decembrī" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Jauni dokumenti mēnesī" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Jaunas dokumentu versijas mēnesī" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Jaunas dokumentu lapas mēnesī" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Kopējie dokumenti katru mēnesi" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Kopējais dokumentu skaits katrā mēnesī" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Kopā dokumentu lapas katru mēnesi" diff --git a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po index 5645b90a3b..2689ecae50 100644 --- a/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -21,7 +21,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Documenten" @@ -858,75 +858,75 @@ msgstr "Minimaal toegestane documentpagina zoom percentage (%) per gebruikeracti msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Percentage in- of uitzoomen voor documentpagina per gebruikeractie." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Nieuwe documenten per maand" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Nieuwe documentversies per maand" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Nieuwe documentpagina's per maand" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "" diff --git a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po index 9dcce5fc42..d4bc694ee5 100644 --- a/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -22,7 +22,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Dokumenty" @@ -859,75 +859,75 @@ msgstr "Minimalna, procentowa (%) skala pomniejszenia strony dokumentu przez uż msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Liczba punktów procentowych powiększenia lub pomniejszenia strony dokumentu przez użytkownika." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Styczeń" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Luty" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "Marzec" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "Kwiecień" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Maj" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "Czerwiec" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Lipiec" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "Sierpień" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "Wrzesień" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Październik" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "Listopad" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "Grudzień" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Nowe dokumenty miesięcznie" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Nowe wersje dokumentów miesięcznie" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Nowe strony dokumentów miesięcznie" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Liczba dokumentów w każdym miesiącu" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Liczba wersji dokumentów w każdym miesiącu" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Liczba stron dokumentów w każdym miesiącu" diff --git a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po index 5b13b0fb1e..64d5381566 100644 --- a/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -19,7 +19,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Documentos" @@ -856,75 +856,75 @@ msgstr "Percentagem (%) mínima para o utilizador diminuir o zoom de uma página msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Percentagem de zoom in/out por interação do utilizador." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "" diff --git a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po index efb2ba0423..a80a63f916 100644 --- a/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -22,7 +22,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Documento" @@ -859,75 +859,75 @@ msgstr "Valor mínimo em porcentagem (%) para permitir ao usuário diminuir o zo msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Quantidade em porcentagem de zoom em uma página ou documento por interação do usuário." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "Janeiro" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "Fevereiro" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "Março" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "Abril" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "Maio" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "Junho" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "Julho" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "Agosto" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "Setembro" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "Outubro" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "Novembro" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "Dezembro" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Novos documentos por mês" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Novas versões de documentos por mês" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Novas páginas de documentos por mês" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Total de documentos por mês" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Total de versões de documentos por mês" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Total de páginas de documentos por mês" 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 4c34bd8f8c..f2ffba992d 100644 --- a/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-29 12:28+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -21,7 +21,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Documente" @@ -858,75 +858,75 @@ msgstr "Suma minimă în procente (%), permisă utilizatorului pentru micșorare msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Suma în procente folosită pentru a mării sau micşora un document interactiv cu utilizatorul." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "ianuarie" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "februarie" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "martie" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "aprilie" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "mai" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "iunie" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "iulie" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "august" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "septembrie" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "octombrie" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "noiembrie" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "decembrie" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Documente noi pe lună" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Versiuni noi de documente pe lună" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Pagini noi de documente pe lună" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Total documente în fiecare lună" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Total versiuni de documente pentru fiecare lună" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Numărul total de pagini de documente din fiecare lună" diff --git a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po index 4364a9ed27..ca0a593c39 100644 --- a/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Документы" @@ -857,75 +857,75 @@ msgstr "Процент уменьшения масштаба страницы д msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Процент увеличения страницы документа пользователем." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Новых документов в месяц" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Новых версий документов в месяц" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Новых страниц документов в месяц" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Всего документов в месяц" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Новых версий документов в месяц" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Всего страниц документов в месяц" diff --git a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po index 064934338f..c2d49529f4 100644 --- a/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -19,7 +19,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Dokumenti" @@ -856,75 +856,75 @@ msgstr "Naamanjši znesek v procentih (%), ki je dovoljen uporabniku za približ msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Znesek v procentih za približane oziroma oddaljene strani na dokument v uporabniškem vmesniku." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "" diff --git a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po index 5f1082f592..db5796fba4 100644 --- a/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -21,7 +21,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Belgeler" @@ -858,75 +858,75 @@ msgstr "Kullanıcıya bir belge sayfasını etkileşimli olarak uzaklaştırmak msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Kullanıcı etkileşimi başına belge sayfasında yakınlaştırma veya uzaklaştırma yüzdesi." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "Aylık yeni belgeler" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "Aylık yeni belge sürümleri" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "Aylık yeni belge sayfaları" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "Her ayın toplam belgeleri" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "Her ayki toplam belge versiyonu" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "Her ayki toplam belge sayfası" 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 69023454ce..a449a23d1c 100644 --- a/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -19,7 +19,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "Tài liệu" @@ -856,75 +856,75 @@ msgstr "Số phần trăm nhỏ nhất (%) cho phép người dùng thu nhỏ tr msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "Số phần trăm phóng to hoặc thu nhỏ một trang tài liệu mỗi tác động của người dùng." -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "" diff --git a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po index fd7d2486c0..75e5911f29 100644 --- a/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/documents/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -20,7 +20,7 @@ msgstr "" #: apps.py:109 apps.py:296 events.py:7 menus.py:10 #: models/document_models.py:94 permissions.py:7 queues.py:26 settings.py:14 -#: statistics.py:233 +#: statistics.py:238 msgid "Documents" msgstr "文档" @@ -857,75 +857,75 @@ msgstr "允许用户以交互方式缩小文档页面的最小百分比(%) msgid "Amount in percent zoom in or out a document page per user interaction." msgstr "每个用户交互放大或缩小文档页面的百分比数量。" -#: statistics.py:18 +#: statistics.py:17 msgid "January" msgstr "一月" -#: statistics.py:18 +#: statistics.py:17 msgid "February" msgstr "二月" -#: statistics.py:18 +#: statistics.py:17 msgid "March" msgstr "三月" -#: statistics.py:18 +#: statistics.py:17 msgid "April" msgstr "四月" -#: statistics.py:18 +#: statistics.py:17 msgid "May" msgstr "五月" -#: statistics.py:19 +#: statistics.py:18 msgid "June" msgstr "六月" -#: statistics.py:19 +#: statistics.py:18 msgid "July" msgstr "七月" -#: statistics.py:19 +#: statistics.py:18 msgid "August" msgstr "八月" -#: statistics.py:19 +#: statistics.py:18 msgid "September" msgstr "九月" -#: statistics.py:19 +#: statistics.py:18 msgid "October" msgstr "十月" -#: statistics.py:20 +#: statistics.py:19 msgid "November" msgstr "十一月" -#: statistics.py:20 +#: statistics.py:19 msgid "December" msgstr "十二月" -#: statistics.py:237 +#: statistics.py:242 msgid "New documents per month" msgstr "每月新文档数" -#: statistics.py:244 +#: statistics.py:249 msgid "New document versions per month" msgstr "每月新文档版本数" -#: statistics.py:251 +#: statistics.py:256 msgid "New document pages per month" msgstr "每月新文档页数" -#: statistics.py:258 +#: statistics.py:263 msgid "Total documents at each month" msgstr "每月文档总数" -#: statistics.py:265 +#: statistics.py:270 msgid "Total document versions at each month" msgstr "每月文档版本总数" -#: statistics.py:272 +#: statistics.py:277 msgid "Total document pages at each month" msgstr "每月总文档页数" diff --git a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po index c9ff27139b..df14667f85 100644 --- a/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po index 2dbefabd09..b7a0a801ca 100644 --- a/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-17 07:05+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po index 0d1d1252ee..7f00368779 100644 --- a/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po index 1946e32ba5..a2d5f4f8b2 100644 --- a/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-17 11:12+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po index 1e04a8f53d..ce8e76bccb 100644 --- a/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po index 0a120ab452..9846818809 100644 --- a/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-07-04 22:13+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po index f08d122581..c4cec8af5e 100644 --- a/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po index 599f75b0a9..ce41d62eea 100644 --- a/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po index e26403e397..e4f97ab9bd 100644 --- a/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po index 98994e7c3a..660d663a69 100644 --- a/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Mehdi Amani \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po index 47abf4d8cb..b563d55073 100644 --- a/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Thierry Schott \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po index 577d4d16eb..9ab4f570e8 100644 --- a/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/hu/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po index cbea1542d3..85efa29d21 100644 --- a/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po index a2d34b17ef..70e6eb72ed 100644 --- a/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Marco Camplese \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po index daa1a75ea9..9c6ab2c084 100644 --- a/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po index 4cc7a86d52..fbf4346629 100644 --- a/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Justin Albstbstmeijer \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po index d6f6fc7bc2..6ff6a5b897 100644 --- a/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Wojciech Warczakowski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po index c4cfecf323..0c88d95794 100644 --- a/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po index 77bcab5995..eada41ec47 100644 --- a/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po index 3c203a1086..64bfbce590 100644 --- a/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po index b9b08e02d9..b0bdb5fdad 100644 --- a/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/ru/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: lilo.panic\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po index 81d9a1df8a..19fe2ed809 100644 --- a/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po index 03b577882f..491f566f95 100644 --- a/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po index 8a39ed3a68..53af294462 100644 --- a/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po b/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po index e7c31db2a1..224bf34500 100644 --- a/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/dynamic_search/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-15 07:49+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po index 0374ef52d3..3f9c440832 100644 --- a/mayan/apps/events/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -17,39 +17,39 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "العنوان" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po index 4c1f2a618a..ec25dfe22d 100644 --- a/mayan/apps/events/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-17 07:18+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Събития" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Дата и час" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Деец" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "Събитие" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Цел" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "Обект на действие" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Именно пространство" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Етикет" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "Видяно" 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 b213a0e0a1..1db31fe07d 100644 --- a/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Događaji" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Datum i vreme" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Glumac" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "Događaj" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Cilj" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "Akcioni objekat" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Imenovani prostor" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Labela" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "Viđen" diff --git a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po b/mayan/apps/events/locale/cs/LC_MESSAGES/django.po index ef2f092ea4..5ecedfb619 100644 --- a/mayan/apps/events/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-10-22 19:26+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Audit" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Datum a čas" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Púvodce" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "činnost" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "cíl" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "Objekt činnosti" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Jmenný prostor" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Jmenovka" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "Zhlédnuto" diff --git a/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po index 3f41ee19f8..76da8f0418 100644 --- a/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -17,39 +17,39 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Etiket" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po index de1381e170..239cf34787 100644 --- a/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/de_DE/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-28 21:18+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Ereignisse" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Datum und Uhrzeit" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Akteur" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "Ereignis" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Ziel" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "Aktionsobjekt" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Namensraum" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Bezeichner" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "Gesehen" diff --git a/mayan/apps/events/locale/el/LC_MESSAGES/django.po b/mayan/apps/events/locale/el/LC_MESSAGES/django.po index 4673701b92..bdeb8d3239 100644 --- a/mayan/apps/events/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,39 +17,39 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Συμβάντα" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Ημερομηνία και ώρα" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Στόχος" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "Αντικείμενο ενέργιας" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Ετικέτα" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/en/LC_MESSAGES/django.po b/mayan/apps/events/locale/en/LC_MESSAGES/django.po index 2bbfbf522d..7a39687190 100644 --- a/mayan/apps/events/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,39 +17,39 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/es/LC_MESSAGES/django.po b/mayan/apps/events/locale/es/LC_MESSAGES/django.po index b7eaa39b2e..33f436a118 100644 --- a/mayan/apps/events/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/es/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-30 16:39+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Eventos" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Actor" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "Evento" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Objetivo" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "Objeto de acción" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Categoría" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Etiqueta" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "Visto" diff --git a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po index 0aced253c6..557af3c294 100644 --- a/mayan/apps/events/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "رویداد" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "فعال" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "هدف" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "شی اقدام کننده" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "فضای نام" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "برچسب" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po index 5e30cf7563..5e47d16476 100644 --- a/mayan/apps/events/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/fr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-09-10 20:39+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -21,39 +21,39 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Événements" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Date et heure" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Acteur" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "Événement" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Cible" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "Objet de l'action" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Espace de nommage" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Libellé" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "Vu" diff --git a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po index 921f512ca4..216552ecc9 100644 --- a/mayan/apps/events/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: molnars \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Események" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Dátum és idő" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Szereplő" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Névtér" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Cimke" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/id/LC_MESSAGES/django.po b/mayan/apps/events/locale/id/LC_MESSAGES/django.po index 883a2a2f88..976b2730a7 100644 --- a/mayan/apps/events/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-05-14 11:12+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -17,39 +17,39 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Tanggal dan waktu" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Label" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/it/LC_MESSAGES/django.po b/mayan/apps/events/locale/it/LC_MESSAGES/django.po index 68a5274cc9..71f4cc795a 100644 --- a/mayan/apps/events/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-08-28 12:14+0000\n" "Last-Translator: Daniele Bortoluzzi \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Eventi" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Data e ora" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Attore" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Destinazione" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Namespace" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Etichetta" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po index d97962a5d4..7674918ea2 100644 --- a/mayan/apps/events/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-06-28 12:35+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Notikumi" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Datums un laiks" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Aktieris" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "Notikums" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Mērķis" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "Rīcības objekts" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Vārda vieta" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Etiķete" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "Redzēts" 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 4bccd42e76..421a6bfd63 100644 --- a/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-07-27 03:42+0000\n" "Last-Translator: Ben Zweekhorst \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Evenementen" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Datum en tijd" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Acteur" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Doel" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Namespace" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Label" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po index 6ed085d252..cd7606ac5f 100644 --- a/mayan/apps/events/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Zdarzenia" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Data i godzina" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Czynnik" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Cel" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Przestrzeń nazw" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Etykieta" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po index 97b5bb96c7..89fb82437b 100644 --- a/mayan/apps/events/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -17,39 +17,39 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Events" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Actor" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Destino" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Nome" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po index a4742d1c69..d7bdeb5691 100644 --- a/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/pt_BR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Eventos" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Data e hora" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Ator" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Destino" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "namespace" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Rótulo" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" 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 805c49a329..e3d99a0587 100644 --- a/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-05-02 05:19+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Evenimente" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Data și ora" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Actor" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "Eveniment" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Ţintă" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "Obiect de acțiune" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Spațiu de nume" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Etichetă" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "Văzut" diff --git a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po index 231f7ad247..fde46707ea 100644 --- a/mayan/apps/events/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: lilo.panic\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "События" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Дата и время" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Субъект" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Объект" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Пространство имен" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Ярлык" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" 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 8a355a818c..8c716f5ee0 100644 --- a/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -17,39 +17,39 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Imenski prostor" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Oznaka" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po index 1936aa32c0..0b62482f3c 100644 --- a/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "Olaylar" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "Tarih ve saat" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "Aktör" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "Hedef" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "Alanadı" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "Etiket" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" 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 888dc7304c..c3175765d4 100644 --- a/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -17,39 +17,39 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "" diff --git a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po b/mayan/apps/events/locale/zh/LC_MESSAGES/django.po index 314df3e34a..f3c18a1f66 100644 --- a/mayan/apps/events/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/events/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:36-0400\n" "PO-Revision-Date: 2019-04-27 22:53+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:30 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 +#: apps.py:29 links.py:49 links.py:54 links.py:59 permissions.py:7 views.py:36 msgid "Events" msgstr "事件" -#: apps.py:42 apps.py:68 +#: apps.py:41 apps.py:67 msgid "Date and time" msgstr "日期和时间" -#: apps.py:45 apps.py:71 +#: apps.py:44 apps.py:70 msgid "Actor" msgstr "操作者" -#: apps.py:48 apps.py:75 +#: apps.py:47 apps.py:74 msgid "Event" msgstr "事件" -#: apps.py:51 apps.py:79 +#: apps.py:50 apps.py:78 msgid "Target" msgstr "目标" -#: apps.py:55 +#: apps.py:54 msgid "Action object" msgstr "操作对象" -#: apps.py:60 forms.py:12 forms.py:69 +#: apps.py:59 forms.py:12 forms.py:69 msgid "Namespace" msgstr "命名空间" -#: apps.py:63 forms.py:16 forms.py:73 +#: apps.py:62 forms.py:16 forms.py:73 msgid "Label" msgstr "标签" -#: apps.py:84 +#: apps.py:83 msgid "Seen" msgstr "已见" diff --git a/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po index fc4fa6a2ad..acb714349a 100644 --- a/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ar/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Label" msgstr "العنوان" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -36,6 +36,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po index 1fcbcef61a..2219510e95 100644 --- a/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/bg/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Label" msgstr "Етикет" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "Метаданни на файла" @@ -35,6 +35,10 @@ msgstr "Метаданни на файла" msgid "Return the value of a specific file metadata." msgstr "Покажете стойността на определена метаданна на файла" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "Ключ за метаданна на файл" diff --git a/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po index a7d1b09116..f4b7bd73ac 100644 --- a/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/bs_BA/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Ilvana Dollaroviq , 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" @@ -28,7 +28,7 @@ msgstr "" msgid "Label" msgstr "Labela" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -37,6 +37,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po index 2a411801b1..5b23480b4f 100644 --- a/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/cs/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Label" msgstr "Označení" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "Souborová metadata" @@ -35,6 +35,10 @@ msgstr "Souborová metadata" msgid "Return the value of a specific file metadata." msgstr "Vraťte hodnotu konkrétních metadat souboru." +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "Klíč metadat souboru" diff --git a/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po index d6e1128be0..668365f933 100644 --- a/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Rasmus Kierudsen , 2019\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" @@ -25,7 +25,7 @@ msgstr "" msgid "Label" msgstr "Etiket" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -34,6 +34,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po index dd0770ae10..51a2fce054 100644 --- a/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/de_DE/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" @@ -28,7 +28,7 @@ msgstr "" msgid "Label" msgstr "Bezeichner" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "Dateimetadaten" @@ -37,6 +37,10 @@ msgstr "Dateimetadaten" msgid "Return the value of a specific file metadata." msgstr "Gebe den Wert spezifischer Dateimetadaten zurück." +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "Dateimetadaten Schlüsselwort" diff --git a/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po index 8e58383e88..adfa6e1b5c 100644 --- a/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Hmayag Antonian , 2019\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" @@ -25,7 +25,7 @@ msgstr "" msgid "Label" msgstr "Ετικέτα" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -34,6 +34,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po index 116afb37f0..ec10f5dbd2 100644 --- a/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgstr "" msgid "Label" msgstr "" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -30,6 +30,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po index fe123e0b3c..bbd677bde4 100644 --- a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" @@ -25,7 +25,7 @@ msgstr "" msgid "Label" msgstr "Etiqueta" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "Metadatos de archivo" @@ -34,6 +34,10 @@ msgstr "Metadatos de archivo" msgid "Return the value of a specific file metadata." msgstr "Devuelve el valor de un metadato de archivo específico." +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "Atributo de metadatos del archivo" diff --git a/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po index 5f1896383d..6034a77014 100644 --- a/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fa/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Nima Towhidi , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Label" msgstr "برچسب" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -36,6 +36,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po index ef715f8832..b8582d6848 100644 --- a/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/fr/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" @@ -30,7 +30,7 @@ msgstr "" msgid "Label" msgstr "Libellé" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "Métadonnées du fichier" @@ -39,6 +39,10 @@ msgstr "Métadonnées du fichier" msgid "Return the value of a specific file metadata." msgstr "Renvoie la valeur des métadonnées pour un fichier spécifique." +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "Clé de métadonnées de fichier" diff --git a/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po index 6be905a5fa..119e1165e8 100644 --- a/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/hu/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: molnars , 2019\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Label" msgstr "Cimke" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -35,6 +35,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po index f530127d15..f4eb9fc5d5 100644 --- a/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/id/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Label" msgstr "Label" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -35,6 +35,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po index dc27f17cca..b26762e79c 100644 --- a/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/it/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Giovanni Tricarico , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Label" msgstr "Etichetta" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -36,6 +36,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po index de0fd45314..2ca5ac488d 100644 --- a/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" @@ -25,7 +25,7 @@ msgstr "" msgid "Label" msgstr "Etiķete" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "Failu metadati" @@ -34,6 +34,10 @@ msgstr "Failu metadati" msgid "Return the value of a specific file metadata." msgstr "Atgrieziet konkrēta faila metadatu vērtību." +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "Faila metadatu atslēga" diff --git a/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po index 483531dd7a..94c3519fe1 100644 --- a/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Evelijn Saaltink , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Label" msgstr "Label" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -35,6 +35,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po index 3510408f67..38b6da3554 100644 --- a/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Wojciech Warczakowski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Label" msgstr "Etykieta" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -35,6 +35,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po index 326676ff84..ece589206e 100644 --- a/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pt/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Manuela Silva , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Label" msgstr "Nome" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -35,6 +35,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po index 2884881d32..0c9518e26f 100644 --- a/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: José Samuel Facundo da Silva , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Label" msgstr "Rótulo" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -36,6 +36,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po index 3137e5d06e..1ada8a19a4 100644 --- a/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ro_RO/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Label" msgstr "Conținut etichetă" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "Metadatele fișierului" @@ -36,6 +36,10 @@ msgstr "Metadatele fișierului" msgid "Return the value of a specific file metadata." msgstr "Returnați valoarea unei metadate de fișier specifice." +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "Cheia metadatelor fișierului" diff --git a/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po index 479789785c..eada70fece 100644 --- a/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/ru/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: D Muzzle , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" @@ -28,7 +28,7 @@ msgstr "" msgid "Label" msgstr "Ярлык" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -37,6 +37,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po index 89b321ef06..76387781cc 100644 --- a/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: kontrabant , 2019\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" @@ -25,7 +25,7 @@ msgstr "" msgid "Label" msgstr "Oznaka" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -34,6 +34,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po index 822ed6e131..df193d538b 100644 --- a/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/tr_TR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: serhatcan77 , 2019\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" @@ -25,7 +25,7 @@ msgstr "" msgid "Label" msgstr "Etiket" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -34,6 +34,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po index 8a0f6e597f..a8e05783d8 100644 --- a/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Trung Phan Minh , 2019\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" @@ -26,7 +26,7 @@ msgstr "" msgid "Label" msgstr "" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -35,6 +35,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po index 48a9447227..76051cedbd 100644 --- a/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" @@ -25,7 +25,7 @@ msgstr "" msgid "Label" msgstr "标签" -#: apps.py:53 events.py:8 links.py:18 permissions.py:7 queues.py:9 +#: apps.py:52 events.py:8 links.py:18 permissions.py:7 queues.py:9 #: settings.py:9 msgid "File metadata" msgstr "" @@ -34,6 +34,10 @@ msgstr "" msgid "Return the value of a specific file metadata." msgstr "" +#: apps.py:99 +msgid "File metadata value of" +msgstr "" + #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" msgstr "" diff --git a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po index ab47004cf0..19b32d42e0 100644 --- a/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po index 4fbc4070df..c8879f68a7 100644 --- a/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-10-17 07:59+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po index 76493db480..e81035a184 100644 --- a/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po b/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po index bc390554ed..3499748a89 100644 --- a/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-10-17 11:51+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po index 77870edf36..c9555d4b84 100644 --- a/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po index 3bae44170d..c0f82a3699 100644 --- a/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/de_DE/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 22:31+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po b/mayan/apps/linking/locale/el/LC_MESSAGES/django.po index f1d4819fd5..fdc26c85b5 100644 --- a/mayan/apps/linking/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po index ac228a20cc..bde8e73e87 100644 --- a/mayan/apps/linking/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po index 90d3ca72ec..d74929bbb5 100644 --- a/mayan/apps/linking/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:33+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po index 6bfbbe200f..a3c7dcb7ad 100644 --- a/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po index 03f7c354aa..66976a9fcb 100644 --- a/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-06-17 20:40+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po index 942486b334..b54b9859a5 100644 --- a/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po index 3fce1af8f0..81c705bf59 100644 --- a/mayan/apps/linking/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-14 11:30+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po index 1f781e74aa..b831b96c44 100644 --- a/mayan/apps/linking/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po index f297cc9a65..e2edf44306 100644 --- a/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-06-28 11:18+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po index 76ff4b03c5..e2b3853ac0 100644 --- a/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po index d3b0cb4755..3d5a632d60 100644 --- a/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po index c3dcf25c01..0a8037714d 100644 --- a/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po index bdf0657695..2c53916e10 100644 --- a/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po index 0c1edbcc0f..1221e5b244 100644 --- a/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-08 07:58+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po index c5bc635977..4a034e9463 100644 --- a/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/ru/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po index 624853fb48..bc2f9659a8 100644 --- a/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po index 733f26f6ba..8ac45e7cda 100644 --- a/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po index af9c377acd..585d16b412 100644 --- a/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po b/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po index e02c5a323d..31f0d9cb3e 100644 --- a/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/linking/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:00-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-03 05:21+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po index b81d157088..5cece28bbf 100644 --- a/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po index b788efbdd8..48c42cdd48 100644 --- a/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-10-17 08:07+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po index 571c31ccb5..03f5b39c7b 100644 --- a/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po index 913838f4b1..e9119bac86 100644 --- a/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-10-14 12:28+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po index 93a25e5788..dffe8df1ac 100644 --- a/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po index f3ddddecbe..bf4d41e7fd 100644 --- a/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-11-23 10:12+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po index 5078902d7e..7c5638f2ef 100644 --- a/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po index 6436ac0e70..aa9839f5cd 100644 --- a/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po index 56cc7a8bc8..98522afafd 100644 --- a/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-28 20:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po index 8e88e626c6..694ccc1f50 100644 --- a/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po index 918b2505ff..2bccbf5fac 100644 --- a/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-05 03:51+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po index 5a2a804ad6..49a3418d1b 100644 --- a/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po index df6dc1f744..a2fbe9e769 100644 --- a/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po index c39ce6012c..f53277e509 100644 --- a/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po index 88060f58a5..ad6670452d 100644 --- a/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-31 12:36+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po index 80e7ed65c8..648334bc27 100644 --- a/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po index 3118f3cece..7e61595dc0 100644 --- a/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po index b2dde248fa..b1a8a0c26c 100644 --- a/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po index 56cd9f6a41..2ee4abd58a 100644 --- a/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po index af8d5b47cc..1bf799800c 100644 --- a/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-03-15 11:16+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po index 2e07c7643c..cd33747ff4 100644 --- a/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/ru/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po index 31ed0ec571..163c6878e1 100644 --- a/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po index b0f5a0a094..bf58420f41 100644 --- a/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po index 5b9c763e45..5b59937d25 100644 --- a/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2018-09-12 07:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po b/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po index 2fdcd4d770..8b4497ebbd 100644 --- a/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/lock_manager/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-01-24 02:59+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po index ded190f80b..86d1207370 100644 --- a/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po index bb8ca9e1e8..559a01e6df 100644 --- a/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-28 15:11+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po index d166ad7c4c..c0d0c07d3e 100644 --- a/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po index 2ec22d6ce2..6a8722fa54 100644 --- a/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po index d88349192c..3b6af91bd2 100644 --- a/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.mo index 30e53f0eea95de70d181932ca81efdea943e9024..e90d0ab401c9a31632a0c13999bbf65cd63d5a89 100644 GIT binary patch delta 2143 zcmYk-e@LBG9LMpm^Lm%w+~%frt?8cTemM2scHPoDbDP$#+0;3IG?$H)wP(7#dgWdT z7PSjSY{LyIThu5>2>K`1$fy=V&>(_E1QjGiGb9L#i2jIvK=l6Hdx{QzpVv8u=XuUK z-*cYpVq&Qy`|aAm1)~fT>xrLMm}POHhzsTYm1Z%#f{pkiHemG)W)bYdt#}g8;2d&` z)fJoFh>ci^dtJK+1GI;+N<%$JB}~VYcr(6;df*cBXA4~P!jCbCpP}ym3U9%maUB+y zm{npGs=pa^Uq5QVal8qqT>oh-)ly%hqSar*RahJ{qiSJi4Qc{WEW;*bOzT9wxZgR1 z1GJBzl6M(z!*{U|zefJ-8!meO2Mj9Jzf#cvf8c5?Aa8513{T=ltiV@L_q~mq@dG4< zwuJoI-(1MPg-G8uEJsan2|fJYwS%mZs)aDCJ+Gvq)Hk69IN;icu$}fKYVR*&2QFhX z)-hWR@GvUnqo|2Lg-ZP_HsG76`xkK|mT}Wz+_{GQKTG929U8cr{K_q;6-SYz*gn(* z54!#_)QV4`Ry>0T@CDQ!FQYQ^C(dAaty!kP>~%bY;c~Ox^v_k0|5hs38LbJ|^R#9< zfb}?ojm3Tnb?8a`wrA+I^;Zxdd^2>Y6>;6Cy)hY?H4L~ zk=>gAK`BB0EY3x#9z>;T1i!;aQ4{OtjjD%;7220z5Bo1oeCi zDkHsE$@n%*g>ANJREo}_R{Rnk#W_@p^=qQ{EpQN}a3eT`fe9Yv1n_ zcM{58b`KY&PlryWjc6jG#2tiEx{J7r(5zPw+JCLQnJ6NZH5L8(Db<>!ibv=${#)9q zaD40#LH1R&{(L#;Y;?BbHbSRWU%)+t%5a|CRR?wF|JthF>)QQJ9qwL2Td1NRFqOST zx5gi&vPnIZ2%$rwqR&xj*IujKPUwWIbP+m48wj11eZ&x<{oPNnBe_Ei#<8&NgtoMg z*iCF9az(3*6Wag#h59LMo9`^_-hxMrBAA2tu$E_-0J8M9$Fk24ROXH&xbam%Dg?v$FRkVRHY z{IfsEiresqBosA`Vrmg%MN2E9JjJ{}_nsA}`@OI8JNMr6JLh}8zuQsNzQF(5#Y>42Ec0SUWbgah=Y{69ggI-MOXUrsAi%0Mf@{t+P-H(ZSI zSZc?&W3;wfLuVZyoWvOHLSE*(H9RV`fEZ+M6OWqEwI<<8u9HzoJBZ`(Fot6z@-mls z)9-JfHgXpumFkCdV(|$M!Z)}NKjBcUB9F>I4JP3cBz2|2a$huIvLPTKO&npVS_^piAIelA)7L@P&+NgWw-)$rWa8e zxrxWI4XeY9sq}mpl7KdJIAu2=V)(xnIS6Zu3MO&@>Gl!|Q0~b&eUPs;FDJr!csG|IV%80|D z#uIqcnPy@&7NCpGI00WE$uK`r#W#>gBv{0#;`F<8w9-V}f>Tg8I)*yCv#1~3LS^6{ za!RHRRmJbE-KgJvMP;Z5wV)^pL>uv=<~fC4tjCdh{vXm&iaSv$`h;)s2Wnw2`4(N% zfx6)@)P#K~VeQa^E@q*QtQ;rdW-P{9T!c??363Pas+}F^==r}%hpd|0s55+ysn~@J zFn$dGUbq4G;{m*c-%ty$=R?_u`h5VEiAP8h%rn&d-Kfk&xS@>>#!Y?(66h$k`%usK z2|R<>u`Y~7jN^&my0=ZS9Zi-)EVkF>R*_36YqJSuO*N*LPs|{61k(w>QaO_-Ahc@! z{)6W}AF~MkqbY4_D+r}HQ5Q6qQ1SJ)xpcJSRRr1ouPNnf=^@N4oUHR#b&_eb)P7K5 z6{^t8f3DSCXs=7H6n3!bsZi6Asm&pD?q!7PL`}y!G1v<|ejc5FiXE7Ws%*6qqKM$g zf<-tFR}(s46%{9<>J2u^z)T}lyvvC^LdV$KvgzpjR}#r~u+W;OG^u!E?0_nFjqPUy zu0|dW4-`k`JAw1Dtxo?mZ$`G8o|Bta=ZhO2TjtxkZTB9ZTjr~-+`ZEmxDt2Y3Dl0b L;{?`^iHP_M;6}3t diff --git a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po index a338b6c15c..7e01161b57 100644 --- a/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/de_DE/LC_MESSAGES/django.po @@ -4,14 +4,15 @@ # # Translators: # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2018 msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-10-27 19:04+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-08 11:14+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -395,7 +396,7 @@ msgstr "Mailprofil %s bearbeiten" #: views.py:212 #, python-format msgid "Error log for: %s" -msgstr "" +msgstr "Fehlerprotokoll für: %s" #: views.py:234 msgid "" @@ -409,7 +410,7 @@ msgstr "Keine Mailprofile vorhanden" #: views.py:253 msgid "Test email sent." -msgstr "" +msgstr "Test-E-Mail gesendet." #: views.py:262 #, python-format diff --git a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po index 962667fb23..eeb823fca3 100644 --- a/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po index 8efef6a6a5..74d7bbe796 100644 --- a/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po index 825aef6ab1..71405d8f87 100644 --- a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po index 346bd0e6b4..d8fca7c43b 100644 --- a/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po index 0d7069f6ef..9a2bf1b646 100644 --- a/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/fr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po index 16ba4078a3..aa3c8618d3 100644 --- a/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po index d447b90311..b872d21eed 100644 --- a/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po index c3b364eaf1..1b19bab7d9 100644 --- a/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po index 702e46c064..0b86477ebc 100644 --- a/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po index be9201e066..3e1fd5bf08 100644 --- a/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po index 209dbdff85..9a11701201 100644 --- a/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po index 8df5d1199a..c29701185f 100644 --- a/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po index d2fc68ef2c..192bc55793 100644 --- a/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po index 15b54a91e5..d173ffe088 100644 --- a/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-29 12:27+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po index 2a306b78c0..1169d0b8cb 100644 --- a/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po index 85f5c7e53b..e79aa8bea3 100644 --- a/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po index 94f2e93fae..6f509cdd31 100644 --- a/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po index 9cfdb64cba..7504ab7dd5 100644 --- a/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po index 4a3016dd40..aafb979b23 100644 --- a/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-27 19:04+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po index 7db5a3c11c..9084866fcc 100644 --- a/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -18,17 +18,17 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "إحصائيات" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po index 9705011660..3741bf6e37 100644 --- a/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-10-17 12:12+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -19,17 +19,17 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Статистика" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "План" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "Последна актуализация" diff --git a/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po index f07eba56eb..a248fc05ee 100644 --- a/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -19,17 +19,17 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistika" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Raspored" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po index 4c7ce1fe5b..6e5a9625be 100644 --- a/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-10-18 11:50+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,17 +18,17 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistika" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Plán" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "Poslední aktualizace" diff --git a/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po index d9abb12bd1..5e925833d9 100644 --- a/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -18,17 +18,17 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistik" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Tidsplanen" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po index 5b4cde249c..999768fa50 100644 --- a/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -22,17 +22,17 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistiken" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Plan" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "Letzte Aktualisierung" diff --git a/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po index 7b23784852..87fc79f839 100644 --- a/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,17 +17,17 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Στατιστικά" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Προγραμματισμός" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po index 755252c230..c0f41b5935 100644 --- a/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,17 +17,17 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po index 90c03e1559..1d536a7f6b 100644 --- a/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 06:32+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -20,17 +20,17 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Estadísticas" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Horario" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "Última actualización" diff --git a/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po index 9e68055a46..a7936036e7 100644 --- a/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -19,17 +19,17 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "آمار" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "برنامه" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po index 503e3534ac..5d2b1c0d56 100644 --- a/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 13:30+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -22,17 +22,17 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistiques" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Planification" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "Dernière mise à jour" diff --git a/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po index 4f22bfe637..d8d9db1820 100644 --- a/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/hu/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -19,17 +19,17 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statisztika" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Időzítés" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po index 887d82febc..d9619e1f3c 100644 --- a/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -18,17 +18,17 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistik-statistik" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po index 64f3c8e512..50e47389ff 100644 --- a/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -19,17 +19,17 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistiche " #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Programma " -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po index 246a23e2b8..356691617c 100644 --- a/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-31 12:50+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,17 +18,17 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistika" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Grafiks" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "Pēdējā atjaunošana" diff --git a/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po index 5700508cad..f02dd7209a 100644 --- a/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -19,17 +19,17 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistiek" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Schema" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po index 9f432220e7..8b50f0ae92 100644 --- a/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-08-30 22:12+0000\n" "Last-Translator: Marcin Lozynski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -20,17 +20,17 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statystyki" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Harmonogram" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "Ostatnia aktualizacja" diff --git a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po index 5473f46e9a..73dc0dd855 100644 --- a/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -18,17 +18,17 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Estatísticas" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Agenda" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po index 0b8ed1ccdc..17ae1c343b 100644 --- a/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/pt_BR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -19,17 +19,17 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Estatísticas" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Programação" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po index cf907f1b40..f145232f2d 100644 --- a/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ro_RO/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -20,17 +20,17 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Statistică" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Orar" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "Ultima actualizare" diff --git a/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po index d432659590..20682bfc90 100644 --- a/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/ru/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -19,17 +19,17 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Статистика" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Запланировать" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po index bf25eb3889..255fe3ebf1 100644 --- a/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -17,17 +17,17 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po index 4b260f55e6..1572127fd9 100644 --- a/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,17 +19,17 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "İstatistikler" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "Zamanlama" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po index a619c2342f..6c93029934 100644 --- a/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -18,17 +18,17 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "Thống kê" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po index 1f541350bd..9ac0e33d1c 100644 --- a/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mayan_statistics/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:37-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,17 +18,17 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:23 links.py:33 permissions.py:7 queues.py:9 +#: apps.py:22 links.py:33 permissions.py:7 queues.py:9 msgid "Statistics" msgstr "统计" #. Translators: Schedule here is a noun, the 'schedule' at #. which the statistic will be updated -#: apps.py:32 +#: apps.py:31 msgid "Schedule" msgstr "安排" -#: apps.py:37 +#: apps.py:36 msgid "Last update" msgstr "" diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.mo index 7ca116823c8679a15965b01c024b93150ba1eaa2..0645e909825af1a64673a766cfc21d1104c2ce51 100644 GIT binary patch delta 24 fcmdlWwn1!z8!NY=p{}8&f`O5hiQ(oz*88jgRSpK4 delta 24 fcmdlWwn1!z8!NYgiLQ~kf{~GxsmbO**88jgRZRw= diff --git a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po index 296412e103..6b05d67a14 100644 --- a/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/ar/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,28 +18,32 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "البيانات الوصفية" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "نوع البيانات الوصفية" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "قيمة البيانات الوصفية" diff --git a/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/bg/LC_MESSAGES/django.mo index eabd954a7e1e47313b6618dc0f3b574d3eae22f7..66f3b5ee28d35c140195b20039038a4848b43ab7 100644 GIT binary patch delta 918 zcmXZae`w5c9LMq3$fl+F&D{LBIdKt6_xZfvpC3a5X9gbhPxlX3 zNZt}@kEG85X)ms=lV)KNLwEt(@IF4qaqMQ^$WrMV`M+gSCk`%`cHkJsF}y-Lk6B!d zKd}QRkSS^l%GY*+Y*3nmBe)SCViL#E#)I`Vg>l@B2XH42p%wgv)Kv3IX)EqRYv?Lc zOW!e#leh@e>}nfkL%wv0V3>h**tDv=U=OyEm(X@TW_g7aSS@`c&oq?B6JhB(c@9tF zj7I4O7SS48xJH_W2hmQ{!5YkA2cGf?<`F!{&*33_hTT}tZs}QmkzhAL32nk3JczQ{EEkHiC)^Xqj`^8@C(`>>yi?+ z6hkZMAZx0GckmNt@H7vm7C)jj{u^z4|0W(T-kUPXeU`{y;%n?nNsZb^_gt_&x~?fN zB0cC8+K&FB6_`Z3s@nGQql_Ta)sB31g&%A1-RRTGs`;^aG~ODFB~mT%NQ_T)r;{&4 eGoF*n_d5mGO9i{!-afD3V&3tNxTDp9xuO5K;eI&) delta 944 zcmXZaOGs2v9LMpW4NMUtX7-p~UYj18%{bbq%_ufgCN&LYG_^1{LrPlnsCiKu+*$XsYlC6G%ECaPThh6vzJJHct84uzP@mX_doG$%TNHCV(D-mnSk2;SjY{Dx^9qTL+6Mze6ZMLL1AxD)GnWXw34 z_a34-p=J+VVhqhENMQ%w!eM-igV;^C)GWJ1aG0QsWq-_aEA++7(zhgZp8EIPpVoFe~#&(IE1ypD2V_`v4UB^I4R zYS2eC9o6+zHgKW&RP9)c`;qB7j{J3xhbi#O%oFF*l@Xt(t;_NSg8o2@kKgiWJe%{x zGVxS45znPFK`VM8Kb#y(Sm9JIok|z1o\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" +"Last-Translator: Roberto Rosario\n" "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" @@ -19,28 +19,32 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Метаданни" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Получаване стойността на конкретни метаданни за документ" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Име на типа метаданни" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Стойност на типа метаданни" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Тип метаданни" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Стойност на мета данни" 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 27b729df43b5649774cb805c8fede99c67f33fc7..97534dcf00ce07f3dcad7d06db6750bf0b001372 100644 GIT binary patch delta 24 fcmZp2Y;xRiPKevkP}k5>!NADM#BlRXp_RM=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadata" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Vratite vrednost određenih metapodataka dokumenta" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Naziv metapodataka" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Vrednost metapodataka" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Metadata tip" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Metadata vrijednost" diff --git a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.mo index a2e3dc4792a34f1206f69efaa7d79385c9994845..58b11a3753b4a53abbb1590012a4324b7ec207b0 100644 GIT binary patch delta 918 zcmXZa-%Ha`7{~FCja+KKHLPXxtF_A6bjvU`SfM3?U5FWUv5JLSqU=lG&8whqgcw1v zh$y@(^r{s}g3FsIVi!SBT?7?D5QIU0LC{6-2e+HoIcLxJInQ&>`I-8VTAT{_FDfK& zmlTy0*)4VA5C-uUZpA$A!ACfbudslT2I(Gt!UH%;P&3}a9rzpvv4mT2TUa7gO<0A= zuzZnA1LcKL3^C7?y^R}~FW`23hWqd}I`|9sVr8SW38NUnuCf=UdyY~MG+6g_x8hnBlw~W@vN9@Ai zXnC6U^DX*k8L*}av`+Kbj|(`Ae{drvx!}nPP6(Ts7Z0u#_zmrdLoHkbM)4{p&>EXZ z>-;HNVMXl2x5!)b6^u&jSx6##=_FR+B-)isqdl5gw2J5PE*8-WA81`GFoW&PuVD-e zcpksvF+6%mI)_-9Lp?xis==VCVPO}I;e(8ap{ D;QMdK delta 937 zcmXZaT}abW7{~FSNt!QZq){`|e`Z$N%+-ixT9Or%cClWla20Er3&)0=Bt$d}3a_FU zLX4pDCVGQlp>&Z&!;4lBQN%8Spt|UyD7p%R==9#|8!&{0cpc~C7%s&Wp1`+wAAMEQ75s`Tagd-|yon3(1$JT<%doCmB2->1 zLVvZABA2>z3xin6d?@D)oWpzq7vOWO!*}T5A6$;E8fh-J;R@``*^jpI2wL17w0y77 z_IY2El%foNvS6JaainD!!$o)*EATF6aS}&ygdj`cq1|5W!tMAN!#ItWC&aF^@H`gd zFwVoP=-^nAfmM{ot@s)(Q5kJ+!To6K*Kj>%k=s%!ZMI`Q+W)<1Cv*=>@F`l{OSDG5 zpb!6|^3Htff3 zXpN1db^Z*kunczK2js0KRmsbn&4M4mABsdU@w>Y~`hQh&!Gj;1! g`u4H(!#<}q5e*)X#@Zu2;ZRRg==A2)FW1qE|1mp%9RL6T diff --git a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po index bb9a1d2277..5b72124c2f 100644 --- a/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/cs/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-10-14 12:19+0000\n" -"Last-Translator: Michal Švábík \n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,28 +18,32 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadata" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Vrátí hodnotu konkrétních metadat dokumentu" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Název typu metadat" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Hodnota typu metadat" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Typ metadat" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Hodnota metadat" diff --git a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.mo index 1041d1d14105b658e2108f2a62c3151b46108a75..298a66686f3851bb756952f18307bb35a21eecf8 100644 GIT binary patch delta 24 fcmZo>Z)V@{jgi~XP}k5>!NADM#BehsQxhWqRV4-* delta 24 fcmZo>Z)V@{jgi~HMAyh%!N|zU)MPUwQxhWqRb&Ps diff --git a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po index b63fb19276..a5f9c62474 100644 --- a/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/da_DK/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -17,28 +17,32 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "" 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 898b9652d3b32b492410e2468b0a8505aa6b9789..cc70b0af3cc269d592f1c45d66bc108fc056f06f 100644 GIT binary patch delta 24 gcmZ1 delta 24 gcmZ1fzcjm5JNXP}k5>!NADM#BlQhrW_^!Qg;Si delta 24 fcmeC->fzcjm5JNHMAyh%!N|zU)MWDlrW_^!Qnm(T diff --git a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po index 71da5f3798..2f1ba99480 100644 --- a/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/el/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" "MIME-Version: 1.0\n" @@ -17,28 +17,32 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "" diff --git a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po index 700656d548..d2a11e387e 100644 --- a/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,28 +18,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "" diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.mo index c936779c77cd136e9a612fd5a6ca4dbb40e1169e..c57ff19e0c441bb2ef79f89d7ac9185534f56cb3 100644 GIT binary patch delta 24 gcmbOgJ1cg>eo1aaLtR5l1p^~16T{7?Brk{n0BOPq761SM delta 24 gcmbOgJ1cg>eo1ZvQ(Yqq1tSA1BlFFtBrk{n0BQ#a9RL6T diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index 1314356d4e..5f7d97eac3 100644 --- a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-05-28 20:27+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -21,28 +21,32 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadatos" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Retornar al valor de metadata de un documento específico" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Nombre del tipo de metadatos" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Valor del tipo de metadatos" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Tipo de metadato" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Valor de metadato" diff --git a/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/fa/LC_MESSAGES/django.mo index 5ef13ecb3392baf8ec4879add037bbf78cad608b..cbf3eec45438e7561546ed4050ec16575a0fff00 100644 GIT binary patch delta 24 gcmbQ}Ini^&G9hk5LtR5l1p^~16T{6Lg&qh30Ac?JsQ>@~ delta 24 gcmbQ}Ini^&G9hjQ6I~;71tTLXQ 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "متادیتا" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "مقدار خاص مستندات متا داده" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "نام نوع متا داده" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "مقدار نوع متاداده" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "نوع متادیتا" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "مقدار متادیتا" diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.mo index 6d98d1977c25e022da9fffe3ac2527015fbee51c..d16bcb744da838d2780e0273b333a59ea5eca5a6 100644 GIT binary patch delta 885 zcmXZayGvV99Ki9PjWudwHEl4pi5j0ZYBh;b@zDkpMGFNVs0oOg6cHbIAx1%Hy@TN3 z);bi24q8D++bjhK?LVM6=u*+FwOc9G!Ghnz4TSqS=j3qC?{U6|zJ&HiO?osQi0dhj@GhWi4gQdv0z>i7Rhw&3OlU@~`;5^=97^mDKG5mqm7$Cg|IF2fjC}!g< zmf{lT;HJ)?gTXF#;x($s>e$tfI=12|5}Q~_yBDkRHO7$`-Z2|JOtI!(v-FM zig^?IaS>HT_K+)e`O3h|!a1sgFOj?C7Ts7xy(1Vz_1LyB1JAG>FR%p*c)2QpK^(yZ zj-iEq%-{?Xqnx1%f2`mmT*Yksi0Z=6*oHeuHzbLw^rpmShSg^A l`Cj;1++Kfcz_+pQaO4hX(aBg`a}Q_>k=V4B`0aROzX$1BX9fTO delta 906 zcmXZaOGwmF6vy#jSx!1mq)B7>`cIi=(KIvK%S_Wr!!#%qnxdDCnpzr7fe69hphXr0 zrl8TnMT>G1lF$QcC6vn+={ita=%z5Y+4nF5!+g%YT>j_WbMC9y$Jq3hGCD5=CmBjYIf5b-*b~COm^b*}sM3*uwSp;S%V_zS5`0ou@nwRjeX(OUikbMY^7d1cThYE~&m zu>nuwFw#_gLmRofNMHwZ81QurV;o0t2d-fyX3@7=tV0{gLrlY$ID(V78N)mT8|l%M zby&l?86)@vts`HM)ULh~c-UA$`|v7~Q$G6aUk_9*GiX#y%yKW@TN+=>&JiLcQTzQYsv37Ll0&|052^CCSf z+Z#G|FcNXXl~ti5qtkwWNn>Jms$+I4(Gz!CyE{8O2A%4AX4k2keeFHBgYi3kH8TtT HbGiQkB-L;- diff --git a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po index 5e8b13d342..f7434d6cc1 100644 --- a/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/fr/LC_MESSAGES/django.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-08-22 14:06+0000\n" -"Last-Translator: Frédéric Sheedy \n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" +"Last-Translator: Roberto Rosario\n" "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" @@ -24,28 +24,32 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Métadonnées" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Retourne la valeur de la métadonnée du document spécifié" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Nom du type de métadonnée" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Valeur du type de métadonnée" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Type de métadonnée" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Valeur de la métadonnée" diff --git a/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/hu/LC_MESSAGES/django.mo index f38da7d59ced3d43b274b35ecb8d6ee669da61f4..0a437a6f108811f6ad2c62ca642a314e39a44387 100644 GIT binary patch delta 24 gcmbQmIg4|{awcv=LtR5l1p^~16T{7$m|idf09RxO6#xJL delta 24 gcmbQmIg4|{awcvA6I~;71tTLXQtC~2hu>Rz;=Pm0fNcgjDHOc4RsAI6%355OboRRfPl*< nvA9Gxq$n}3I47|rzsO1}=0Q4IK delta 188 zcmbQj-p@Xvr#_mIfnhfgvoSC*h%-ZIIUvmntC~0@6UMz;=Pm0fNcgjDK|uOmz)S6bucm3@x<{fPl*< jvA9Gxq$n}3I47|rzsO3#F(oxy!6z{|k286Q#4`N-E_=%X&@&@v3xNc#Vvem>AkrZI?%c@L0m zl0iM_0X4`I4&W#9ik~#?IDjpK&ZHL!84`)O}s)#@ytiSj2}})BrIo z#$_}yp0AHlH=d&xuTUq-Vg=SWi40;JF5nW*;tlG=1*FkFan!5p+{iCn)P^bS#(nI- zJJh><%WM{T4a>4Z){xH(M|!P*$zw!qHyMgK_O`oaClgM@H=kHtcajNoZD%u)d9EBc F{s6yGN8SJc delta 643 zcmXZZJuE|E6vpv`#z!N*iW-V*A=F1(kv6S}&;$uVg4pDW4yAFWy%IX;EZw9_!)QW+ zNQl)U*u^AaGBX$${Ezl7zxTY!J?A-jfBgr6i)d*kT_O^x5%G%1b*+dG-?0*1bt3iX z!4B-lNu0w5%%c;}unljp0-w=?uc&=~inW7g26YEk;aI(7{u@nm!Ax1fUbKoHA=%^s zwb2V|kT(os87VkQ1UqpCThT@haDaI{M-!)9A`^IuT7S7RBBdM_8w-h+Q8!pc1J_Xp zXK@H~r~@8RgMA>&$u|bDvPonZBgjnI!4}No3?Ab=exm*t%`_J_UqlBNG1LI-SdK~b z;cl@$LH+R(+wl%{qj#*v9=AvcgSdoSIE(kF8@oxPb9Pamu6wU|*hd|h!vQ?RE__0L z+pnv*qun{-3-tv;hTk6^40?Th&S^7c_bnvN%~Zm)tz_7Unw#-hB4&(PN!v\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" +"Last-Translator: Roberto Rosario\n" "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" @@ -19,28 +19,32 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadati" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Ritorna il valore di un metadato specifico del documento" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Nome tipo metadato" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Valore del tipo metadato" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Tipo di metadato" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Valore metadata" diff --git a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.mo index 29c724c8c98a77d0962e605c22f2977440837abd..58ad9ef72dcc6129476b4e13fb30fcf9263087ca 100644 GIT binary patch delta 920 zcmXZa&r4KM6u|MLPUg&%p_67dI^(bWF%Hd}riIf=5;1flh7rMr!6&(>#0PH%RFYmT zvJi$sY~jj<69jEC7nz$@{R4vQz_kU1ix3xn5AO|+`P_Fe_uPBVd0Y9{`7iS|&YLO` z`?|BGS`H_jwp<9!7)xPkR}gc|2B zUcykjIMT%++AdOyBiMxF$X&!ly~qkS;wrLNHa))~j~w!M1y8UWeG%7w)cFUf2NzJ| zy~HT4MI4blgU?K8rgh9}fH0Dj3}Xuxa32?O9g{@U^`BV4Bh*ZXJ4GJjI~>3hti}jg z)?p`J#2D(uZ#&*X7RQ))5{y~ z1Xl149-_9$3DS7&T^H(x2^_~ce26=!0jqlnRwdGaBrC7jbQiZ#Tk{LGwEyruo?#Hn z{jQsyA2H4R4&LH?IrbL9)Qh3?p_V9%+LCG1QZ1lnUdAP?AZJJ$U+iTZMFVr5tEdU= z;XU+IzDdmBEN)|iNJ@9x)L y2pNVEH-@5#WIAQU68r)aX0a5{+2%rV-Yi*mI-0d+=j@V&Mbmy_?FL$#uAT$)TWQPy delta 946 zcmXZa%TE(g6u{vFYIziD+mTdVOjwZU z&POCh7a}2P+$c#`kWdqYE7;)9mH&VVZcSMDJLxo&esj;AIrpA(XCe79xoYooKh=oj zJ4H^3NZT=yejLUIOkpcN!V|cF53z)6*wQ8P1h?@FjvcS&$>Cwfix|f*7{EQ$JpQ0a z6NZA~N-sAt0zRC^cAUkd_zZO;i`aroNDe7`?jV=!@^=se-6AJ3=sAiSe}KAh5jEd? zG;pQc6-jdQgMe1rLsSz)k)mV@k6;nk@fE(t39{+@Z=A+G)Jms%MDF2dJcj|QtHn!L zk0V%zH&8bocfAQ4ZxVRyS-~;Jb?io+#Pj$TJMcSR$6ubozG{31wbf5iH~s=SEm=kr zD>#U|s7K`XaqxO}mr-B1kK;Olw{QzJVb^JqTn*m`QmlO7rD5DaJ(_>0t!+9h@)A4H zk0sBt=QoTI-@*$lBR=}14@QxgTtjVn24d~-gZE*Oc~^xWorwqT58EXHAn WF%Ml$WvsLvp2=mdl>c_NxBUldn06Te diff --git a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po index fcf2755028..a40ec73ff4 100644 --- a/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/lv/LC_MESSAGES/django.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-06-28 07:05+0000\n" -"Last-Translator: Māris Teivāns \n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" +"Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,28 +18,32 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadati" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Atgrieziet konkrēta dokumenta metadatu vērtību" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Metadatu tipa nosaukums" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Metadatu veida vērtība" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Metadatu veids" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Metadatu vērtība" 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 9a2adb560d6bd230f7d6b683985acd7bc58c21e8..34b75a944c66be318e605c50ebc2bb2c65caab87 100644 GIT binary patch delta 24 fcmcaCcv)~mF)O#Bp{}8&f`O5hiQ(ot)=*{uU2z7a delta 24 fcmcaCcv)~mF)O!$iLQ~kf{~GxsmbO#)=*{uU9bkL 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 b3b186f7d1..ed6eca0a1a 100644 --- a/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/nl_NL/LC_MESSAGES/django.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -19,28 +19,32 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadata" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Metadata soortnaam" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Metadata typenaam" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Metadata type" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Metadata waarde" diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.mo index 53c63efe8fcf0ec945713a9cd74f5c1b27de6f56..94584d67dcc8a18fc8a46f09d038bcfab182a31b 100644 GIT binary patch delta 24 fcmdmDy2W&Z6F;}1p{}8&f`O5hiQ#5n{&a2tTBZhi delta 24 fcmdmDy2W&Z6F;|siLQ~kf{~GxsmW$v{&a2tTIB|T diff --git a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po index c3ec5860ea..ff789ba5f5 100644 --- a/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pl/LC_MESSAGES/django.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" "MIME-Version: 1.0\n" @@ -21,28 +21,32 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadane" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Zwróć wartość metadanej konkretnego dokumentu" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Nazwa typu metadanych" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Wartość typu metadanych" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Typ metadanych" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Wartość metadanych" diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.mo index 13fe4a5623983d404f8a3931ac2fe7568188b3ee..18f63fd62e1944a7f3e24bc171aeeea5da0ff004 100644 GIT binary patch delta 24 fcmew^_+4;=AuG3`p{}8&f`O5hiQ#4&*4@kiUdIN` delta 24 fcmew^_+4;=AuG3miLQ~kf{~GxsmW#=*4@kiUj_!% diff --git a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po index 6cc71cf54f..343df4603a 100644 --- a/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt/LC_MESSAGES/django.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" "MIME-Version: 1.0\n" @@ -20,28 +20,32 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadados" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Tipo de metadados" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Valor de metadados" 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 2620c90c7d0798fc5f8334c26d939d9d22cb921e..adef985a52f8fba6d40a9a0d57d27e1ccb27545c 100644 GIT binary patch delta 24 gcmca?ciC>kOhIl#LtR5l1p^~16T{6*1lRKd0BTVO#sB~S delta 24 gcmca?ciC>kOhIk~6I~;71tTLXQV!Z diff --git a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po index 40c8241ea1..30ab3b958d 100644 --- a/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/pt_BR/LC_MESSAGES/django.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -22,28 +22,32 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadados" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Devolver o valor de um documento específico de metadados" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Metadados nome do tipo" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Metadados valor do tipo" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Tipo de metadados" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Valor de metadados" 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 9b423424dcd7019ccaa8338eb2d3ab3c9823058e..a684a4b8c8cecebbe5991f02896bf0f55dedbfa9 100644 GIT binary patch delta 24 fcmcZ}e?5M~eo1aaLtR5l1p^~16T{7?BzeUEbBqVm delta 24 fcmcZ}e?5M~eo1Zv6I~;71tTLXQ19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadate" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Obține valoarea unei metadate specifice pentru document" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Numele tipului de metadate" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Valoarea tipului de metadate" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Tip de metadate" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Valoare metadate " diff --git a/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/ru/LC_MESSAGES/django.mo index 2d950e83df2f598d1a6499679056285fb59cbeae..fca1e48bcf794592d7a3dd7541e79e836f99a6db 100644 GIT binary patch delta 24 fcmexo_|I^|3@&a%LtR5l1p^~16T{7mxuW?1Zhi-! delta 24 fcmexo_|I^|3@&a16I~;71tTLXQ=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:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Метаданные" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Тип метаданных" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Значение метаданных" 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 6534c796378e431432b89fa4b5d3c168d35e3716..5d98cf694b13745b1e32d63d6a2bcf1af6fe23a1 100644 GIT binary patch delta 24 fcmZ3_ww`T6B_p??p{}8&f`O5hiQ(oJ#?_1fRrLm* delta 24 fcmZ3_ww`T6B_p?iiLQ~kf{~GxsmbOR#?_1fRx}2s 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 ebad581fa9..a12f7ef87a 100644 --- a/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/sl_SI/LC_MESSAGES/django.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -17,28 +17,32 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Tip metapodatkov" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Vrednost metapodatkov" diff --git a/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/tr_TR/LC_MESSAGES/django.mo index c7adeb39133dc6fd597be4caa8c884e6393e2405..b73353f25c7d434ecca31d142145baead712a1df 100644 GIT binary patch delta 24 gcmX@&aKvH5G9hk5LtR5l1p^~16T{6Lg(mX?0BHXQtN;K2 delta 24 gcmX@&aKvH5G9hjQ6I~;71tTLXQ 1);\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Metadata" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "Belge metadata sının değerini döndür" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "Meta veri türü adı" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "Metadata tipi" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Meta veri türü" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "Meta veri değeri" 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 871dbb85ee5e49715b6c4ded2cc3ec3dd1a707ca..4a4da0d3f4efcd75cd1e35df952e36d74c7cbcb7 100644 GIT binary patch delta 24 fcmaFH^NeRh0W-Iup{}8&f`O5hiQ(pI=GROBV7muP delta 24 fcmaFH^NeRh0W-IOiLQ~kf{~GxsmbPQ=GROBVEPAA 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 05bbf049da..28b49dab13 100644 --- a/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/vi_VN/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" "MIME-Version: 1.0\n" @@ -18,28 +18,32 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "Siêu dữ liệu" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "Loại siêu dữ liệu" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "" diff --git a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.mo index 640ef0c70962bbf345263b9d17fe45832b964a8f..881d8585996356de4951a117586b9d26b19a3216 100644 GIT binary patch delta 24 gcmX>Rd?I+meo1aaLtR5l1p^~16T{7?B>(XP0C1%UhX4Qo delta 24 gcmX>Rd?I+meo1Zv6I~;71tTLXQ(XP0C408jsO4v diff --git a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po index 5898b3270e..c225ae3a16 100644 --- a/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/zh/LC_MESSAGES/django.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" -"PO-Revision-Date: 2019-04-27 22:54+0000\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" +"PO-Revision-Date: 2019-11-19 02:41+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" "MIME-Version: 1.0\n" @@ -18,28 +18,32 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:67 apps.py:153 apps.py:158 events.py:7 links.py:48 permissions.py:7 +#: apps.py:66 apps.py:152 apps.py:157 events.py:7 links.py:48 permissions.py:7 #: queues.py:9 settings.py:10 msgid "Metadata" msgstr "元数据" -#: apps.py:99 +#: apps.py:98 msgid "Return the value of a specific document metadata" msgstr "返回特定文档元数据的值" -#: apps.py:105 +#: apps.py:99 +msgid "Metadata value of" +msgstr "" + +#: apps.py:104 msgid "Metadata type name" msgstr "元数据类型名称" -#: apps.py:109 +#: apps.py:108 msgid "Metadata type value" msgstr "元数据类型值" -#: apps.py:184 apps.py:192 forms.py:123 models.py:93 models.py:304 +#: apps.py:183 apps.py:191 forms.py:123 models.py:93 models.py:304 msgid "Metadata type" msgstr "元数据类型" -#: apps.py:187 apps.py:196 +#: apps.py:186 apps.py:195 msgid "Metadata value" msgstr "元数据值" diff --git a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po index a9a65c659b..fbe63135ca 100644 --- a/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-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" @@ -17,7 +17,7 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "" diff --git a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po index 963b2569a1..83438ceec8 100644 --- a/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-17 09:52+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Огледално отразяване" 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 8ee664457a..3101113e73 100644 --- a/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-08-09 10:54+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Mirenje" diff --git a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po index 9063a67ac7..00d66386c1 100644 --- a/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-14 12:25+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Zrcadlení" diff --git a/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po index e6ea04dd4e..0bc1879653 100644 --- a/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "" 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 4dd1a34c28..f50e06545e 100644 --- a/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/de_DE/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2017-09-23 21:41+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Spiegelung" diff --git a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po index 54e1b96712..9b434ad57a 100644 --- a/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-01-07 14:00+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "" diff --git a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po index 6a326dc996..80104bd364 100644 --- a/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "" diff --git a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po index 6e00a61b76..de80feb0e3 100644 --- a/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-04-30 16:40+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Reflejado" diff --git a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po index 4c7954ea4c..896ae6c77c 100644 --- a/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-03-12 14:24+0000\n" "Last-Translator: Mehdi Amani \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "معکوس کردنMirroring" diff --git a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po index 7e09f130a7..f7bba9a4ff 100644 --- a/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/fr/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-04-11 12:04+0000\n" "Last-Translator: Yves Dubois \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Duplication" diff --git a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po index a1d324c299..d39f9cff42 100644 --- a/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: molnars \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Tükrözés" diff --git a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po index 7272dec6a4..117d665e5d 100644 --- a/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-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" @@ -17,7 +17,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "" diff --git a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po index daee070c60..cf17a094bb 100644 --- a/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2017-09-23 21:41+0000\n" "Last-Translator: Marco Camplese \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Mirroring " diff --git a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po index 90d0bc9129..9fe6849371 100644 --- a/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-05-31 12:41+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Spoguļošana" 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 6e3ae96efb..723042df2e 100644 --- a/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: Evelijn Saaltink \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Spiegelen" diff --git a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po index 48f242ce8d..1527960b5b 100644 --- a/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:11+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "" diff --git a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po index 6e0254d083..750755b6d6 100644 --- a/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-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" @@ -17,7 +17,7 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "" 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 9463f6f80c..4c63920f86 100644 --- a/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/pt_BR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Espelhamento" diff --git a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po index f9c10d6248..eca1c50f77 100644 --- a/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-03-15 11:18+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Oglindire" diff --git a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po index 8b6b7892ff..b0f15ddecd 100644 --- a/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2017-09-22 15:28+0000\n" "Last-Translator: lilo.panic\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Зеркалирование" 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 c4e2fc9e73..1d4d6c07f9 100644 --- a/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-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" @@ -17,7 +17,7 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "" diff --git a/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po index 4e69c9f3fd..e663527ea1 100644 --- a/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2017-09-22 21:28+0000\n" "Last-Translator: serhatcan77 \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "Yansıtma" 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 ea225452ee..f1f373360e 100644 --- a/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-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" @@ -17,7 +17,7 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "" diff --git a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po b/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po index 038a57f0f0..f3853bdc22 100644 --- a/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/mirroring/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-01-24 02:58+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:16 settings.py:7 +#: apps.py:15 settings.py:7 msgid "Mirroring" msgstr "镜像" diff --git a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po index 50e235a69b..90b48c96ff 100644 --- a/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-03-16 22:54+0000\n" "Last-Translator: Yaman Sanobar \n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po index e95119b74c..d7b11c9458 100644 --- a/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-17 09:05+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po index b53ed09435..20909d17ff 100644 --- a/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po b/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po index 1fba5e6dc6..a69274e192 100644 --- a/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-17 12:13+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po index 82f685d611..3b73dc819d 100644 --- a/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-11-12 14:13+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po index 4d30657ac6..0d504505fa 100644 --- a/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-11-16 15:26+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po b/mayan/apps/motd/locale/el/LC_MESSAGES/django.po index 48591eb36c..1c80775c11 100644 --- a/mayan/apps/motd/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po index 4e7ea124b9..59291e6435 100644 --- a/mayan/apps/motd/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po index eadcb3f622..afefdbbfa2 100644 --- a/mayan/apps/motd/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-04-14 03:39+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po index 589c512629..0582cf0e14 100644 --- a/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fa/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po index ba320bb9e3..f78d515c43 100644 --- a/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/fr/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-05-05 03:48+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po index 08b09f9f65..4cd2a53d1f 100644 --- a/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po index 7c8096e569..0a80e45164 100644 --- a/mayan/apps/motd/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-05-12 17:43+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po index 6e2923449c..0dbd80c2dd 100644 --- a/mayan/apps/motd/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po b/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po index b6957c60c2..d51ec66813 100644 --- a/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-05-31 12:38+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po index 58d676c3ea..11cb0efefa 100644 --- a/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po index 539344ea5b..47270ecad3 100644 --- a/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-08-30 22:14+0000\n" "Last-Translator: Marcin Lozynski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po index 165c94b2f2..41329bd701 100644 --- a/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po index 6fd0fa446c..b6967ba904 100644 --- a/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/pt_BR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-12-28 00:06+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po index e5f46e0add..ed1975a39f 100644 --- a/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-03-15 11:59+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po index 47ea7d00f7..423138480f 100644 --- a/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po index a114c9dcff..1ac2be93f3 100644 --- a/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po index 71f8103652..10fe8ec6f0 100644 --- a/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po index 3e89277a72..8fec791a78 100644 --- a/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2018-09-12 07:48+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po b/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po index 80457cef84..d2e447fe71 100644 --- a/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/motd/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:01-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-01-24 07:16+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po index 6ffe56edff..91b161caea 100644 --- a/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po index 6251e875e8..d57145f692 100644 --- a/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po index 39c14c949f..aea1fbbadb 100644 --- a/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/" diff --git a/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po index 5cabd69948..33c1a52af3 100644 --- a/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po index ae904dfb62..edb57ab113 100644 --- a/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po index 40488b1f30..a9b168f778 100644 --- a/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po index d2f094ed32..ff672e0f8c 100644 --- a/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/el/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po index ae904dfb62..edb57ab113 100644 --- a/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po index 611df5dd11..d95194a885 100644 --- a/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po index 11d7064eff..f68fcb357e 100644 --- a/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po index 589107f77a..a849a8a3e5 100644 --- a/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po index d38256578b..888f25213c 100644 --- a/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po index 2f7056638a..242f9d4ea8 100644 --- a/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po index 1d2e08559d..5db69d08b6 100644 --- a/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po index 57c8920805..0adef6d5d0 100644 --- a/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po index 4bc7598b5b..caa933016a 100644 --- a/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po index e6febee147..76cf1af7d1 100644 --- a/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/" diff --git a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po index bb59c018c4..bb62393283 100644 --- a/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po index 4b474521a1..3e947ea18e 100644 --- a/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po index 74f100ca0f..c45dea39a0 100644 --- a/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po index da84b64f92..bce0516fc9 100644 --- a/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/" diff --git a/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po index 576d85e20f..39c7588be3 100644 --- a/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-" diff --git a/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po index ae904dfb62..edb57ab113 100644 --- a/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po index f82529e467..f5c71467c3 100644 --- a/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2015-09-24 05:15+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/" diff --git a/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po b/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po index ae904dfb62..edb57ab113 100644 --- a/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/navigation/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po index 180f8660b3..8779e02f79 100644 --- a/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -18,16 +18,16 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "" diff --git a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po index cdf3f8fbbb..71a4e7ffb5 100644 --- a/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-17 10:39+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -19,16 +19,16 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Дата и час" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Резултат" 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 b271d6e85d..01edc228fe 100644 --- a/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -19,16 +19,16 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Datum i vreme" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Rezultat" diff --git a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po index 76ca1eb4f4..896df4aaa9 100644 --- a/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-18 09:07+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,16 +18,16 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Datum a čas" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Výsledek" diff --git a/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po index 3cd6ce80af..7889da6399 100644 --- a/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -17,16 +17,16 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Resultat" 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 59eacd8704..e8b59a35b2 100644 --- a/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/de_DE/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 18:25+0000\n" "Last-Translator: Berny \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -25,16 +25,16 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR-Schrifterkennung" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Datum und Uhrzeit" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Ergebnis" diff --git a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po index ee82dcf902..d9c783048d 100644 --- a/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,16 +17,16 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "Οπτική Αναγνώριση Χαρακτήρων" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Ημερομηνία και ώρα" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Αποτέλεσμα" diff --git a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po index d0c9e5e9ba..70b324f82b 100644 --- a/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,16 +17,16 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "" diff --git a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po index afcc203bac..e396d0413f 100644 --- a/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 21:11+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -20,16 +20,16 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Fecha y hora" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Resultado" diff --git a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po index 919cef2ed9..7f20c7032a 100644 --- a/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -18,16 +18,16 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "تاریخ و زمان" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "جواب" diff --git a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po index e659e6a345..824dc178bf 100644 --- a/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/fr/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -24,16 +24,16 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "ORC - Reconnaissance de caractères" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Date et heure" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Résultat" diff --git a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po index 524aed668c..b7b77f16d5 100644 --- a/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,16 +18,16 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "Karakterfelismerés" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Dátum és idő" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Eredmény" diff --git a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po index e35602a952..30a9f36f80 100644 --- a/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -17,16 +17,16 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Tanggal dan waktu" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "" diff --git a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po index 785350a306..7518e79189 100644 --- a/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -19,16 +19,16 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Data e ora" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Risultato" diff --git a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po index f00761d7d0..036183572f 100644 --- a/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,16 +18,16 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Datums un laiks" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Rezultāts" 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 7cfe79a4b6..f5af18c353 100644 --- a/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -20,16 +20,16 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Datum en tijd" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Resultaat" diff --git a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po index 6a80948423..1db13078b8 100644 --- a/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -19,16 +19,16 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Data i godzina" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Wynik" diff --git a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po index 79e371ef16..13b78654c7 100644 --- a/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -20,16 +20,16 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "" diff --git a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po index 316de1ca39..485695973e 100644 --- a/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -20,16 +20,16 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "Enviar para a fila de OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Data e hora" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "resultado" 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 ef5edb1dd1..79fc11b3ec 100644 --- a/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-10-29 12:30+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -19,16 +19,16 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Data și ora" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Rezultat" diff --git a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po index 10ef304eb9..db83aa6c45 100644 --- a/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/ru/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -19,16 +19,16 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "Распознавание текста" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Дата и время" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Результат" diff --git a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po index 1a769a4733..964574b85e 100644 --- a/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -17,16 +17,16 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "" diff --git a/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po index c6c1b73aa7..3f45b18ced 100644 --- a/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,16 +19,16 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "Tarih ve saat" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "Sonuç" 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 6177d27be8..24b569a67b 100644 --- a/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -18,16 +18,16 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "OCR" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "" diff --git a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po b/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po index 2a78a1884c..53a7ba89a9 100644 --- a/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/ocr/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:38-0400\n" "PO-Revision-Date: 2019-09-24 04:46+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,16 +18,16 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:56 apps.py:131 apps.py:135 events.py:7 links.py:15 links.py:21 +#: apps.py:55 apps.py:130 apps.py:134 events.py:7 links.py:15 links.py:21 #: permissions.py:7 queues.py:8 settings.py:7 msgid "OCR" msgstr "光学字符识别" -#: apps.py:123 +#: apps.py:122 msgid "Date and time" msgstr "日期和时间" -#: apps.py:126 models.py:76 +#: apps.py:125 models.py:76 msgid "Result" msgstr "结果" diff --git a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po index aa0afe85d7..cf2841f0f6 100644 --- a/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po index 9d79906ac6..f99216fe4f 100644 --- a/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-17 10:50+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po index 1bc590679e..14c4942451 100644 --- a/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po index bc02801d83..605445138a 100644 --- a/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-18 10:50+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po index 66867ae7c0..7ab97ea324 100644 --- a/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.mo index 7d758c02db9dd7707bcbf82a1a047d29f97d3651..cbcb31bb105437556e430e4249004f52c4c2e5f7 100644 GIT binary patch delta 774 zcmXZZ-%C?r7{Kvob8Dts>MXO(;)p*$)bLP|iD(xgDu$MZL{PoR!HsQauyg9dqFn_N z6v2oD?+m=PnBKz zWs^=biJeM9zGFS(ebmB3jN@NCgQ2hpP0kTWNhco19&Eu2$ctqX^*y(+6%9_{5^CKp zMp<7z)6t1Psve-8^bgYHA0f)EgxQU5Bp#{Qg<3a=y5KcjX5KWeGX7axIhfDx5{#Eo z>)+r5e2*E{mp-cL%L?kkYe=n>QLlI#Y4VlOgnM`zf1_?7K!{-sSzD5*pQr=R;uWOH zJV8&sfcm}^7WK+JI{K}i;R$?=NnFQS{D^uJElkq?+fX;!i@NY|H9v{^$!=qUo4AiB z89!o@Zs;Xy-8$;QwqjDs1lt2$rRTxXKzI3D@J=W^m-kJ!)E>DvX50M(gO+U%*%x~U zc1#39>KXElxO`Oj;BjtCIFX2Sm^%fn^ U}Xqj%e-LxaH6 zPC7bC=ppJDp$9z+c@RXr2%>_57d-@$7rXfV_3q_)pU?CE`906G8l8$Z_JYnY!WZZ7 z<<{N6eWZn4C7V2fh;Up)O8-@7#APjiBO=w^_PyGf=eP9t41 zgnCmW*w8n6Nx_ek7{xk1#c9+VIBfSHqXv40x^X9ybzT_tsS+6BCT?Sh`a=e3KyOeF zR7bl12c-dC7il$(fJ0hejbTT8Vb^%&Y~@@p22z=1`fetd|A!`fKX6> 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 d4a363e3f5..a234604a22 100644 --- a/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/de_DE/LC_MESSAGES/django.po @@ -5,6 +5,7 @@ # Translators: # Berny , 2015 # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2018 # Mathias Behrle , 2014 # tetjarediske , 2012 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" -"PO-Revision-Date: 2019-06-29 06:22+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" +"PO-Revision-Date: 2019-11-08 11:14+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +33,7 @@ msgstr "Unzureichende Berechtigungen." #: dashboard_widgets.py:15 msgid "Total roles" -msgstr "" +msgstr "Rollen insgesamt" #: events.py:12 msgid "Role created" diff --git a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po index 106b699523..8adb3d779e 100644 --- a/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po index de82017a7d..c2e934ee83 100644 --- a/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po index b51ab05022..6d080a2a4f 100644 --- a/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-07-05 06:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po index 12c13288d9..b48d57213c 100644 --- a/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po index fdbfbf5915..d01d971aa6 100644 --- a/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-07-02 15:44+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po index 18403669b4..2e9981d638 100644 --- a/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po index 4331d3f608..200fea90b3 100644 --- a/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po index 317ebe5d3d..7b3d8b5b42 100644 --- a/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/it/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po index 7338689bd5..28aac56c08 100644 --- a/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-07-01 05:54+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po index 5fb5b2050e..668a11d964 100644 --- a/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po index 68748991a1..faac9ce0bb 100644 --- a/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po index b5e90386aa..3275ba6952 100644 --- a/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po index d45fee938f..8f271f30f8 100644 --- a/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/pt_BR/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po index 7e4d55742a..4297c78cd8 100644 --- a/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ro_RO/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-09-03 08:36+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po index 37039655d0..42035df754 100644 --- a/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po index cad2472f82..87b70fc554 100644 --- a/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po index f924caa671..1e1fecf64a 100644 --- a/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po index 4834fec510..a604b45525 100644 --- a/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po index 9e1423fa1d..6f39375b90 100644 --- a/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/permissions/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po index ce02aa4eb9..798e27957a 100644 --- a/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ar/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mohammed ALDOUB , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" diff --git a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po index 1f3e514530..a33d800cb2 100644 --- a/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bg/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po index 296e95a845..d7931c7e53 100644 --- a/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/bs_BA/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: www.ping.ba , 2019\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po index 402562bc1d..177207ca6c 100644 --- a/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/cs/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" diff --git a/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po index ea89aaec0d..00bf088377 100644 --- a/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po index e656d49b48..dac8d3402c 100644 --- a/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/de_DE/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po index b509c201b2..65f74e4b6b 100644 --- a/mayan/apps/platform/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/el/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/en/LC_MESSAGES/django.po b/mayan/apps/platform/locale/en/LC_MESSAGES/django.po index 291bd89650..8e4fcbba7b 100644 --- a/mayan/apps/platform/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/platform/locale/es/LC_MESSAGES/django.po b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po index b97c299692..1f10ae2dbf 100644 --- a/mayan/apps/platform/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po index d09fef12ba..2c13e016a6 100644 --- a/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fa/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Mehdi Amani , 2019\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po index cc9116a7e5..46dbd11ce0 100644 --- a/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/fr/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Frédéric Sheedy , 2019\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po index 60f69dc8ad..6ca4342ddf 100644 --- a/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po index 891c3a7474..46eb11efd9 100644 --- a/mayan/apps/platform/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po index 3f5125fdb4..2b417c910d 100644 --- a/mayan/apps/platform/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Marco Camplese , 2019\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po index f1a0869423..f4c1656946 100644 --- a/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" diff --git a/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po index 7f6c1c14df..6913387823 100644 --- a/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/nl_NL/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Evelijn Saaltink , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po index 3fa37d6724..612c85228c 100644 --- a/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Marcin Lozynski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po index 1a4fd0e00f..967362417b 100644 --- a/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Manuela Silva , 2019\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" diff --git a/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po index 2e0b2dceed..1644537411 100644 --- a/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Rogerio Falcone , 2019\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po index 0768524b45..1ce76356e0 100644 --- a/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ro_RO/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" diff --git a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po index 1596629f77..707cbffa43 100644 --- a/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/ru/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Sergey Glita , 2019\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po index d2c7c8dcca..3b30b718c9 100644 --- a/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po index e1031cb065..766996b4b6 100644 --- a/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po index bcb6e16638..835b5bbc0a 100644 --- a/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po index 8a6cd07418..5be6688266 100644 --- a/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/platform/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" "MIME-Version: 1.0\n" diff --git a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po index a583e6edd5..d6dbae4bc8 100644 --- a/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "" 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 40bcdbdb1b..e02047510f 100644 --- a/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-17 10:52+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" 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 613ef22538..52584a6b21 100644 --- a/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-08-09 10:42+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API " diff --git a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po index 69663da3bb..76e3831a79 100644 --- a/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-18 10:50+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" diff --git a/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po index 6eb09c48a6..23e6f839a2 100644 --- a/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-11-05 13:49+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" 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 0ccd717091..801915a255 100644 --- a/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/de_DE/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-11-16 18:16+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -21,7 +21,7 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" diff --git a/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po index 8530200e3c..dbf36ea0fe 100644 --- a/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "" 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 44464c857a..e9b4b8f5c3 100644 --- a/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "" 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 c9589fb0d5..351ffcf9bb 100644 --- a/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/es/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-14 03:29+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "API REST" 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 1b52b9e720..95869f54d5 100644 --- a/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" 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 501289bd1a..08b93df44b 100644 --- a/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/fr/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-11 11:52+0000\n" "Last-Translator: Yves Dubois \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -20,7 +20,7 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "API REST" 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 50fa9ed876..a69bddc578 100644 --- a/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" 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 7790a2788c..31c8d5fea5 100644 --- a/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "" 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 676a977bb7..4b0e881027 100644 --- a/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/it/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" diff --git a/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po index 56e4a81355..f7de30e3db 100644 --- a/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-31 12:45+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" 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 9d89c1ad48..159ba10ee8 100644 --- a/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" diff --git a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po index 88eded5990..0beb1aaeef 100644 --- a/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pl/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -19,7 +19,7 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" diff --git a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po index 4f7e0c219c..0075d9d4f1 100644 --- a/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "Documentação API" 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 9b36113a3c..c82344c3ce 100644 --- a/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -20,7 +20,7 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" diff --git a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po index d3c6cdbb7b..77f6dd4d90 100644 --- a/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-03-15 11:57+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" 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 e5031a4081..94e5485ac7 100644 --- a/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" 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 bc7c151677..e2a87cf2c9 100644 --- a/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "" diff --git a/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po index 7ec9bc4749..b24e696beb 100644 --- a/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" 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 68cd347030..bf38dab0dd 100644 --- a/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-04-10 08:25+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -17,7 +17,7 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "" diff --git a/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po b/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po index 5f2997819f..73780f8558 100644 --- a/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/rest_api/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-01-24 03:04+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,7 +18,7 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:21 links.py:13 +#: apps.py:20 links.py:13 msgid "REST API" msgstr "REST API" 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 e3253718e3..edf92c5b41 100644 --- a/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Mohammed ALDOUB \n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po index de8c94df10..eb05272db7 100644 --- a/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-17 10:59+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po index adfb01786b..8809803daa 100644 --- a/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: www.ping.ba \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po index 6984aeb204..985b9e32f2 100644 --- a/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-18 10:54+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po index 05bdae5e63..c4c4ac76aa 100644 --- a/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Rasmus Kierudsen \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po index 34fcf31db3..2d8d768973 100644 --- a/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/de_DE/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-09 09:39+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po index c608182026..838856d1a6 100644 --- a/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po index 7b3e941fd7..9dd3efb9bc 100644 --- a/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po index 224bfffd05..275f9b94ad 100644 --- a/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-14 03:38+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po index 6f7c99de92..f5a334f64c 100644 --- a/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Mehdi Amani \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po index 7a5c8fbf31..8164ba02da 100644 --- a/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/fr/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-08-22 14:01+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po index 5ed634945a..34268b6063 100644 --- a/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: molnars \n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po index 2e6064da9d..a3fd6f913f 100644 --- a/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-14 11:12+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po index d5b877d5a6..9231068c92 100644 --- a/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Pierpaolo Baldan \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po index fd4d431625..ccd3665237 100644 --- a/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-28 10:47+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po index 82823b739d..9703343725 100644 --- a/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Justin Albstbstmeijer \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po index e7d1df5723..40d4ea219b 100644 --- a/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Wojciech Warczakowski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po index 9a2c3c06ad..c388dac11f 100644 --- a/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Manuela Silva \n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po index 7fbcfe4c9f..6893f84f42 100644 --- a/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/pt_BR/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-12-22 01:04+0000\n" "Last-Translator: José Samuel Facundo da Silva \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po index a566d30744..6c500c67df 100644 --- a/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-03-15 12:00+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po index 11e41edb0a..0ab896bc40 100644 --- a/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Sergey Glita \n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po index d094e381ea..1631af5c9a 100644 --- a/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: kontrabant \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po index a53d00b43c..94fd38e3ae 100644 --- a/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Caner Başaran \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po index 96bdba2b40..a5ba6c3a74 100644 --- a/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2018-09-27 02:31+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po b/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po index 84b667a77d..e69d9c67dc 100644 --- a/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/smart_settings/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:02-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-01-24 04:41+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po index 8eff874e1c..b8fe615fc5 100644 --- a/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "النوع" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "" @@ -265,105 +265,105 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po index 42b297f54d..2a215f9570 100644 --- a/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-17 12:04+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Източници" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Създайте източник на документи" -#: apps.py:58 +#: apps.py:57 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 "Източниците на документи са начинът, по който новите документи се подават към Mayan EDMS, създайте поне източник на уеб формуляр, за да можете да качвате документи от браузър." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Тип" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Създаден" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Умалено изображение" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Дата час" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Съобщение" @@ -197,7 +197,7 @@ msgstr "Наблюдавана папка" msgid "POP3 email" msgstr "POP3 имейл" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "IMAP имейл" @@ -266,105 +266,105 @@ msgstr "Запис в дневника" msgid "Log entries" msgstr "Записи в дневника" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Хост" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Типичните възможности за избор са 110 за POP3, 995 за POP3 над SSL, 143 за IMAP, 993 за IMAP над SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Порт" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Име на потребител" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Парола" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "Име на прикачения файл, който ще съдържа имена на метаданни и двойки стойности, които ще бъдат присвоени на останалите изтеглени прикачени файлове." -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Име за прикачени метаданни" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Изберете тип метаданни, валидни за избрания тип документ, в който да съхранявате темата на имейла." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Тип метаданните за темата" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Изберете тип метаданни, валидни за избрания тип документ, в който да съхранявате стойността „от“ на имейла." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "От тип метаданни" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Съхраняване основния текст на имейла като текстов документ." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Съхраняване основния текст на имейла" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "Източник на имейл" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "Източници на имейл" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Типът метаданни за темата "%(metadata_type)s" не е валиден за типа документ: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "„От„ тип метаданни “%(metadata_type)s“ не е валиден за типа документ: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP пощенска кутия, от която да проверявате за съобщения." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Пощенска кутия" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Изтичане на времето" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP имейл" 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 a925daa689..0d5d62ba38 100644 --- a/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Izvori" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Kreirajte izvor dokumenta" -#: apps.py:58 +#: apps.py:57 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 "Izvori dokumenata su način na koji se novi dokumenti hraniti za Mayan EDMS, kreirati barem izvor web oblik kako bi mogli da otpremaju dokumente iz pretraživača." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Tip" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Kreiran" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Thumbnail" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Datum vreme" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Poruke" @@ -197,7 +197,7 @@ msgstr "Gledajte folder" msgid "POP3 email" msgstr "POP3 e-pošta" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "IMAP e-pošta" @@ -266,105 +266,105 @@ msgstr "Ulazni tragovi" msgid "Log entries" msgstr "Stavke tragova" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Domaćin" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Tipični izbori su 110 za POP3, 995 za POP3 preko SSL-a, 143 za IMAP, 993 za IMAP preko SSL-a." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Port" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Korisničko ime" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Lozinka" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Ime priloga metapodataka" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Izaberite tip metapodataka koji važi za odabrani tip dokumenta za čuvanje objekta e-pošte." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Tip metapodataka predmeta" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Izaberite vrstu metapodataka koja važi za odabrani tip dokumenta u kojem će se vrednost e-pošte \"sa\"." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Od vrste metapodataka" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Telo e-pošte čuvajte kao tekstualni dokument." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Spremite telo e-pošte" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "E-mail izvor" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "E-mail izvori" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tip metapodataka predmeta \"%(metadata_type)s\" ne važi za tip dokumenta: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "\"Od\" metapodataka tipa \"%(metadata_type)s\" ne važi za tip dokumenta: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP poštansko sanduče sa kojeg možete proveravati poruke." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Poštansko sanduče" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP e-pošta" diff --git a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po index ab384aa3e5..85b925a7aa 100644 --- a/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-18 11:47+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Zdroje" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Vytvořte zdroj dokumentu" -#: apps.py:58 +#: apps.py:57 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 "Zdroje dokumentů jsou způsob, jakým jsou nové dokumenty podávány do Mayan EDMS, vytvořte alespoň zdroj webového formuláře, který umožňuje vkládat dokumenty z prohlížeče." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Typ" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Vytvořen" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Náhled" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Datum a čas" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Zpráva" @@ -196,7 +196,7 @@ msgstr "Sledovaná složka" msgid "POP3 email" msgstr "POP3 email" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "E-mail IMAP" @@ -265,105 +265,105 @@ msgstr "Záznam protokolu" msgid "Log entries" msgstr "Záznamy protokolu" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Hostitel" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Typické volby jsou 110 pro POP3, 995 pro POP3 přes SSL, 143 pro IMAP, 993 pro IMAP přes SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Přístav" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Uživatelské jméno" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Heslo" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "Název přílohy, která bude obsahovat názvy typů metadat a páry hodnot, které mají být přiřazeny ke zbytku stažených příloh." -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Název přílohy metadat" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Vyberte typ metadat platný pro vybraný typ dokumentu, do kterého chcete uložit předmět e-mailu." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Typ metadat předmětu" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Vyberte typ metadat platný pro vybraný typ dokumentu, do kterého chcete uložit e-mailovou hodnotu „Od“." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Typ metadat Od" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Uložte tělo e-mailu jako textový dokument." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Uložte tělo e-mailu" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "Zdroj e-mailu" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "Zdroje e-mailu" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Typ metadat předmětu \"%(metadata_type)s\" není platný pro typ dokumentu: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "„Od“ typ metadat „%(metadata_type)s“ není platný pro typ dokumentu: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "Poštovní schránka IMAP, ve které se kontrolují zprávy." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Poštovní schránka" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Časový limit" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP email" diff --git a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po index a67ac850f0..ced4ca553b 100644 --- a/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Kilder" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Type" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Besked" @@ -196,7 +196,7 @@ msgstr "" msgid "POP3 email" msgstr "POP3 email" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "IMAP email" @@ -265,105 +265,105 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Typiske muligheder er 110 for POP3, 995 for POP3 via SSL, 143 for IMAP, 993 for IMAP via SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Port" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Brugernavn" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Password" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Gem indhold af email som tekstdokument." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Indbakke" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/sources/locale/de_DE/LC_MESSAGES/django.mo index 6692a69f2adfad880c3a9af5acfbaa55bba11799..8fe0c952a16a29d2d9c6fe0f1ef3ec25bfb78680 100644 GIT binary patch delta 3660 zcmX}u3s6*59LMp4A_)tY8iJ4Pf*OzrY($Eo(OWAj9J5eUFYJ|FTo&40L=0WCmpv$H z6EiK$%xtD-?W z*BP!Y#2BJ@kTIWPRR%v?JF|>gfY0J!%pGFPFwAp36Hg|8F^<6bZa(7X*I*j=dvP9a z!(tq8qA?d36EmeGRB;ri;|ioLvkS9vFQ(%`q;KYk>oGim{4bb`|KMoMImwt)upITg z7FE8^%{QPrv;>FKz6q1a;l?dE5+6j3XeUm=H&7!>8)}RPPeF~K2rF<7(zdx1hvO!s zh;ftsNEnwPIPY?_7Mogo9^EioA>_d%sC#u4In285a6?}sl(eHRFrqJ39%tMX5 z2{jY9pa#^7s`nW@4|k#J{})wHHlvIsMnr--O%bZ1DpZ5lU^y;ERdhd=U@vNW>_e^T zho}ZCs9p8cAZ?gMm{?k@Ain}Nus+lb^=C8xTGMy9p&so=b?6X|!lS6QOK0BHf#In4 za$POdhzs54=b}1x5#E8dsQN!a&E#h|4Ugf4Sdzp1tAQxpZ^D(R3cp4MWd@L8!Qaz43)*s<|{0&v_T5jqT#O@=Z3VTrxo<{X- z7ix`O#Y4Cs)zRIYEj@n?HL?#-Yx*UY;jgH2g=38=#Y$uqO#l~S3{zA1#vn5qGoQ1S z)$mc|p7{ke1KE}_*WxG~kIPU~_W)`)Z%3`+H>l^{yktk_pf=%R)Y5cd6Rt+p{~c-o znfV$}j433c7Yk5pT!xcyDryS-cm}S=O5BTUQt0G3V?yM+XkF$0LMF+iO-MQp)nGMR zxDfd>tN1CzZ8(Vb&6^}T@m*y0%&gP+s9-B8eNbaaVcs^W}^mBkArXt zszcWy-yU;4>NItsI=CJ6{vM2_lGx|oc-!@3Q0xcPx>Aa!6cT3CzPlwnl)n^Em-h>^I6#KWkmIf7cVKT#dX zVh5gpxtNI-a)iw!)cZ40@6AQM=b$QXM!q$s9W~Om?)@I@Cchc=e(Vem=@1fAaX!v; z-G=JOz%n)vW+NNlbfYSM8c)JEPz@eH&BRxzj(&%O@ekAt5A-IFYaQynUd+<@-%3Iq zcnUR=7f}_w?)o9>%Xk>o<0Gy=U?=%MP#tXNjH+Wl;&#j|=U+nHfy=S#%;a%?1}n%P z#*=ma$BE&STOpK(@llMX{|!hB5OJ1`lwrj?VEo3aKqpn0xMNL!`@ zEqns0(!7Zyb^ZrUVZHEFETF8vHpw`5Q&_lk)wGP=9#&KPT>{GJ`+4$y1 zr2mPp<>`8lSQwv{F}m^^QYR91gs#nr-{kjG$$CN`dv)t_B9CBqn0fK;jL}0Ekh+J^ z33`B75#OCrTC1tkRgxsJTbGi4kYLj#{^w$0BXKDaAn0IX?(atSjR_N15Nn9u_%u&W z?P5~Qe_{f`v=VJfa6LrKNu-in>o(F_h#W!-xSY_nj@UxXB5sX8;+dGTG5(fkcV$U5ZV-1 zYmz6EIDXkABE${EjqXjpf@T>JCpwAy34J|E30>opn9Fc3aiyDI^R zQ~c-5^4NM(fI&m+tfzWjp(UC|ce`dl6;v8ZnaXWDdF`v+p(sc*nNu=1gxY|vN zu|$)bk75`9*L*Z<{u;}t*GCz>}b?(@Hac5C|NsdwFiPhtDz+nwF99@;*Dk} zYWwV{ZACj;9V1pz=2)$EAk2F$Ry}n^B7w$`<5O03hn-0Dcsst9_E50J z_VLvA{NHAzq_28JTc*eBom4i(@_MIwE8;KY=Zvqh!%G7pYlan5I;Ykd|M~}`8`R!0+q}cNDx-Z~Zm($UZ)ka6JcEVAo)waV94HJ{)Ky;djDqp{NsXbb|Cd#2p&x-x|`h8Ma`ONxqDR!sBcPywASjA?NmD~a6!JnqDtJNhf&z*c;FOgmqL@d- z0u_cSp|R2-#~G%~8mH1S%c-UdYT4k_hjcX4aq2_==j=UwXpgVIwf5P2?e(tp?yb$+ zuU5FP_4Tbc94*A7M3kQ~*D=n)UmR^A#w@{h48*`*#`MKd+bHZue>^%d!|pG)`&-eU z^L3bqhcFKB;tXTlW@v9~;1xK9AJ!w!GAFPb(p*qyK$8kEIK#hMJHI5%yy1g0EU@S8bHBcPtfoYhGi%c;)34C}E7 zk6zqCV`SUgxRUfcdC#@1d&yAJlm69$cj#!cjAG zq4p*oZ{QSE2E%x#^m_s-vq`AEoP&v&hq|v86YvPKYvvLz#b43a$CxJ{vsN^X3g)?P zlTCwjCKt5=+wfVe#whGUEuD|cs^VbO9?nDkUXPkcC#v`^qPFHL7UNCS_*uiO1U8}) zs=`3M|9fa?j}Kxz9z`wT7np>9V=9i0VCj9>0^C5qE7H1e4zpm9%tG5z)C23#h40{S zyo@pU7pgcP<76ezH&HZL9n*q~@IzEa&JipZjzGOm#mK#;8kIpSD$`Twhn=WI&LQ6% za}o6xb)hEs0Cj!8Xltd1pj#&*XvkQkkj+@sjTxvLi;x$@yohnwXrKQK^}2SWYTyoP z!Vxi6Ev!O~S7G<-u$_K0DuMKotiLkN8EJh;R--@t^Qb-l95sROP}TY;>c&7yT}9}` zo;V!&V-ol)4Reu8O)F{wmrz^Mjan(+SnIWQ#IpXnU>PSg&{lNdPSgtQMJ8+7P+Rad zY6ZH{7yHtghyzglY}5o6qYIl+Mfnlx{%=sv`3+~`T{jKAHmOve_ADJWfqV?WA`He7 z~eb^Clb>bl#gm3x5s==P`7)mV<2z&YH3SCB$C znY_#za1-jmHK+$QqB4F1HNm$q5YM2#i05!7Iw=fYmyaP>fW5E;Nx*HYX=s4mwuew( z#8%XdkK4YBmGsY`COCGCHL;V}M*jlt!cyMZ?f4MM!IURk|M;|`YUl^l^|vrU?|;Ks ztLToQiyz)ZJ@`}XjhC?>UPm9^|9col|Nb~DBS(srQMhe1a*0Vn7p_GvHMPjs+I)=b zu?wT!446LNTB6bk)`Kf>Bp0|*E76Y2@ok)hp?r93)zZY+{$^bWp6%>z-eN!rU*=A4EJt=(DCZ(@{_CC-$hrv5}bW zZCQm7L%W#RPUs!f@dU9~jsG3`2V@H|gD4_45Gsnrnkt3$-?5BVDe)Y!lhDCe%v%u$ za0l@k;YVoGbwpX1419)|Z}*qlHh8`bj_z4UZ!OX2@e4_IAEFgWWD!#c4{?~#kwR?s zwyeKqgOiv_R1v$0bRv)FMd+v@g1jyM0mA3)w$L|yjomN9TK-RYCZsX2QfwlJBcq_KJbpoG!G^MR1?45B6J6OQg)2+TOR%h, 2015-2016 # Ingo, 2013 # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2019 # Mathias Behrle , 2014 # Robin Schubert , 2019 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" -"PO-Revision-Date: 2019-06-29 06:22+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" +"PO-Revision-Date: 2019-11-08 11:15+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,39 +27,39 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Quellen" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Quelle definieren" -#: apps.py:58 +#: apps.py:57 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." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Typ" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Erstellt" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Bild" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Zeit" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Nachricht" @@ -204,7 +205,7 @@ msgstr "Beobachtungs-Ordner" msgid "POP3 email" msgstr "POP3" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "IMAP" @@ -273,105 +274,105 @@ msgstr "Protokolleintrag" msgid "Log entries" msgstr "Logeinträge" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Host" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Typische Werte sind 110 für POP3, 995 für POP3 über SSL, 143 für IMAP, 993 für IMAP über SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Port" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Benutzer" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Passwort" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." -msgstr "" +msgstr "Name des Anhangs, der die Namen und Wertepaare des Metadatentyps enthält, die den übrigen heruntergeladenen Anhängen zugewiesen werden sollen." -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Name Metadatenattachment" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Betreffs, der für den ausgewählten Dokumententyp zulässig ist." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Metadatentyp des Betreffs" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Wählen Sie einen Metadatentyp zur Speicherung des E-Mail-Absenders, der für den ausgewählten Dokumententyp zulässig ist." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Metadatentyp des Absenders" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Textkörper der Nachricht als Textdokument speichern." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Textkörper der E-Mail speichern" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "E-Mail Quelle" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "E-Mail Quellen" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Metadatentyp \"%(metadata_type)s\" des Betreffs ist für den Dokumententyp \"%(document_type)s\" nicht zulässig" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Metadatentyp \"%(metadata_type)s\" des Absenders ist für den Dokumententyp \"%(document_type)s\" nicht zulässig" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP-Mailbox, die auf Nachrichten überprüft werden soll." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Mailbox" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP email" diff --git a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po index 17e909dd25..d985284b33 100644 --- a/mayan/apps/sources/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,39 +17,39 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Πηγές" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Δημιουργία μιαςπηγής εγγράφων" -#: apps.py:58 +#: apps.py:57 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 "Οι πηγές εγγράφων είναι ο τρόπος με τον οποίο τροφοδοτούμε το Mayan EDMS με νέα έγγραφα. Δημιουργήστε τουλάχιστον μία φόρμα ιστού ώστε να μπορείτε να ανεβάσετε έγγραφα με την χρήση ενός web browser. " -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Τύπος" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Δημιουργήθηκε" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Μικρογραφία" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Ηερομηνία ώρα" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Μήνυμα" @@ -195,7 +195,7 @@ msgstr "Φάκελος παρακολούθησης" msgid "POP3 email" msgstr "Λογαριασμός POP3" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "Λογαριασμός IMAP" @@ -264,105 +264,105 @@ msgstr "Εγγραφή ημερολογίου" msgid "Log entries" msgstr "Εγγραφές ημερολογίου" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Διεύθυνση διακομιστή" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Τυπικές τιμές είναι 110 για POP3, 995 για POP3 με χρήση SSL, 143 για IMAP, 993 για IMAP με χρήση SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Θύρα" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Όνομα χρήστη" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Κωδικός πρόσβασης" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Αποθήκευση του σώματος του μηνύματος ως έγγραφο κειμένου." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Αποθήκευση σώματος μηνύματος " -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "Θυρίδα IMAP που θα ελέγχεται για μηνύματα." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Θυρίδα" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Λήξη χρόνου" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po index a0581acb56..de987f6dc8 100644 --- a/mayan/apps/sources/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,39 +17,39 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "" @@ -195,7 +195,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "" @@ -264,105 +264,105 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po index 862e92efb1..d99f6aac8d 100644 --- a/mayan/apps/sources/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-07-05 06:49+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -21,39 +21,39 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Fuentes" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Crear una nueva fuente de documentos" -#: apps.py:58 +#: apps.py:57 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." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Tipo" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Creado" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Foto miniatura" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Fecha y hora" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Mensaje" @@ -199,7 +199,7 @@ msgstr "Carpeta observada" msgid "POP3 email" msgstr "Correo electrónico POP3" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "Correo electrónico IMAP" @@ -268,105 +268,105 @@ msgstr "Entrada de bitácora" msgid "Log entries" msgstr "Entradas de bitácora" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Host" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Las opciones típicas son 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Puerto" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Usuario" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Contraseña" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "Nombre del archivo adjunto que contendrá los nombres de tipo de metadatos y los pares de valores que se asignarán al resto de los archivos adjuntos descargados." -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Nombre del anejo de metadatos" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Seleccione un tipo de metadatos válido para el tipo de documento seleccionado para almacenar el asunto del correo electrónico." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Tipo de metadatos de asunto " -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Seleccione un tipo de metadatos válido para el tipo de documento seleccionado para almacenar el valor \"de\" del correo electrónico." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Tipo de metadato de remitente" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Almacenar el cuerpo del correo electrónico como un documento de texto." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Almacenar cuerpo del correo electrónico" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "Fuente de correo electrónico" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "Fuentes de correo electrónico" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "El tipo de metadatos de tema \"%(metadata_type)s\" no es válido para el tipo de documento: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "\"De\" tipo de metadatos \"%(metadata_type)s\" no es válido para el tipo de documento: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "Buzón IMAP en el cual revisar mensajes." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Buzón" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Tiempo de espera" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "Correo electrónico POP" diff --git a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po index c864e62747..e12c133704 100644 --- a/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "منابع" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "یک منبع مستند ایجاد کنید" -#: apps.py:58 +#: apps.py:57 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 "منابع سندي روشي است که اسناد جديد به EDMS ميان تغيير مي کند و حداقل يک منبع فرم وب را قادر مي سازد تا اسناد را از يک مرورگر آپلود کند." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "نوع" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "ایجاد شده" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "بند انگشتی" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "زمان قرار" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "پیام" @@ -197,7 +197,7 @@ msgstr "پوشه تماشا کنید" msgid "POP3 email" msgstr "ایمیل POP3" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "ایمیل IMAP" @@ -266,105 +266,105 @@ msgstr "ورودی لاگ" msgid "Log entries" msgstr "ورودیهای لاگ" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "هاست" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 for IMAP over SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Port" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "نام کاربری" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "کلمه عبور" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "نام دلبستگی متاداده" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره موضوع ایمیل انتخاب کنید." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "نوع Metadata موضوع" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "نوع متادیتایی معتبر برای نوع سند انتخاب شده که در آن برای ذخیره \"ایمیل\" از \"ارزش\" را انتخاب کنید." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "از نوع ابرداده" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "بدن ایمیل را به عنوان یک سند متن ذخیره کنید." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "فروشگاه الکترونیکی ذخیره کنید" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "ایمیل کردن سورس" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "ایمیل کردن سورسها" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "نوع Metadata موضوع \"%(metadata_type)s\" برای نوع سند معتبر نیست: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "\"از\" نوع ابرداده \"%(metadata_type)s\" برای نوع سند معتبر نیست: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "صندوق پستی IMAP که از آن برای بررسی پیام ها است." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "صندوق پستی" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "اتمام وقت" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP ایمیل" diff --git a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po index 03a18aa1a2..2c0d482ff4 100644 --- a/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -23,39 +23,39 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Sources" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Créer une source de documents" -#: apps.py:58 +#: apps.py:57 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 documents sont les manières par lesquelles les nouveaux documents seront intégrés dans Mayan EDMS ; créez au moins un formulaire web pour pouvoir télécharger des documents depuis le navigateur." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Type" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Créée" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Vignette" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Date et heure" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Message" @@ -201,7 +201,7 @@ msgstr "Surveiller le répertoire" msgid "POP3 email" msgstr "email POP3" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "email IMAP" @@ -270,105 +270,105 @@ msgstr "Entrée du journal" msgid "Log entries" msgstr "Entrées du journal" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Hote" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Les choix typiques sont 110 pour le POP3, 995 pour le POP3 over SSL, 143 pour l'IMAP, 993 pour l'IMAP over SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Port" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Identifiant" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Mot de passe" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Nom de la pièce jointe de métadonnées" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Sélectionner un type de métadonnée valide pour le type de document sélectionné, dans lequel enregistrer le sujet du courriel." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Type de métadonnée du sujet" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Sélectionner un type de métadonnée valide pour le type de document sélectionné, dans lequel enregistrer l'expéditeur du courriel." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Type de métadonnée de l'expéditeur" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Sauvegarder le corps du courriel en tant que document texte." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Sauvegarder le corps du courriel" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "Source de courriel" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "Sources de courriel" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Le type de métadonnée du sujet \"%(metadata_type)s\" n'est pas valide pour le document de type : %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Le type de métadonnée de l'expéditeur \"%(metadata_type)s\" n'est pas valide pour le document de type : %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "Boîte IMAP où chercher les messages." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Boîte de courriel" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Délai d'attente dépassé" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "Compte POP" diff --git a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po index 4a5312952c..3b6cb37289 100644 --- a/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/hu/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Források" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Egy dokumentum forrás létrehozása" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Típus" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Létrehozva" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "bélyegkép" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Dátum idő" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Üzenet" @@ -197,7 +197,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "" @@ -266,105 +266,105 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Kiszolgáló" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Jelszó" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "időtúllépés" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po index d94af91952..c7e5548c89 100644 --- a/mayan/apps/sources/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Tipe" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "tanggal waktu" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "" @@ -265,105 +265,105 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Password" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po index dbc1658944..53a42c931e 100644 --- a/mayan/apps/sources/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/it/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -20,39 +20,39 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Sorgenti" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Crea una sorgente documento" -#: apps.py:58 +#: apps.py:57 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 "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:71 +#: apps.py:70 msgid "Type" msgstr "Tipo" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Creato" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Miniatura" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Data e ora" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Messaggio" @@ -198,7 +198,7 @@ msgstr "Cartella monitorata" msgid "POP3 email" msgstr "Email POP3" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "Email IMAP" @@ -267,105 +267,105 @@ msgstr "Elementi log" msgid "Log entries" msgstr "Elementi log" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Host" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Le scelte tipiche sono 110 per POP3, 995 per POP3 su SSL, 143 per IMAP, 993 per IMAP su SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Porta" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Nome utente" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Password" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Nome allegato metadati" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare l'oggetto della mail." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Tipo metadato oggetto" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Selezionare il tipo metadato valido per il documento selezionato dove impostare il mittente della mail." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Tipo metadato mittente" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Salva il contenuto della mail in un documento di testo" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Salva il contenuto della mail" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "Email sorgente" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "Email sorgenti" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Il tipo metadato \"oggetto\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Il tipo metadato \"mittente\" \"%(metadata_type)s\" non è valido per il tipo documento: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "Casella di posta IMAP dove controllare i messaggi." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Casella" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "Email POP" diff --git a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po index 6583b4a1d0..95cbbadfa9 100644 --- a/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-07-01 05:59+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Avoti" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Izveidojiet dokumentu avotu" -#: apps.py:58 +#: apps.py:57 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 "Dokumentu avoti ir veids, kādā jaunie dokumenti tiek piegādāti Mayan EDMS, izveidojiet vismaz tīmekļa veidlapas avotu, lai varētu augšupielādēt dokumentus no pārlūkprogrammas." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Tips" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Izveidots" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Sīktēls" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Datums Laiks" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Ziņojums" @@ -196,7 +196,7 @@ msgstr "Novērot mapi" msgid "POP3 email" msgstr "POP3 e-pasts" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "IMAP e-pasts" @@ -265,105 +265,105 @@ msgstr "Žurnāla ieraksts" msgid "Log entries" msgstr "Žurnāla ieraksti" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Saimnieks" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Tipiskas izvēles ir 110 POP3, 995 POP3 pār SSL, 143 IMAP, 993 IMAP pār SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Ports" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Lietotājvārds" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Parole" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "Pielikuma nosaukums, kurā būs metadatu tipa nosaukumi un vērtību pāri, kas tiks piešķirti pārējiem lejupielādētajiem pielikumiem." -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Metadatu pielikuma nosaukums" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta objekta saglabāšana." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Tēmas metadatu veids" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Atlasiet metadatu tipu, kas derīgs dokumenta tipam, kurā izvēlēts e-pasta \"no\" vērtības." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "No metadatu veida" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Saglabājiet e-pasta ziņojuma tekstu kā teksta dokumentu." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Saglabājiet e-pasta korpusu" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "E-pasta avots" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "E-pasta avoti" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Objekta metadatu tips \"%(metadata_type)s\" nav derīgs dokumenta tipam: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "\"No\" metadatu tips \"%(metadata_type)s\" nav derīgs dokumenta tipam: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP pastkaste, no kuras var pārbaudīt ziņas." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Pastkaste" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Pārtraukums" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP e-pasts" diff --git a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po index cc48aea398..5cb0f7b360 100644 --- a/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/nl_NL/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-07-21 20:36+0000\n" "Last-Translator: Ben Zweekhorst \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Bronnen" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Maak een documentbron aan" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Type" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Aangemaakt" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Thumbnail" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Datum en tijd" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Bericht" @@ -197,7 +197,7 @@ msgstr "" msgid "POP3 email" msgstr "POP3 e-mail" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "IMAP e-mail" @@ -266,105 +266,105 @@ msgstr "Loginvoer" msgid "Log entries" msgstr "Loginvoer" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Gebruikersnaam" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Wachtwoord" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP e-mail" diff --git a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po index 107494a02e..632c165e3d 100644 --- a/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pl/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -20,39 +20,39 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Źródła" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Utwórz źródło dokumentu" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Typ" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Utworzony" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Miniaturka" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Data godzina" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Wiadomość" @@ -198,7 +198,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "" @@ -267,105 +267,105 @@ msgstr "Wpis do dziennika" msgid "Log entries" msgstr "Wpisy rejestru logów" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Host" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Port" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Nazwa użytkownika" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Hasło" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po index 9c038d8e0e..09678dcef0 100644 --- a/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -20,39 +20,39 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "" @@ -198,7 +198,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "" @@ -267,105 +267,105 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Senha" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" 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 67d92050f7..c66744cdff 100644 --- a/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -21,39 +21,39 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Fontes" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Criar uma nova fonte de documentos" -#: apps.py:58 +#: apps.py:57 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 "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:71 +#: apps.py:70 msgid "Type" msgstr "Tipo" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Criando" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "miniatura" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "hora, data" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Mensagem" @@ -199,7 +199,7 @@ msgstr "Pasta Temporária" msgid "POP3 email" msgstr "E-mail POP3" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "E-mail IMAP" @@ -268,105 +268,105 @@ msgstr "Entrada de registro" msgid "Log entries" msgstr "As entradas de log" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Host" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Escolhas típicas : 110 para POP3, 995 para POP3 sobre SSL, 143 para IMAP, 993 para IMAP sobre SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Porta" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Usuário" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Senha" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Nome do metadado anexado" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o assunto do e-mail." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Tipo de metadado do assunto" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Selecione um tipo de metadados válido para o tipo de documento selecionado para armazenar o valor \"de\" do e-mail." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Tipo de documento do remetente" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Armazenar o corpo do e-mail como um documento de texto." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Armazenar o corpo do e-mail" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "E-mail Fonte" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "E-mail Fontes" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tipo de metadado do assunto \"%(metadata_type)s\" não é válido para o documento do tipo: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tipo de metadados do campo \"de\" \"%(metadata_type)s\" não é válido para o tipo de documento: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "Pasta de email IMAP de onde checar por mensagens." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Caixa de correio" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Timeout" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "E-mail POP3" 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 930a873133..7008e960a4 100644 --- a/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ro_RO/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-09-03 08:37+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -20,39 +20,39 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Surse" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Creați o sursă de documente" -#: apps.py:58 +#: apps.py:57 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 "Sursele de documente sunt modul în care documente noi alimentează Mayan EDMS, creează cel puțin o sursă de formă web pentru a putea încărca documente dintr-un browser." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Tip" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Creat" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Iconiță" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Data și ora" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Mesaj" @@ -198,7 +198,7 @@ msgstr "Dosarul de urmărire" msgid "POP3 email" msgstr "E-mail POP3" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "E-mail IMAP" @@ -267,105 +267,105 @@ msgstr "Intrare în jurnal" msgid "Log entries" msgstr "Intrările de jurnal" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Gazdă" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Opțiunile tipice sunt 110 pentru POP3, 995 pentru POP3 peste SSL, 143 pentru IMAP, 993 pentru IMAP peste SSL." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Port" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Nume de utilizator" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Parola" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "Numele atașamentului care va conține nume de tip de metadate și perechi de valori care vor fi alocate restului de atașamente descărcate." -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Numele atașamentului metadatelor" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Selectați un tip de metadate valabil pentru tipul de document selectat în care să stocați subiectul e-mailului." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Tip de metadate subiect" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Selectați un tip de metadate valabil pentru tipul de document selectat în care să se stocheze valoarea \"de la\" a e-mailului." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Tipul de metadate De la" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Păstrați corpul e-mailului ca document text." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Stocați corpul de e-mail" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "Sursa de e-mail" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "Surse de e-mail" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tipul de metadate Subiect \"%(metadata_type)s\" nu este valid pentru tipul de document: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Tipul de metadate \"De la\" \"%(metadata_type)s\" nu este valabil pentru tipul de document: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "Căsuța poștală IMAP din care să se verifice mesajele." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Căsuță poștală" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Pauză" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "Emailul POP" diff --git a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po index 41c1f553ba..7b307f005b 100644 --- a/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/ru/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Источники" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Создать источник документов" -#: apps.py:58 +#: apps.py:57 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 "Источники документов - это способы получения Mayan EDMS новых документов. Как минимум, чтобы можно было загружать документы из браузера, создайте веб-форму." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Тип" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Создано" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Миниатюра" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Дата и время" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Сообщение" @@ -197,7 +197,7 @@ msgstr "Наблюдаемая папка" msgid "POP3 email" msgstr "почтовый ящик POP3" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "почтовый ящик IMAP" @@ -266,105 +266,105 @@ msgstr "Запись журнала" msgid "Log entries" msgstr "Записи журнала" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Хост" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Обычно выбирают 110 для POP3, 995 для POP3 с SSL, 143 для IMAP, 993 для IMAP с SSL" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Порт" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Имя пользователя" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Пароль" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Название файла-вложения с метаданными" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "Выберите тип метаданных, подходящий для выбранного типа документа, в котором сохранять тему письма." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Тип метаданных для темы письма" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "Выберите тип метаданных, подходящий для выбранного типа документа, в котором сохранять корреспондента письма." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Тип метаданных для корреспондента письма" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "Сохранять само письмо как текстовый документ." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "Сохранять письмо" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP ящик в котором проверять сообщения." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Таймаут" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP email" diff --git a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po index 6ca2662c60..1fc7660130 100644 --- a/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -17,39 +17,39 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "" @@ -195,7 +195,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "" @@ -264,105 +264,105 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po index 3e4e1d7c74..253bf069bb 100644 --- a/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,39 +19,39 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "Kaynaklar" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "Belge kaynağı oluştur" -#: apps.py:58 +#: apps.py:57 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 "Belge kaynakları, yeni belgelerin JBM EDMS'e gönderilme şeklidir, bir tarayıcıdan belge yükleyebilmek için en az bir web formu kaynağı oluşturmalısınız." -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "Tür" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "Oluşturuldu" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "Küçük Resim" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "Tarih saat" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "Mesaj" @@ -197,7 +197,7 @@ msgstr "İzleme Klasörü" msgid "POP3 email" msgstr "POP3 e-postası" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "IMAP e-postası" @@ -266,105 +266,105 @@ msgstr "Kayıt girişi" msgid "Log entries" msgstr "Kayıt girdileri" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "Sunucu" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "Tipik seçimler POP3 için 110, SSL üzerinden POP3 için 995, IMAP için 143, SSL üzerinden IMAP için 993'tür." -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "Port" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "Kullanıcı adı" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "Parola" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "Meta veri eki adı" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "E-postanın konusunu depolamak için seçilen doküman türü için geçerli bir meta veri türü seçin." -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "Konu metadata türü" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "E-postanın \"başlangıç\" değerinden hangisini depolayacağını belirlemek için geçerli bir meta veri türü seçin." -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "Meta veri türüne göre" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "E-postanın gövdesini bir metin belgesi olarak saklayın." -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "E-posta gövdesini saklayın" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "E-posta kaynağı" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "E-posta kaynakları" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "Konu meta verileri türü \"%(metadata_type)s\" belge türü için geçerli değil: %(document_type)s" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "\"Kimden\" meta veri türü \"%(metadata_type)s\" belge türü için geçerli değil: %(document_type)s" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "Mesajların kontrol edileceği IMAP Posta Kutusu." -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "Posta kutusu" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "Zaman aşımı" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP e-postası" 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 b7ec49c028..5c9b9a4ab0 100644 --- a/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "" -#: apps.py:58 +#: apps.py:57 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 "" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "POP3 email" msgstr "" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "" @@ -265,105 +265,105 @@ msgstr "" msgid "Log entries" msgstr "" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "" diff --git a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po index 232275c770..e1e12bb0d6 100644 --- a/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/sources/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,39 +18,39 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:41 links.py:54 models/base.py:39 queues.py:9 settings.py:10 +#: apps.py:40 links.py:54 models/base.py:39 queues.py:9 settings.py:10 #: views.py:628 msgid "Sources" msgstr "来源" -#: apps.py:56 +#: apps.py:55 msgid "Create a document source" msgstr "创建文档源" -#: apps.py:58 +#: apps.py:57 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 "文档源是将新文档提供给Mayan EDMS的方式,至少创建一个网页表单源以便能够从浏览器上传文档。" -#: apps.py:71 +#: apps.py:70 msgid "Type" msgstr "类型" -#: apps.py:80 +#: apps.py:79 msgid "Created" msgstr "已创建" -#: apps.py:87 +#: apps.py:86 msgid "Thumbnail" msgstr "缩略图" -#: apps.py:95 models/base.py:248 +#: apps.py:94 models/base.py:248 msgid "Date time" msgstr "日期时间" -#: apps.py:100 models/base.py:251 +#: apps.py:99 models/base.py:251 msgid "Message" msgstr "信息" @@ -196,7 +196,7 @@ msgstr "监视文件夹" msgid "POP3 email" msgstr "POP3电子邮件" -#: literals.py:66 models/email_sources.py:226 models/email_sources.py:227 +#: literals.py:66 models/email_sources.py:227 models/email_sources.py:228 msgid "IMAP email" msgstr "IMAP电子邮件" @@ -265,105 +265,105 @@ msgstr "日志条目" msgid "Log entries" msgstr "日志条目" -#: models/email_sources.py:45 +#: models/email_sources.py:46 msgid "Host" msgstr "主机" -#: models/email_sources.py:46 +#: models/email_sources.py:47 msgid "SSL" msgstr "SSL" -#: models/email_sources.py:48 +#: models/email_sources.py:49 msgid "" "Typical choices are 110 for POP3, 995 for POP3 over SSL, 143 for IMAP, 993 " "for IMAP over SSL." msgstr "对于POP3,典型的选择是110,对于基于SSL的POP3为995,对于IMAP为143,对于基于SSL的IMAP为993。" -#: models/email_sources.py:49 +#: models/email_sources.py:50 msgid "Port" msgstr "端口" -#: models/email_sources.py:51 +#: models/email_sources.py:52 msgid "Username" msgstr "用户名" -#: models/email_sources.py:52 +#: models/email_sources.py:53 msgid "Password" msgstr "密码" -#: models/email_sources.py:56 +#: models/email_sources.py:57 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." msgstr "" -#: models/email_sources.py:59 +#: models/email_sources.py:60 msgid "Metadata attachment name" msgstr "元数据附件名称" -#: models/email_sources.py:63 +#: models/email_sources.py:64 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's subject." msgstr "选择对所选文档类型有效的元数据类型,以便存储电子邮件的主题。" -#: models/email_sources.py:66 +#: models/email_sources.py:67 msgid "Subject metadata type" msgstr "主题元数据类型" -#: models/email_sources.py:70 +#: models/email_sources.py:71 msgid "" "Select a metadata type valid for the document type selected in which to " "store the email's \"from\" value." msgstr "选择对所选文档类型有效的元数据类型,以存储电子邮件的“发件人”值。" -#: models/email_sources.py:73 +#: models/email_sources.py:74 msgid "From metadata type" msgstr "发件人元数据类型" -#: models/email_sources.py:77 +#: models/email_sources.py:78 msgid "Store the body of the email as a text document." msgstr "将电子邮件正文存储为文本文档。" -#: models/email_sources.py:78 +#: models/email_sources.py:79 msgid "Store email body" msgstr "存储邮件正文" -#: models/email_sources.py:84 +#: models/email_sources.py:85 msgid "Email source" msgstr "电邮来源" -#: models/email_sources.py:85 +#: models/email_sources.py:86 msgid "Email sources" msgstr "电邮来源" -#: models/email_sources.py:190 +#: models/email_sources.py:191 #, python-format msgid "" "Subject metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "主题元数据类型“%(metadata_type)s”对于文档类型%(document_type)s无效" -#: models/email_sources.py:204 +#: models/email_sources.py:205 #, python-format msgid "" "\"From\" metadata type \"%(metadata_type)s\" is not valid for the document " "type: %(document_type)s" msgstr "“发件人”元数据类型“%(metadata_type)s”对于文档类型%(document_type)s无效" -#: models/email_sources.py:219 +#: models/email_sources.py:220 msgid "IMAP Mailbox from which to check for messages." msgstr "IMAP邮箱,用于检查邮件。" -#: models/email_sources.py:220 +#: models/email_sources.py:221 msgid "Mailbox" msgstr "邮箱" -#: models/email_sources.py:272 +#: models/email_sources.py:301 msgid "Timeout" msgstr "超时" -#: models/email_sources.py:278 models/email_sources.py:279 +#: models/email_sources.py:307 models/email_sources.py:308 msgid "POP email" msgstr "POP电子邮件" diff --git a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po index 7c43259def..943be93daa 100644 --- a/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ar/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po index b9bb718cf5..a45ae732c8 100644 --- a/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bg/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-17 12:13+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" 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 3a9270cbb4..96741374c3 100644 --- a/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/bs_BA/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Atdhe Tabaku \n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po index 83001ed27a..f5374ab0c1 100644 --- a/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/cs/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-14 12:23+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po index 42357a2c79..0ddf5e39c5 100644 --- a/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/da_DK/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po index f705d84812..4faf7cf1a2 100644 --- a/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/de_DE/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-28 21:14+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" diff --git a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po index 195cfef70d..56b888165d 100644 --- a/mayan/apps/storage/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Hmayag Antonian \n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po index 1b2474fb91..7391d50b7a 100644 --- a/mayan/apps/storage/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po index 1f4e122f97..bba60ea1c1 100644 --- a/mayan/apps/storage/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/es/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-28 01:42+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po index 63fe697839..252f038dd9 100644 --- a/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Mehdi Amani \n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po index 0a9f8dcbae..9ee61fb5fb 100644 --- a/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/fr/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Yves Dubois \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po index a003ab74c3..34c4658087 100644 --- a/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po index 8ee140bd74..6920ccba19 100644 --- a/mayan/apps/storage/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/id/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-14 11:35+0000\n" "Last-Translator: Adek Lanin\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po index 550be83652..4660cc3b5d 100644 --- a/mayan/apps/storage/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/it/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Marco Camplese \n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po index e1bbfe74a8..6426a11356 100644 --- a/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-31 12:51+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po index 66fd14d611..11b1087747 100644 --- a/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Johan Braeken\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po index 7e135aee67..2440782342 100644 --- a/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pl/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Wojciech Warczakowski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po index c9e3101f75..d7f108899b 100644 --- a/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po index 45e746939e..4e1dc443df 100644 --- a/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/pt_BR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Aline Freitas \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po index bfea74484d..c6e096d6f5 100644 --- a/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ro_RO/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po index 4d23320797..4840213bb7 100644 --- a/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po index a687d6d43d..9b74ac6b78 100644 --- a/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po index 918e8db56e..819b72a0bf 100644 --- a/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po index 0a6384aa03..44c83bd073 100644 --- a/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/vi_VN/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po index 3890bba4b8..1eeaca14ca 100644 --- a/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/storage/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-04-27 22:54+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" diff --git a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po index b37f4dfdb6..be94237e3e 100644 --- a/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "الكلمات الاستدلالية" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "الوثائق" diff --git a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po index a113e50122..77307fd575 100644 --- a/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-17 12:36+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" @@ -19,13 +19,13 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Маркери" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Документи" diff --git a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po index 3009e1d747..1de857fcf7 100644 --- a/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" @@ -19,13 +19,13 @@ msgstr "" "Language: bs_BA\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tagovi" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Dokumenti" diff --git a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po index 0b06f1a54c..e2dadfc1e6 100644 --- a/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-10-18 11:58+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Značky" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Dokumenty" diff --git a/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po index 25848a65cd..b3486a2aeb 100644 --- a/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" @@ -17,13 +17,13 @@ msgstr "" "Language: da_DK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Dokumenter" 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 3b2a126239..bd1bb696e4 100644 --- a/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/de_DE/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-27 21:31+0000\n" "Last-Translator: Mathias Behrle \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" @@ -20,13 +20,13 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tags" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Dokumente" diff --git a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po index e2d3d47852..2905d95ebe 100644 --- a/mayan/apps/tags/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" @@ -17,13 +17,13 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Ετικέτες" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Έγγραφα" diff --git a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po index 9fa88c5f36..2f4446769d 100644 --- a/mayan/apps/tags/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,13 +18,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "" diff --git a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po index 984c6b7374..609fe7f919 100644 --- a/mayan/apps/tags/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/es/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-28 19:35+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" @@ -20,13 +20,13 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiquetas" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Documentos" diff --git a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po index 8cc7aedd04..3494491404 100644 --- a/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fa/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" @@ -19,13 +19,13 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "برچسب ها" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "اسناد" diff --git a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po index cc8c53a59e..73a7cd81a1 100644 --- a/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 13:19+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" @@ -23,13 +23,13 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Étiquettes" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Documents" diff --git a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po index fc430f767b..e1426e05df 100644 --- a/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Címkék" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Dokumentumok" diff --git a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po index 45e05d2c7e..2747ae201c 100644 --- a/mayan/apps/tags/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" @@ -17,13 +17,13 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Dokumen" diff --git a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po index c2fdfe77af..f519f9d93e 100644 --- a/mayan/apps/tags/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/it/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" @@ -21,13 +21,13 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etichette" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Documenti" diff --git a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po index 59793f2a3c..2585bc3ecf 100644 --- a/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-06-28 11:50+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tags" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Dokumenti" diff --git a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po index 8aab5e3232..3dabf4954e 100644 --- a/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/nl_NL/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Labels" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Documenten" diff --git a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po index 9f41d5e32b..4de6fcdf7e 100644 --- a/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pl/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" @@ -21,13 +21,13 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tagi" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Dokumenty" diff --git a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po index bd74ab79de..3c72089005 100644 --- a/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" @@ -20,13 +20,13 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiquetas" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Documentos" 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 ef368bd311..e33e77e343 100644 --- a/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/pt_BR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" @@ -21,13 +21,13 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiquetas" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Documentos" 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 e22179059b..b5e54e9c0b 100644 --- a/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ro_RO/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 18:50+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" @@ -21,13 +21,13 @@ msgstr "" "Language: ro_RO\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etichete" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Documente" diff --git a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po index c601f42b78..2e91b0138e 100644 --- a/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-08-22 05:05+0000\n" "Last-Translator: Daler Abdulloev \n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Метки" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Документы" diff --git a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po index 0f9ff98966..81ac2e97a9 100644 --- a/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/sl_SI/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: sl_SI\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Oznake" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Dokumenti" diff --git a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po index 77518d396b..e481b95810 100644 --- a/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/tr_TR/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" @@ -19,13 +19,13 @@ msgstr "" "Language: tr_TR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Etiketler" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Belgeler" diff --git a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po index 738b8ea8b0..51ca7fc16d 100644 --- a/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "Tags" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "Tài liệu" diff --git a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po index b4259aad88..733e613c5c 100644 --- a/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/tags/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:39-0400\n" "PO-Revision-Date: 2019-05-17 05:51+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" @@ -18,13 +18,13 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: apps.py:52 apps.py:107 apps.py:114 apps.py:136 apps.py:138 events.py:7 +#: apps.py:51 apps.py:106 apps.py:113 apps.py:135 apps.py:137 events.py:7 #: forms.py:17 links.py:25 menus.py:16 models.py:42 permissions.py:7 #: views.py:222 workflow_actions.py:20 workflow_actions.py:68 msgid "Tags" msgstr "标签" -#: apps.py:129 models.py:36 +#: apps.py:128 models.py:36 msgid "Documents" msgstr "文档" diff --git a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po index f7c29aa821..7e626f3ecc 100644 --- a/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ar/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Yaman Sanobar , 2019\n" "Language-Team: Arabic (https://www.transifex.com/rosarior/teams/13584/ar/)\n" diff --git a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po index 4b5f36d1bd..bb74cb041d 100644 --- a/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bg/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Lyudmil Antonov , 2019\n" "Language-Team: Bulgarian (https://www.transifex.com/rosarior/teams/13584/bg/)\n" diff --git a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po index a05d5891e6..e70700575f 100644 --- a/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/bs_BA/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Atdhe Tabaku , 2018\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (https://www.transifex.com/rosarior/teams/13584/bs_BA/)\n" diff --git a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po index 66b74355a4..3e6ef8d6c8 100644 --- a/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/cs/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Michal Švábík , 2019\n" "Language-Team: Czech (https://www.transifex.com/rosarior/teams/13584/cs/)\n" diff --git a/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po index 1ca6814ab6..378b622aa8 100644 --- a/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/da_DK/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Rasmus Kierudsen , 2018\n" "Language-Team: Danish (Denmark) (https://www.transifex.com/rosarior/teams/13584/da_DK/)\n" diff --git a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po index 16fbb6aecf..8940e1e707 100644 --- a/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/de_DE/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Mathias Behrle , 2019\n" "Language-Team: German (Germany) (https://www.transifex.com/rosarior/teams/13584/de_DE/)\n" diff --git a/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po index c8faa0103c..a95e249673 100644 --- a/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/el/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Hmayag Antonian , 2018\n" "Language-Team: Greek (https://www.transifex.com/rosarior/teams/13584/el/)\n" diff --git a/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po index 104324332c..754fc50caa 100644 --- a/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po index 99df7f4202..c3fe8343d6 100644 --- a/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2019\n" "Language-Team: Spanish (https://www.transifex.com/rosarior/teams/13584/es/)\n" diff --git a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po index e8a903553d..2c698ae44d 100644 --- a/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fa/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Mehdi Amani , 2018\n" "Language-Team: Persian (https://www.transifex.com/rosarior/teams/13584/fa/)\n" diff --git a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po index 94a0998934..a2576cd0b7 100644 --- a/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/fr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Yves Dubois , 2018\n" "Language-Team: French (https://www.transifex.com/rosarior/teams/13584/fr/)\n" diff --git a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po index 575bb1a2a5..b6ee2890c8 100644 --- a/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/hu/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: molnars , 2017\n" "Language-Team: Hungarian (https://www.transifex.com/rosarior/teams/13584/hu/)\n" diff --git a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po index d5139e4a12..3ab3c00328 100644 --- a/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/id/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Adek Lanin, 2019\n" "Language-Team: Indonesian (https://www.transifex.com/rosarior/teams/13584/id/)\n" diff --git a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po index 4a8e9fa129..9bbfa4db72 100644 --- a/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Marco Camplese , 2017\n" "Language-Team: Italian (https://www.transifex.com/rosarior/teams/13584/it/)\n" diff --git a/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po index e1f0a9061e..4afb5e8e66 100644 --- a/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/lv/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Māris Teivāns , 2019\n" "Language-Team: Latvian (https://www.transifex.com/rosarior/teams/13584/lv/)\n" diff --git a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po index 53dc028cea..cd694d46d2 100644 --- a/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/nl_NL/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Ben Zweekhorst , 2019\n" "Language-Team: Dutch (Netherlands) (https://www.transifex.com/rosarior/teams/13584/nl_NL/)\n" diff --git a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po index c8a91ee2a0..218c4bafa6 100644 --- a/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Marcin Lozynski , 2019\n" "Language-Team: Polish (https://www.transifex.com/rosarior/teams/13584/pl/)\n" diff --git a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po index dff5bc47e2..92bff2614e 100644 --- a/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Manuela Silva , 2017\n" "Language-Team: Portuguese (https://www.transifex.com/rosarior/teams/13584/pt/)\n" diff --git a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po index 3ce747541c..8cfee68e0d 100644 --- a/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/pt_BR/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/rosarior/teams/13584/pt_BR/)\n" diff --git a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po index 5110f92594..c5e08f68d3 100644 --- a/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ro_RO/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Harald Ersch, 2019\n" "Language-Team: Romanian (Romania) (https://www.transifex.com/rosarior/teams/13584/ro_RO/)\n" diff --git a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po index b73df4a444..5f548039f1 100644 --- a/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/ru/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: lilo.panic, 2017\n" "Language-Team: Russian (https://www.transifex.com/rosarior/teams/13584/ru/)\n" diff --git a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po index 247adb165d..512559865e 100644 --- a/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/sl_SI/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: kontrabant , 2017\n" "Language-Team: Slovenian (Slovenia) (https://www.transifex.com/rosarior/teams/13584/sl_SI/)\n" diff --git a/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po index 12c926991c..46399d4ee9 100644 --- a/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/tr_TR/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: serhatcan77 , 2017\n" "Language-Team: Turkish (Turkey) (https://www.transifex.com/rosarior/teams/13584/tr_TR/)\n" diff --git a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po index 8d48a11dee..7d55260ae4 100644 --- a/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/vi_VN/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: Roberto Rosario, 2017\n" "Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/rosarior/teams/13584/vi_VN/)\n" diff --git a/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po b/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po index 24b82be493..771799d875 100644 --- a/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/task_manager/locale/zh/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2017-06-30 22:04+0000\n" "Last-Translator: yulin Gong <540538248@qq.com>, 2019\n" "Language-Team: Chinese (https://www.transifex.com/rosarior/teams/13584/zh/)\n" diff --git a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po index cca0974720..e2eedc2544 100644 --- a/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ar/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Arabic (http://www.transifex.com/rosarior/mayan-edms/language/ar/)\n" diff --git a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po index ab09375b84..e93a77d1b2 100644 --- a/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bg/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-10-17 12:55+0000\n" "Last-Translator: Lyudmil Antonov \n" "Language-Team: Bulgarian (http://www.transifex.com/rosarior/mayan-edms/language/bg/)\n" diff --git a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po index 7b6c4301d7..cf2e64bb1c 100644 --- a/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/bs_BA/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Bosnian (Bosnia and Herzegovina) (http://www.transifex.com/rosarior/mayan-edms/language/bs_BA/)\n" diff --git a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po index f4d5b96cfd..74d6dd2008 100644 --- a/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/cs/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-10-18 12:21+0000\n" "Last-Translator: Michal Švábík \n" "Language-Team: Czech (http://www.transifex.com/rosarior/mayan-edms/language/cs/)\n" diff --git a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po index 8e54552781..bb176b4fb8 100644 --- a/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/da_DK/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/rosarior/mayan-edms/language/da_DK/)\n" diff --git a/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo b/mayan/apps/user_management/locale/de_DE/LC_MESSAGES/django.mo index cab28af9a224a3211c73a09d9ee5ce4e3ce9faad..14f2b93adfa630c1d8d50e3f8d0e1ce58d7a343e 100644 GIT binary patch delta 1938 zcmYk+ZD<@t9LMo#(%8n+CaK!gSnJeYnm*;4v$c&$Q`;t?MKDxS6)d!F@Ae+Z-QIO~ zFGmG)RDDr=(-%?SR8T=g#6tB%sJ;+teIZo@Ul;@_c_C7SN)&@2wEF$st+7L9KfCk% zpP9>i-;J%cYpa*PZb;+gb>y)YV;n3j=RsO%Go}N7$5puO4rAJ}6Fad7Rlf}n;&4T)Vllts7Unk#yxd7a&q`ww*o$g#6xHE5)C4(T$P6V<+hLXEc(PvGuV>_0)7Hz?4`-bQ_2L|v}W zP2 zjx(&HR{9#-AwNXMFjtVpn>kbj*HIJSid;dVcB~Us-^WAkM^FoyK(2>*9+{?bPqygy zue7c46@ku)MVkX;MXY}&I+9J~2gwhU$I04WrOizm$Eb*v2FRo2ePnI_<78df zq~h1b(%C&gR@zSHm)F=%PNVUQcm#EklpZ7ZHQt(+GkRTOm^T}JJ&OCut>hhKr9=}V zDirGPww-V7K3WQ$g3bD+N;xpik4oVBvm@=>YfdUvs(4{wQ;ug(x;EvzPUzZ6$J34&_LPuon% zxA`z(&C}}HoF;ARr`ji5V##Fxz@SYghmyNzzl(LppLG1`yk`$PK`J*z>%GNB!TwxS zkSMzQ>Wi^MZSg~XrCfGBoA-jO8#u+#9CW=(_yV1lie`tq_SB|IUP!yCFF*A>bSfE} z&bwO5q?;#T*AGIsPzY_+_0z7GuoF%yXVcV=H)|?{-K?{ddDnW)>Y_c;3^24=H{(0m TF!BEi{u|TuZm!RCoox9R4;BDw delta 1509 zcmZA1OGs2v9LMp0k{j7xFWJ^z5}BjN71W|}SII*fY%0IGdImS7b5 zi`f-^S8!t#m*Xwx43=^I64k*17UM5eZiQK9E3p{!u?5v}7pmPpRKh1v?V?zK*N_}- z92*(mCaC0cV-{QSwQG=`oq8b`H9#5WVI7i#wV@X~Py_Ep^>YlhLT7Lzoak}Q61+niaM^qTJ)jL%0bk71IXm;qI-TFmB6&~ zDeC>VsEH+TEm{%luftbITH4bPcHj==7}yAIz{~FWL*&mM@uS3EIKQCUf5%e%jY_bX zS!jhDQ4{mwe(XSP`PCSeK`NuT3jd(aKqbBFg%B#!9@K!R`O#-O;=GBBWe-p@eD1E_ z>p5GsfJ!Kfhq4;AGVRDv7TZHbnf9Ru9CBVjt;{9&d>r+{eWXu&f;v>Mka3c$2DXjR zbCpJd$H@ulTK(x$R3d(Y#AC_*qnXTGeN$MX=H_=Jx)6$Z!A+#b& zPGvoz&nu`43P&ipg*t#?B8_MwLPUkW|J77lh;~9tqf(b5d8oEf*UD@nnu!|X|Kj6D z7g6ON=#bXC`Z}i$o{ERiR`U_1_ErZ$d)%NK6dgnznl@cf0`d8b+i7EWa+>11bNf7b w{$NX>v&J9n3IxWc@=J?)Bgaog&qiu`Bg6gCfk=EIe^2Rg-iA^-pY 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 c1b19a2a05..26a3fde1d4 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 @@ -7,6 +7,7 @@ # Fabian Solf , 2017 # Felix , 2018 # Jesaja Everling , 2017 +# Marvin Haschker , 2019 # Mathias Behrle , 2019 # Mathias Behrle , 2014 # Stefan Lodders , 2012 @@ -16,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" -"PO-Revision-Date: 2019-06-29 06:22+0000\n" -"Last-Translator: Roberto Rosario\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" +"PO-Revision-Date: 2019-11-08 11:16+0000\n" +"Last-Translator: Marvin Haschker \n" "Language-Team: German (Germany) (http://www.transifex.com/rosarior/mayan-edms/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -84,11 +85,11 @@ msgstr "Alle Benutzer." #: dashboard_widgets.py:16 msgid "Total users" -msgstr "" +msgstr "Benutzer insgesamt" #: dashboard_widgets.py:32 msgid "Total groups" -msgstr "" +msgstr "Gruppen insgesamt" #: events.py:12 msgid "Group created" @@ -310,7 +311,7 @@ msgstr "Gruppen von Benutzer %s" msgid "" "User accounts can be create from this view. After creating a user account " "you will prompted to set a password for it. " -msgstr "" +msgstr "Benutzerkonten können auf dieser Seite erstellt werden. Nach der Erstellung werden Sie nach dem Passwort gefragt." #: views.py:301 msgid "There are no user accounts" diff --git a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po index 9742b4de55..0cb0097e85 100644 --- a/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/el/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Greek (http://www.transifex.com/rosarior/mayan-edms/language/el/)\n" diff --git a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po index b43f24b7e7..610eb37297 100644 --- a/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po index 491538fdf6..419ca16e8a 100644 --- a/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/es/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-07-05 06:47+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" diff --git a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po index 7139e6b023..651ce15801 100644 --- a/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fa/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Persian (http://www.transifex.com/rosarior/mayan-edms/language/fa/)\n" diff --git a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po index 6eed62550a..a8ca8f68a4 100644 --- a/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/fr/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-08-22 14:03+0000\n" "Last-Translator: Frédéric Sheedy \n" "Language-Team: French (http://www.transifex.com/rosarior/mayan-edms/language/fr/)\n" diff --git a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po index 0b7621be7e..b7abbff064 100644 --- a/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/hu/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Hungarian (http://www.transifex.com/rosarior/mayan-edms/language/hu/)\n" diff --git a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po index 60c352aca9..650175d3ad 100644 --- a/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/id/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Indonesian (http://www.transifex.com/rosarior/mayan-edms/language/id/)\n" diff --git a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po index cf31e32f9e..0e041130f4 100644 --- a/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/it/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Italian (http://www.transifex.com/rosarior/mayan-edms/language/it/)\n" diff --git a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po index 949f0785d2..f0774034f4 100644 --- a/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/lv/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-07-01 05:59+0000\n" "Last-Translator: Māris Teivāns \n" "Language-Team: Latvian (http://www.transifex.com/rosarior/mayan-edms/language/lv/)\n" diff --git a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po index fc3de09217..e48dba6d91 100644 --- a/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/nl_NL/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-07-21 20:36+0000\n" "Last-Translator: Ben Zweekhorst \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/rosarior/mayan-edms/language/nl_NL/)\n" diff --git a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po index d3c861bea0..e6024c40d5 100644 --- a/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pl/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-08-30 21:25+0000\n" "Last-Translator: Marcin Lozynski \n" "Language-Team: Polish (http://www.transifex.com/rosarior/mayan-edms/language/pl/)\n" diff --git a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po index efa703b63b..e88541df88 100644 --- a/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (http://www.transifex.com/rosarior/mayan-edms/language/pt/)\n" diff --git a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po index f74b4281b3..03e2ee5bc6 100644 --- a/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/pt_BR/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/rosarior/mayan-edms/language/pt_BR/)\n" diff --git a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po index 00931802fd..0045e088dd 100644 --- a/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ro_RO/LC_MESSAGES/django.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-09-03 08:37+0000\n" "Last-Translator: Harald Ersch\n" "Language-Team: Romanian (Romania) (http://www.transifex.com/rosarior/mayan-edms/language/ro_RO/)\n" diff --git a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po index e5b48e46a1..6416c5e79f 100644 --- a/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/ru/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Russian (http://www.transifex.com/rosarior/mayan-edms/language/ru/)\n" diff --git a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po index 62d35c7964..f310efb39a 100644 --- a/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/sl_SI/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/rosarior/mayan-edms/language/sl_SI/)\n" diff --git a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po index 6a03de6ec0..793fa7f7aa 100644 --- a/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/tr_TR/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/rosarior/mayan-edms/language/tr_TR/)\n" diff --git a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po index c94402751d..e93b0ff80e 100644 --- a/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/vi_VN/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/rosarior/mayan-edms/language/vi_VN/)\n" diff --git a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po index f56818c671..4062c78e9d 100644 --- a/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po +++ b/mayan/apps/user_management/locale/zh/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2019-10-30 03:03-0400\n" +"POT-Creation-Date: 2019-11-18 22:40-0400\n" "PO-Revision-Date: 2019-06-29 06:22+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Chinese (http://www.transifex.com/rosarior/mayan-edms/language/zh/)\n" From 507b6957c751052ca65cb205cbe71eaeaee1e7a3 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 23:41:09 -0400 Subject: [PATCH 05/14] PEP8 cleanups Signed-off-by: Roberto Rosario --- mayan/apps/dependencies/classes.py | 2 ++ mayan/apps/documents/tests/test_models.py | 2 +- mayan/apps/task_manager/apps.py | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/mayan/apps/dependencies/classes.py b/mayan/apps/dependencies/classes.py index 02d3f07bb9..bb2173546a 100644 --- a/mayan/apps/dependencies/classes.py +++ b/mayan/apps/dependencies/classes.py @@ -30,6 +30,8 @@ from mayan.apps.storage.utils import mkdtemp from .algorithms import HashAlgorithm from .exceptions import DependenciesException +logger = logging.getLogger(__name__) + class Provider(object): """Base provider class""" diff --git a/mayan/apps/documents/tests/test_models.py b/mayan/apps/documents/tests/test_models.py index 740be18054..cc251cc754 100644 --- a/mayan/apps/documents/tests/test_models.py +++ b/mayan/apps/documents/tests/test_models.py @@ -12,7 +12,7 @@ from ..models import ( from .base import GenericDocumentTestCase from .literals import ( - TEST_DOCUMENT_TYPE_LABEL, TEST_DOCUMENT_PATH, TEST_MULTI_PAGE_TIFF_PATH, + TEST_DOCUMENT_TYPE_LABEL, TEST_MULTI_PAGE_TIFF_PATH, TEST_PDF_INDIRECT_ROTATE_PATH, TEST_OFFICE_DOCUMENT_PATH, TEST_SMALL_DOCUMENT_CHECKSUM, TEST_SMALL_DOCUMENT_FILENAME, TEST_SMALL_DOCUMENT_MIMETYPE, TEST_SMALL_DOCUMENT_PATH, diff --git a/mayan/apps/task_manager/apps.py b/mayan/apps/task_manager/apps.py index 6c5840883a..00996c6528 100644 --- a/mayan/apps/task_manager/apps.py +++ b/mayan/apps/task_manager/apps.py @@ -13,7 +13,6 @@ from .links import ( link_queue_scheduled_task_list, link_queue_reserved_task_list, link_task_manager ) -from .links import link_task_manager class TaskManagerApp(MayanAppConfig): From b0373eaca1ce779b91fd754a7280435cdcbac7f0 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 23:41:35 -0400 Subject: [PATCH 06/14] Bump version to 3.2.10 Signed-off-by: Roberto Rosario --- docker/rootfs/version | 2 +- mayan/__init__.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/rootfs/version b/docker/rootfs/version index e650c01d92..f15386a5d5 100755 --- a/docker/rootfs/version +++ b/docker/rootfs/version @@ -1 +1 @@ -3.2.9 +3.2.10 diff --git a/mayan/__init__.py b/mayan/__init__.py index 9da525a2ca..6b56d16c9e 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,9 +1,9 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '3.2.9' -__build__ = 0x030209 -__build_string__ = 'v3.2.9_Sun Nov 3 19:11:09 2019 -0400' +__version__ = '3.2.10' +__build__ = 0x030210 +__build_string__ = 'v3.2.9-43-g23211847a3_Mon Nov 18 23:04:12 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' From e8da9610dbbf1c33e35fceff2161f5947ab0476f Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 23:42:38 -0400 Subject: [PATCH 07/14] Update build string Signed-off-by: Roberto Rosario --- mayan/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/__init__.py b/mayan/__init__.py index 6b56d16c9e..049c2b0c16 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' __version__ = '3.2.10' __build__ = 0x030210 -__build_string__ = 'v3.2.9-43-g23211847a3_Mon Nov 18 23:04:12 2019 -0400' +__build_string__ = 'v3.2.10_Mon Nov 18 23:41:35 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' From 5f72e919356ebacafeb521a9caa318342911e248 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 23:45:58 -0400 Subject: [PATCH 08/14] Update release steps Signed-off-by: Roberto Rosario --- docs/chapters/development.rst | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/chapters/development.rst b/docs/chapters/development.rst index f9ec75c8fe..c5cb508b5b 100644 --- a/docs/chapters/development.rst +++ b/docs/chapters/development.rst @@ -530,6 +530,17 @@ Release checklist Release using GitLab CI ----------------------- +#. Push the current brach: + :: + + git push + +#. Push the new tags: + :: + + git push --tags + + #. Delete the corresponding ``releases/`` branch: :: @@ -541,12 +552,6 @@ Release using GitLab CI git push origin :releases/ -#. Push the new tags: - :: - - git push --tags - - Manual release -------------- From ce87a8f8d58252c94b1679d4694c1cb71f7c7848 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 23:48:21 -0400 Subject: [PATCH 09/14] Remove build status from README files Signed-off-by: Roberto Rosario --- README.md | 1 - README.rst | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index d0e1338656..0287717aca 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ [![Donation](https://img.shields.io/badge/donation-PayPal-brightgreen)](https://paypal.me/MayanEDMS) [![pypi][pypi]][pypi-url] -[![builds][builds]][builds-url] ![python][python] ![license][license] [![Docker pulls](https://img.shields.io/docker/pulls/mayanedms/mayanedms.svg?maxAge=3600)](https://hub.docker.com/r/mayanedms/mayanedms/) diff --git a/README.rst b/README.rst index 24ba5ad195..b6fcfef242 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -|donation| |pypi| |builds| |coverage| |python| |license| |docker_pulls| |docker_stars| |docker_layers| +|donation| |pypi| |coverage| |python| |license| |docker_pulls| |docker_stars| |docker_layers| .. image:: https://gitlab.com/mayan-edms/mayan-edms/raw/master/docs/_static/mayan_logo.png From 128cf09a041c5a6a738b4e9ebdf64b08a78c5c73 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 19 Nov 2019 01:24:37 -0400 Subject: [PATCH 10/14] Add missing GitLab CI Ubuntu MySQL package Signed-off-by: Roberto Rosario --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cc2edfc718..f89da50ba0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -169,7 +169,7 @@ test-mysql: services: - mysql:8.0.3 script: - - apt-get install -qq libmysqlclient-dev mysql-client + - apt-get install -qq libmysqlclient-dev libssd-dev - set -a && . ./config.env && set +a - pip install mysql-python==$PYTHON_MYSQL_VERSION - mysql -h"$MYSQL_PORT_3306_TCP_ADDR" -P"$MYSQL_PORT_3306_TCP_PORT" -uroot -p"$MYSQL_ENV_MYSQL_ROOT_PASSWORD" -e "set global character_set_server=utf8mb4;" From 17232d60017b39845b946caa7ef4cda17a9222a5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 19 Nov 2019 01:50:07 -0400 Subject: [PATCH 11/14] Update translation files Signed-off-by: Roberto Rosario --- .../locale/es/LC_MESSAGES/django.mo | Bin 8682 -> 9136 bytes .../locale/es/LC_MESSAGES/django.po | 4 ++-- .../common/locale/es/LC_MESSAGES/django.mo | Bin 29445 -> 29492 bytes .../common/locale/es/LC_MESSAGES/django.po | 4 ++-- .../locale/es/LC_MESSAGES/django.mo | Bin 6989 -> 7274 bytes .../locale/es/LC_MESSAGES/django.po | 2 ++ .../locale/es/LC_MESSAGES/django.mo | Bin 4720 -> 5153 bytes .../locale/es/LC_MESSAGES/django.po | 8 ++++---- .../locale/es/LC_MESSAGES/django.mo | Bin 18383 -> 18447 bytes .../locale/es/LC_MESSAGES/django.po | 4 ++-- .../locale/es/LC_MESSAGES/django.mo | Bin 6138 -> 6210 bytes .../locale/es/LC_MESSAGES/django.po | 2 +- .../mailer/locale/es/LC_MESSAGES/django.mo | Bin 9649 -> 9721 bytes .../mailer/locale/es/LC_MESSAGES/django.po | 4 ++-- .../metadata/locale/es/LC_MESSAGES/django.mo | Bin 11930 -> 11986 bytes .../metadata/locale/es/LC_MESSAGES/django.po | 4 ++-- 16 files changed, 17 insertions(+), 15 deletions(-) diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.mo b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.mo index 9b6d1dd1682dd3925635c8b49157d577c7d79968..287fab429dcd1c3874b91abf1c9ab18bcf5d7a1d 100644 GIT binary patch delta 1661 zcmcK4NoZ3+7{Kwbi?*g(wRUmu80%8Iq}5h!tb$8aT%n@U;zF9Hwl>X+c?lRnA_$_0 z9xQ?fQBm+Bg3umR^w5hS;=v6>!HZBq6h$mlMfCr@7ezb@4w?Ms&Ai#ZndI&28|%`q zigM2i$xoh6ewQV(74PKmMHAzyupYmnZlHQ1i(`ISL_sTVBXi0i@{vb;?ZDSaAMqEt z?`=dvCoLJ;2LZ|jc_W{ezctU zS5k4B3SHq%4B#N@4)Tn<(?ZntQq(goM?Hcn)H~xx)-3B$+xMa#X;0=kjhlEriF%~Z zQ6v1)q}>VLQ^DqC81+mGX1VqAP$%}`Y+Q=kaTm5>6qnhn1yxN;E* zk__N>e1dv3m1#!R7yYOctwi0y2F$@7xCq-&-#d-k@hoa6uVNNvll4w$(soS^+rqLs!0-tZ6=ZiBl3WSV!hQ{Z31Nm)wo$ zqPa%Seb6TTMf^%^I4wS&H1zYx`m@ngOXdnVq4uNxUT2VN$a>K<<&Z0#k{ja2Oj++k zb*4NA=aTg^bQ3u81Y$p{}6a9o=Vw zCS=7@#_Du>w_8?^@dggYB34{mHwRNp5?Hf&o0kzyi`5>ECoHss@ouZnmtWCeJNi?B wr@p4X$<#Ia>zeu(6rIctn7`6LZ@~Jm8))_gSJZm`Tx(zbWN-ho;*xPc0Y-P`c>n+a delta 1319 zcmYk+OGs2v9LMpWkI~Z1@|l%6JuOQeAEiCP(v*-4q97qFdeO!pgcdHQB*KawWJTdR zY*AoLQ7r-qDqEBw6+{p&BCAD#t3ZOjznMGGVa|Ncx%ZrV?*D(z%y8?^ZP71z={H4L zPhCj;nj&@J{WQKP-_xc2_ya#+Ye@Qyr5RE^V{=Z0Qx( zCuT`Z)liPa6g|K!DXPab_-KT$jrb0ktE}1a0V=>n^vjSnwFNg}3;Kb5=<)r?JLo#H zrUo$=hmeKz1n1$4;QnXKXMIi5@B^lCJBFB*itXr$9Z2x%M26@9F2L^K`bG4@S8+bx zMuJrgcj5@vVD6km08MzFew+KOuQ3{o(MOz%-*7MfK|bo>q9Z?uPTldqljvPKjcc(N zJ?-$G-W3x4w^Hrf%kp$F_j z@8v#p>W`w&N)HxcUvU2p5{&K!{b$%t|0Q}W^U4yLEkr-R9EnxcW#r#`*%I71gkJar zF2z$w)^rOy@g8o*v~cjkc!7Rf&>u&VsZYq-`h|NiXK`Xn4xckw)@*Cj%&iMJAwGEI$CXD>`$LiGzoEBJDx^;G{n ze1h4H_<;hIQ`fmcA$V0&osnc|NH)-Cz~{nS3pw3iB_e4qPb?#|DcEbN&HqPI4Cj diff --git a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po index 21928fe365..7d730c2d45 100644 --- a/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/appearance/locale/es/LC_MESSAGES/django.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-11-18 22:33-0400\n" -"PO-Revision-Date: 2019-10-30 07:03+0000\n" +"PO-Revision-Date: 2019-11-19 05:09+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -162,7 +162,7 @@ msgid "" "\n" " Besides donations you can also support the project by purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario.\n" " " -msgstr "" +msgstr "\n Besides donations you can also support the project by purchasing a copy of the book \"Exploring Mayan EDMS\" by Roberto Rosario.\n " #: templates/appearance/about.html:133 #, python-format diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.mo b/mayan/apps/common/locale/es/LC_MESSAGES/django.mo index 7707af5657bd0b029a87796537f18bc31ac3e7df..4be9e6f69fb51128880675ba1aaea685c6c2c330 100644 GIT binary patch delta 2747 zcmX}tdrZ}39LMnwf+BDPMGyr~9u&hPaP*LPK{Np;Dn@Ey8Y+sAq9}PwP34qgF`COH zyR7okW~swm9_>0Wf7n*5wq~=m)Gi8L=2~+(TWR(Fp5M=Y9`HY;N5r%ZHYRO zTl72HM7#kf(m`Yuv?IX!+sNAKuo1tFgYi8ahnJD`Q2$}h`2vimU4)ad%_)?zi<+MdB1n4M3!SzGTt z(*3jpBP6P7Lf)mLI0diZeVA9^L~AMaHwSIzO=!v1g0>Cc$9O!CyhB%T22LPzeYg|-7{&p3sfPGlh;Gwi zFY3C;37H3zX{X=<%*GgOK@0tMBu}*mE#zOJt@%aQ4zxA?4ej~eYIz1G;u|;;19+*H z`1hpZsdJLUi(cAQ*nk_*F6=~mQ0gPjK)p!9D+`IX=A*qJj5d&Ou?Jp7i@-EumdhNO)a9{*<-C$=02&dyp-zb}Z*X9Y`K3_^9*ZEjW;N zD`w$gw9uc$lU)BRw$eVhD)L(t`6k%;!4$p+ZPndV>ulh6jsz-Cx{X{{n;@Gfa!lvH zeNWa=$QqSUNMA9}$cNB2l zS{1pCOssGFBre0tUX8@lJ)zZ9#=DJ8ZBg;rp^dcS?wrPZ-TDF?McM4O4NDn2W>Fd` zNtCS=JNP3gX>RjJ#2LBBWWY+&ZC6 zD^oXFWzbK=4}1ZoVMj9Yph&ZwwRY;_5PgSkACyv^*qn-_B`L``}~gYcZD@~ zg#|9eN46SA6J;=^B+{${r}g6xM{=}T2Bx@{;@z|tU@mTVZFkR~!}2h*n>Yx|`kU3` zoB?Lnx&GupvmQJaYZen>0sA!0tdx#ZiDvoXW_Ki+{YcwCh&m=Dn|Uw=`(hSGpwDd& zM-5~&a*Hj&1Z==Q_#*nS6{GMA9Ezv0fcM*PRCHl#iW!5mOw^0~$e?Wu>ii@ehBHtP zsz)YgTitdG5c5S|@y$@DN;kFVC6aSEvb{ z!GLD)0~Lkj3Tot@d}od0QK1}*N{1OZ5$9qh?n743uA(NZI4gpws2Aj+me7xi%qY}z z%5WA|_=vwQ*iDBYUqiLObuT=F8qfvQQgpfPZX{TC8=G-(0kg#esHOQDIc49WCSZk5 zgcFhITRmz(I}2HVjr3(YvT-kt!_SeluzykKlZ%`r9Ey`@=b`%RQ7>%3!?+#W(Ldbj zzl5656^zC|QA^Q--*2gc`^SZmpZl6{RT%4^O}snl*g4)T9cN5% zJ{-08@e;DVx!mkgZY-I|X!$<8gwb3V&onioAyb^C$wDPp5h{|SF$O1~mUKD}!WPuT z4q_ke|Bt8;UF$^Ma1Ax`f874Usm_vAVI2J{P;0&g@5Cn5K=vTPu{TfyIEQ-PCD-3k z*WJQsv}p`d`#*+C7FMueZ_>ZIl84exWPwlPD>KcWqJPkR7i>ojtdz zTIaW9Ig;1*7V^*Lb@MldO3hlwI%I3xR-DR%jv)DG;dRc7XX9P87oc)t8!Ge%@iVSJ ziqF$-2+r%5zw8NWy@zuCX}95X)l}FHp+lcD?K>USlyV9gYRoM3YqJft-*PF*6tdqQ zrUZh&_Dd_6Nlgcz6(h)@Llf2HAE9XVhEcSEmIVD#3FDfmDXGW>+e*>i)X<(T}SHy%4EtWO7Fq`v@*Ami7SKON2R6DrKZUB9*)+xuLfgECx_%-CQ%JK=8i3VPl#@x6g&o<^ cJ2E>y_MMN3EG{h>-m!PgU%4IoYFY>W2NSk6y8r+H diff --git a/mayan/apps/common/locale/es/LC_MESSAGES/django.po b/mayan/apps/common/locale/es/LC_MESSAGES/django.po index cf22521572..35d5de77e3 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 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-11-18 22:34-0400\n" -"PO-Revision-Date: 2019-11-19 02:40+0000\n" +"PO-Revision-Date: 2019-11-19 05:05+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -128,7 +128,7 @@ msgstr "Sobre esto" #: links.py:39 msgid "Get the book" -msgstr "" +msgstr "Consigue el libro" #: links.py:44 msgid "Locale profile" diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.mo b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.mo index 5df5f3f725a34a23e174eee64c3307007005ba03..f33cfa3911af9aff7938ffe1ca6774c3fb5fc41c 100644 GIT binary patch delta 1393 zcmYk+O-NKx6u|K_Ig|NOYNeBn)k~8oGtxe&%)(TnL>HMGE9jw@ahTzay?NI3IYr+K zHx9L^ptgN2Vxk~7l7uaCR}cn8EeZ;=mLWv{GtHvGH@|o9J#+58=U$xL@@;GC!$SXc z;nU7j#nU!N#KxGPFFrp5A`9^s=AnPC2!Aq@u?8P%!fbXyf zKVykVN`CNCOvfKA$D(|ZleiLV@HTG1G1Liup(eJ&ZnBZot zM!Mt(9>geWXnzEdyy&5&)J=8?cFo-Wuk7g>@p3aR22-by_ zVl4(yE7*)lbnqp9#gwk(5!=;LW^fmdqAq9_FQC?ySh|}tX1wWqW(JYoQ^d(j+%HHwLgEc$XzT&y(5ot6uZd2 z4GSy&-IX?6N4pz0<2fwFr>I9YfqEn#aXEfLy)%Inqf}XHa4R;Vt}u#GJchcE&!|8A zj+&@&2{#+dP)pp2*RTh5XCF~3ID=ZbS!7NLvb$Pbk2;<@z>6k4f@?91+i(Pj@il(J zUaq#r?I4>@*oynG1NE-lz^ix*bpfmRXQB(=gj$JaWJtP@t0LQZIQn$hU+Zg05Bo#D z_Vhh}tFJ9R?LXyfO-BMz-|o!YK&T+tGMp#Wn4GzTAq6%;)K(yit1XdPCII> z#E@&O6Y(L}iZ}_+j>T**5_hZtJ7L*YU)*u{wRU)M%NsBRdB$~&*JRZuGBXR76j!xp z^F|z#7&NZkAGhpSHp=mAH~pZ3d0G-CJpSA@31jse>*$b9nw!n;i;QPTZk%v-Hj~V@ OZENp;^Q7m7_WT70W4svv delta 1171 zcmXZaT}V_x7{>8;x3g~BTIz1O*6x;M24zy3#fC+cBBT-FO_UMUjgfT`!S>w}1yK}T z9J(ml2nvdXlDrTNv7o}fZt_A1(l+X%PYM-+Nc%r|4rli_GiTh;RZP{g@x zJoWq%{8szTcHwr1Kc4pivk2yJ3XWnP{zhJ#@C?vcL_LgZPvQnF!)>@9L)edDe1ipM z85^RIPs0zKg@5oU76loM7jPMNpeD$n0*oN9O?dU-)c*l3ifS*zQmnuzZbXgSiDz*i z9%6nQrEpCREUyYf)68aIEmmM7R$>|z;1()i2eMXsf=PUdbMP}xM~BX9FoHDMW^BP0 zRED}R!Ti=sLD_zb)i~_cBc$aN^%yGP6;zU}tfH>e*+-Hqf-vxnG&t1!(hB*Qvz3HIR% z{D$ns<`+*M(Q?#LG~rxqM%|SIsPUIF6jBtfqgFVGZTJDT!c82s25vzGN@FdaK&7}F z&*5X#&YDUlGuVR4Tq_dFPGdP<^}ats#oPUg!eR;osGW`DMNE;796m#Jyu;Pjg!i!# zyHIz;&n%iah+1$Am4Q;^wW_$g*QxfIn|0#8dbiuD^VPY3onyZB?vX&7Z(Zl7Ks?lW MrXZH@E=V-|1ElAAd;kCd diff --git a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po index 7046af6e62..f3166b48fc 100644 --- a/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/dependencies/locale/es/LC_MESSAGES/django.po @@ -317,6 +317,8 @@ msgid "" "Unexpected error trying to determine the latest version available. Make sure" " your installation has a connection to the internet; %s" msgstr "" +"Error inesperado al intentar determinar la última versión disponible. " +"Asegúrese de que su instalación tenga conexión a Internet; %s" #: views.py:38 msgid "Your version is up-to-date." diff --git a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.mo b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.mo index 4979b20339e07c5d883eff802795e571d0802398..260e44219d91719d753084d5c608de511bac10c6 100644 GIT binary patch delta 1446 zcmbW$OGs346vy#nI@v?bw9;OB&G*}&CnN?slw~GSNVLdd?hOaVx#EnALYQ3Ws)Zme z3O7-K6jUIzED(Z(S`|@?+C~uMCTJCXe|ILuXb~Ow&*$F%ef-Zo=ReCecN)^4O7dh;q4q`h_;}Lv{_4o~Iu`FbkkDa&|!&r_{+<+5Uic`4V zEN!GW&DoK zcwr;e#7Qh+eS6437@y&3%-dvEfde>9JA6FA`TNaghp@1~>@fCVA5NfJvxFz`2l6UA z&gzYL3U^})H9v!t-fm-BrFz1_b$p$@(9dV7RBqO3ROa)jQoqHm_!VpLC)Q&1mP|`} zQF~+v_u~wz(#8le z+8Mt?3Dbcfw1`6GS2Se^e(9=}tN#k^3<$E;V%r6}cJ82PaT5Ig?z>)i?{n{cdAawVbKaBOkG{pP9pSps z2D$cd-42><1%*O zTb#hpcm})M&3ahhuF#ny?00d5@z0HBM=-O=>?mHuvsg!^U3xriOv@Wm{1x(EIte_EeOSOWUPFcc0V?MWJcKRGV1lq5#!(!=3M#h`QITn2 z3V&f4JL5r$Z=h0lKTiC$P=g7b8`3R9$87M{3G76&hch zYZ31HGI}*i=Zf>y%0j-BD$N(GSId=!)a6pC+#C;2hiYBX)6HAap|;v&Y`Xa|R*3uq D2XtEc diff --git a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po index aa588c4960..8edd23d922 100644 --- a/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/document_parsing/locale/es/LC_MESSAGES/django.po @@ -42,7 +42,7 @@ msgstr "" #: events.py:12 msgid "Document parsed content deleted" -msgstr "" +msgstr "Contenido analizado del documento eliminado" #: events.py:16 msgid "Document version submitted for parsing" @@ -63,7 +63,7 @@ msgstr "Contenido" #: links.py:22 links.py:27 msgid "Delete parsed content" -msgstr "" +msgstr "Eliminar contenido analizado" #: links.py:39 links.py:77 views.py:225 msgid "Parsing errors" @@ -183,8 +183,8 @@ msgstr "" #: views.py:37 msgid "Delete the parsed content of the selected document?" msgid_plural "Delete the parsed content of the selected documents?" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "¿Eliminar el contenido analizado del documento seleccionado?" +msgstr[1] "¿Eliminar el contenido analizado de los documentos seleccionados?" #: views.py:71 #, python-format 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 8cfe15c4172338164e506b28b36fcabdb36297f2..a27bffef90d955897159c2a787f412590490b49b 100644 GIT binary patch delta 3144 zcmXxm3ry8z7{~GFAR)pzpm;&W14l6t@h*6w2o)8)%{0ssbrPbH38px-w6naSkT;IE z470oo!oBYzQ6we&Unw~ecyBb@8x-)_lyghJexLq zf;ZyAw;8WGN*BtjPnb2~$td1<<;9p~dCbOQU)q(iX5H~PZpEuug$rAoMd05UjbUxf zT4D?)Vh5ay88{DXF~clq;c;di>Bz*k_#Aqfa2^)WE~iriT|}+v2lQhTPDD>TGapXE z5Y9v|-bF3=5o!T_+M6+_O~7QFg|Wg?JLjVj`KT=U&DN+=bd{9II9ibVJRT>b8dmsbtfUi&L-? zC*V)02~#-0ewdHS=GCYLHDU_>j2f_2z-$Qya3XF;jdv4uU5AiBitG&323De;4>nNI z&aa@(@H%p{>{ry$JVf2+HryzOY0d(3kjI2rGw563b~Jx)U} zw&?Fn+#2=$;i#jU@Aj`i9YF)e;~CUA*N|Y^ZPYli1BkyWUAQw5n2PDxA6cXoBY#%I z8yCXPpw74nWAGs=GSLHh7TcmCl7+2s0V>NYP)D%`2jK}+PW(2I^Vb96^r|Br+u}G> z2xqx&MJ?bQ@@LJwaeU@ywOaTnWK%XCwUFgV@a!NeX|JFbeis$-CQfWYa z@e9=by^cDPw873!N25ZWkJ@q2?XPs*j>?GxsPT@XlJiScGTuT(!b=8g0qLlm3uaRZ zqw+fHY*wHq*o%6w4s}EqF&eMqe-S{Pseh=mz%v{*F)K7~a<4O4N}=KJ849f&tq7P)G7C7UMLWj-R2% z>6qm#pbUrT{_m$kKG-!R>K6Nqvyjo)k@jo26|1lUld_%vWOiU5+K*g&4|m3yj*7$v zY>y{Vk-LP7$PHBgU+86iYdyjVy&o0okywC}P(K*;=*JIH1Dr>Nv>7$fUDS?Sj&!m< z23ynai1C<;NjL(vp+eMnuVauX+DN~-Wt z&YAbdb+o4?mEd_l)INGp)*e1ArL3m>|I&`OQOGkp z>~`)z^2FYuC|Ta3yd7E-o$T91O|K1<{h^PegPud73~#RQAnjKu>nYnq>%GaI>QI9> zt?O>u$_~AhHPa~Xslh9bQX6{U&GA=Ji=d37Y^JQDtfkDP>b z6vIf8GM%GRY(}%t<|S)7XX)%_8A&kN14u_vM`T@;vW*pmKxfY^BG4 zB|3Ps@zhg#P-eF``w{nr@xn7a(rl#1Yy=LZUDnC07uI1Fp2Bi`JjyHtuVXmg!VY*B z@4=AHW^*wW=ixdWV&=EoRJzmAH`=TV=3xXAPQw|rXVa;HK0&SNb4YszXaS^6sH4-%Y6#L=@)WST3HyC}WiPMl@Sw8xe^O;n%(w9&JuS11=2fmE8?(cnZ z&ik@(2>tnPdkHEv>yb6vHq_@2pdxz6wHY~Hb`G_Xuj7cncHBY-QM9|Lox~8=P|QK) zY8(dPQ>Yz0joMMU+pa{VXg_M=LpT7NP-o#cxBqX{0)xmeRf|g?{_4o4Lm!-oioj$X zj8C8js>1$w3>DfNxDn$C-z?mR6EKpKsm~Q-8J44V8pNt~2BJ~(#kuVaKb6sR48w=9 z3=8ojYQk6&I0(n#KwN}cP%Wn8SEvEo@CA%Ya&E;c)OhDn*EO93q{tScHc*QCyuX@? zcHWH2;Thyc*+o=pT2c4elkD6IFDlf1a6D#WJ6wWVh#!@jEvQKDaNF;oa(@8z`45m= z;l z%8TCLBg08m0jhsGDg|p$UobVOaSkIvwBx98uDkw~LHuX096=7scG8*1T6teVYOI%*-sNbqbq>d+oUE&L2BiF7 z(@_&FMSXA;Dp&h392=2MTQe%BZKzaq81C%28|oJ1qc&868m}C+uuaIOtr9ULDWu9U?_fpQFsw!u?2gg zXRNakA8MQ&BxqKQWY4Nle}C*WmH#4uKH9!KC)asMj;svhu^!X$GgPiy@ipu^jxQM8 zg___pYRBF4orPqhA~OY!Csln0JR^z-ecJ%FM|r)3(Y zS`D6P%8o#&H!pDwwGhe!luF79$|}lC%A0}t-kzS<18cm4JX-^e-jt#mdY4o7QWV#E zN(@E!?=4DzGJ~>-QbE~G8Bf_r*+9`V(ZNF|9KiA4He;*Sy5-ioV%f`F+p=v<5X&~S0`m{#!F9=lhY2@|RutR1gv@cl zIv7ibh`@q^N>59t#6tyv5D`Um3JUTP>7|26MBm@*v2Q*zv%~!Uyf>SvS8e{+TKBFn z+L?Qp3jvX{n07cY`dpD7?8p5$i(y>AYFxsT_!e8ysSpWa3Zr-m>o9{mFpv9i2KS2i z@_-W!{t`QJ4Yy(ohi#a|AfCV~JdMY25H-*YPLcF2Jj3-L9_Gc;T`95~$1sA|a3>Z~ z3%O_S`vm4hGkuTx!d2AbeQ@9!)9E`VoN;>xC`S*Ea^gi(#K&4M^XQOiXTXH z8ArIDqly%+qQNNHYJr^*)?ZIXxuFl-#72CM23L?IqdL8*Xh>OI{@AnDJcsQRIUA4>0s;^#A|> delta 1017 zcmX}rUucd|7y$4y`!Ji$Y&JBrZ-20{*`FJKrYt6naIs+*lF|ybl9W(ZC{5IAEjM#D z+*m2QATAa++_=~k7pz@q6jEF$7xH^P<XQ5z0dQUbKaM2zgvf9%Q9n0YuDH4 z_wrKO&E|X;ZEGf_E^cEjFL4>iS;$Ft@(DNbCyQCLFr`Yia3#B0%44kIAgfavO1Ir~ zn0Ux7oaG``x)iaRi`m2_Y-c3f$p|#avy#5dUB+KM?8T|IAf*Z(U^!26IWI5@8P3fQ z3G60bG|edb4dsw#xSwyCWxeQC?B*(-U?hH#+d0V=eqtXhEKdYJ!yUZBW9|1-~t zpYoI$0nanH#4Ix&XB!{!lnUqAYuqE-jl9bU@S0+#_l&^v+{@0Ae-&S2gYg*G@fl-l z<~S4qez|F7qmA9iejelm#Y{iAf`91UsoX}!Ue>xCVh7{*tDKSO9UeA5t%_DoGt2Lc z0!w8bc9h%yc%aY3T3)AI(gb5g9@FZlr|jhmZf1pOjqGL}2N@NQFrItIt!#DxZg7BE ze&Z3AD8GvXmDWG&=7EV3zG4LKcVt_5oUvE8*vI?KW1N%NBKhPBh-F=%i<|28Xkz8Q z2HR(}ywD@)+Ly4xPdRC9mAr3^{ l=!g8Bc^gKnGgZZH#?jX64O4qEH#1Z71s@BizLX!$`~{V4T{i## diff --git a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po index bbd677bde4..713cd34add 100644 --- a/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/file_metadata/locale/es/LC_MESSAGES/django.po @@ -36,7 +36,7 @@ msgstr "Devuelve el valor de un metadato de archivo específico." #: apps.py:99 msgid "File metadata value of" -msgstr "" +msgstr "Valor de metadatos de archivo de" #: apps.py:110 apps.py:114 apps.py:152 apps.py:161 msgid "File metadata key" diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.mo index 7735f757465248ca5451c6250a31ad9b01bc1d93..4d1dc15d0251ea5dd393827c0378d006adc5e282 100644 GIT binary patch delta 1734 zcmYk+e@sLF!KIDgG9J-F}-3xuysWW1%VXA7Nbc(2-;+B{-JlP zt=i~^+Y#NWEn9AEt;o9N(lP(@N6WR?YV-G)PG^I;;*U1WIo}^Re{^=wc|FgwbI$WT zpXWLE`}&#s)b&Lf!^Y9h`2^?GBW5Wa%jClGv(GG!C$S1Au^dBLW))bErMM42z%P+o ztjupVAFFTy*0}Xem_fZAm#C`_3WYT6$H(w6>VZ+@XJcIS!n5eb-%$7eiI3x5%te2; z*05yKe#Jc004Felx7@mySyHqBrnKgZDJc5Ys16$3`c{0A`T%O}k7F&~!~~Wx zT6ORSD)MgBz~4bd?_fE8gS!6`7Gsc`+VGhi@;^x7BO26khWY2Tku{u?R$LT^bd;OUoeJHCKl z;0Rtv4eUKe!8`3^)TTR%n(>dQ&3Oiw;sw-Z{2O`HvWY_jj=IKB6MHsAK@V;~Eky%H zun+a%hqw&CLe1zr>czKF v5eHg`J*CY;7e-kypE2uS}a=nMz!%>@>nHm z_pU=lTZ;qO=+;l;a_Z+$yZ9f}QvHXdYQdtpgi28FTZ0-v9g@Cn!!+(hekqI4yP|y# zpT;C=cMqZ>`xF(`2u@%cHS+mgpf=cjtw!9`%i;Ue` zP)Y2@73(RyOF<+14z;N+qY}A`-S{uEkL-1JRt4_GBX|tQJS4Zw`8qS?-$av+ZO(XR zt6!gkjut2GEzRFbNqztS*zELs!~P9!Q@b{FR7JN`{5N%ZA{jB_8@GlBhX#fHNKrWpxeg?d{yLE0(?={webzS6{F5 delta 1693 zcmYk*S!_&E9LMqh(3vr`+h^?hlYf<}>5NkzLB9+u6BqHGfH^K`+ zsGZ1&h~PmY5rm3Jl*ASxUZg}xBbM)PW*(f}dq3x#x%Vvp^PkS})o|o>TGAn-EadLb z{h^Cl1TVUIP|kYIO7I+x#8;S)J-V3{;1~?yI^2T?kXJ0rXVx7Dp&yG9?Xj3dy9Nhn zs+m;!(b0f?aX0FNW5{I}d1%1v=)pUv_wQjAzQ%Oy#7y)j$NNL5_a>qyT#S8iMWTNj z`nA>lR2K2WG3}9a;CUp3){0#Ag$L2MU-%G{2%{F*iUE9{ zX#YSi`^6)oGxxD=g+328!MH@b3MbHBhC2J>ScT8946|6RCYXadih5MYw_rZ*MZI?e z2Vpxdz;t%EA2;?S{+jSN9nwvFwNpP51Ph`TR+Q+kM(uPdYNzXQ1~#J3_AV+SZMYYI zVx!A!SDM)>{7IsO>0iPmwRkpz_)n(NLB}MlWR!8Z1JB@X)WTM?3dXVqRI)`-N93TA z@)QQ~0xAigpceEQwP1xs`cWIpLVcGPp`s%wzyQ{uKHPwVaVKg=XHWy*Lw)!L74nZb z5MBHzgSZu^pcZ%&b=D6PwxN>y6KdYbH!2*9r81hbHWwAzA-D+(6YZlojCKnuds|UQ z^%8qyJ1Ro%?D%+nQ40tm(YJDpVi>vXFApLcv22!6L`M*n)pe*)HK9Va8{gtV)Xp0T zhZeFOW1&Y)bOB5877oRBRB~qKm<`7qT#eIkHeSKC`v1Ff&6d-#9yQGy??^G4KHCe@mJ(JP#gGztl3gXeMMj>YTPlX1+BsK(NqpnQIfUb8oZ3; zjrAd;3a}6l;}X2(GW#BMZn|@PwREX0aNfD=ebeI&o8wIIgfiyQ(%k=-nNG7O*QdXW z%0lO~C%0s3yb%kCs$^5F=wwx@;@Ef$bJsZ?p3;gMYSr8XCKh7-gXVK952kUm@mS=* zh_V%PD>Ad3mELUET&LL^a@9vqd*6GbM^YarB^MWrEDMxWR2GklZti_KB|0T=&HWEO CL8xT_ diff --git a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po index 71405d8f87..5c5a36b22a 100644 --- a/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/mailer/locale/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-11-18 22:38-0400\n" -"PO-Revision-Date: 2019-10-27 19:04+0000\n" +"PO-Revision-Date: 2019-11-19 05:07+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -410,7 +410,7 @@ msgstr "No hay perfiles de correo disponibles" #: views.py:253 msgid "Test email sent." -msgstr "" +msgstr "Correo electrónico de prueba enviado." #: views.py:262 #, python-format diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.mo b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.mo index c57ff19e0c441bb2ef79f89d7ac9185534f56cb3..9e0abef0da72e317a258e6ca39810705dad75167 100644 GIT binary patch delta 2132 zcmXxke@xVM9LMoDbZ{Jkb_fxP@Fh^VND)pDH7Fa4B2a<=lTeO0lh6nRT3hSXa+9t8 zsBg4pjW#!0wPtg-EY`5L{^)mqq~&J6R@1SzaJCAkTR)yJ?(28^+~f24-1j~|-kq#VOQUPGSzu;z~S?Y4`^Q@ha;53|4g` zmY~L~!%XbLVvJ%5PT*4Jx8q*NEc*E3SJX=9a4jbDYYkAzM*-fBH{ecOj$`-^PT*nO zxHPel53!5(S=@pZ%MuY9#zNX(VKVdEJe3r@gxcu>YJz`IJIub`Y(1{TYHag7f;F^H z;TrrKwc}#Ku>tF_7RQh^*l}cyHj9en7Z}r7{6eJ)7qAjTS)31c^P#hQ6t&amu?eTK z1uvlnuII~|B>GUHeTG4`&^J-v|BMW67f}(`>`_R`A^z$Zq(eJ>3>ASVunrHPc6JIm z4f`Fnpev~N@(B|`vSL(7!^j-gj;*){%W(!Z{smlz7x7js%q9M9RGP`027C>*v-8-8 zRb zwHRVHW&d_m$a>Mi5gbJq-@-Ij(SdQ)4g-v?1y&<#w{C32{m8|z4^R>M#B0x?k~#J# z6|Fpr7HhFQEW$8qCmpB(ccFuiqXv2zbrkQT7WzGgaUR!W5igM*)``lg0n|LNpo7P- zUibfFDkQEY)2jiOqe5JRT2MRwfcx+mHnBS0<9Y1GAV0bbM^H&MgC$tVOUc-PI{QY{ zLR*n3tq%jb|A(k3RL^>zLFGa|qsR#Ah+anrzr(xnvgaMdol~(1)JCRJ5j%;bhkcFg z)aE=_uTE?*iXrB=LsT@t+qe}!#dgdk!xX|nJeXwm6e@d_Q4LUu+R-?2A?ygI;uJoI z)9APIzZj*xV~uq#p7BRqayD(}P!l9^70R#xeb|WU*o>N}3sW$H z{KOtcEpQU`*ZrP5lUknC>Rw1K&C~+)==}jV&%YwGm)cH>o^9?He`!F`UL40A_J@N_ zi{B)&N7WYhU4P-g9av{9 X$ljq5r$6fKOT0O>pGG_ys!sVI)Yae{ delta 2075 zcmXxke@N7K9LMpucHU`eda0RNdAUq4r_Q`=)^x3+o0(2q&aFD9mbRq9`a$F$r8nLk-5CdD(^L5{EU+!~{&*yvJ`+Ps| z_viinjz>;MqLXtx$Bmg8ev~``eIvVgx<>FpgU31Xkd`s0kMHwFoP5E;eH}_TVM# z$DM?*VcmVg}=NQK}9Aq_$@IGpR+1!P-TP=pM6?qWs6e>gK-SHTzi0`5n z9{rmRi?RQ3G5YyckyN85tiu4dp(Z+r+KLmXg?@$Acn3rH1Sty(aj|MCjJi=j2JkS} z<2j^Wqc%lH6aIrraZbQlP!;~fxDki3l-23^y@Q?j7jD27{;Z-pi7LLwn2beSti3Nr zEwlo;g{?sa*ok31|9y#$*=1BMOuN3!Y}%s_Fo0L^RlMiAh`h5KwhM{Gj-WF38Bz{* z5f$l}t7oYb;5t-obYcPbw~y&G;{|*jAEHv&K&1^NnQcc^?_{a7z)b$Fh_;{?d+`%| z7ga-#P?67A=DbJi>OIN5yGR-$P9> zjJ0?XHE|rb;Xy zh+JZos0Bt)uj***wzn+lwb(;%Nyb*jI&}Rzv7oOY<868oo#JSYwfaglWn!M**nqFv zuQ!1XRgI2Ku`yra?p@Bnd9S$rRoF;dP3xj57^)@l&Upi$9oy-2(^k4C-gM=)Wu3I$ zG?j>sj#yJ_W$q4o1e18Sbym^0#|Bf&A{*(2b&8|OAyFlI=vv+JOPEemxox2-={sqv rhG)lHbQHKYqL`))?;FieyEp4{?(ZJY@>QX#(LeIfW{wU8Ln%)IsPoT_ diff --git a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po index 5f7d97eac3..49863196e4 100644 --- a/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po +++ b/mayan/apps/metadata/locale/es/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: Mayan EDMS\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-11-18 22:38-0400\n" -"PO-Revision-Date: 2019-11-19 02:41+0000\n" +"PO-Revision-Date: 2019-11-19 05:08+0000\n" "Last-Translator: Roberto Rosario\n" "Language-Team: Spanish (http://www.transifex.com/rosarior/mayan-edms/language/es/)\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "Retornar al valor de metadata de un documento específico" #: apps.py:99 msgid "Metadata value of" -msgstr "" +msgstr "Valor de metadatos de" #: apps.py:104 msgid "Metadata type name" From f2016a87cba2d98f214b15ef519cd8689399b398 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 19 Nov 2019 02:04:34 -0400 Subject: [PATCH 12/14] Fix package name typo Signed-off-by: Roberto Rosario --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f89da50ba0..be3ee09b83 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -169,7 +169,7 @@ test-mysql: services: - mysql:8.0.3 script: - - apt-get install -qq libmysqlclient-dev libssd-dev + - apt-get install -qq libmysqlclient-dev libssl-dev - set -a && . ./config.env && set +a - pip install mysql-python==$PYTHON_MYSQL_VERSION - mysql -h"$MYSQL_PORT_3306_TCP_ADDR" -P"$MYSQL_PORT_3306_TCP_PORT" -uroot -p"$MYSQL_ENV_MYSQL_ROOT_PASSWORD" -e "set global character_set_server=utf8mb4;" From 529c567ffb2394f7cc25192c468f4b3690920991 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 19 Nov 2019 02:32:35 -0400 Subject: [PATCH 13/14] Add the mysql-client package for GitLab CI Signed-off-by: Roberto Rosario --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index be3ee09b83..0b9bde0272 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -185,7 +185,7 @@ test-postgres: services: - postgres script: - - apt-get install -qq libpq-dev + - apt-get install -qq libpq-dev mysql-client - set -a && . ./config.env && set +a - pip install psycopg2==$PYTHON_PSYCOPG2_VERSION - python manage.py test --mayan-apps --settings=mayan.settings.testing.gitlab-ci.db_postgres --nomigrations From 8ee9ac239d74cc8fad67a86f050d7d347b43776a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 19 Nov 2019 03:03:21 -0400 Subject: [PATCH 14/14] Add the mysql client in the correct stage Signed-off-by: Roberto Rosario --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0b9bde0272..372834315c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -169,7 +169,7 @@ test-mysql: services: - mysql:8.0.3 script: - - apt-get install -qq libmysqlclient-dev libssl-dev + - apt-get install -qq libmysqlclient-dev libssl-dev mysql-client - set -a && . ./config.env && set +a - pip install mysql-python==$PYTHON_MYSQL_VERSION - mysql -h"$MYSQL_PORT_3306_TCP_ADDR" -P"$MYSQL_PORT_3306_TCP_PORT" -uroot -p"$MYSQL_ENV_MYSQL_ROOT_PASSWORD" -e "set global character_set_server=utf8mb4;" @@ -185,7 +185,7 @@ test-postgres: services: - postgres script: - - apt-get install -qq libpq-dev mysql-client + - apt-get install -qq libpq-dev - set -a && . ./config.env && set +a - pip install psycopg2==$PYTHON_PSYCOPG2_VERSION - python manage.py test --mayan-apps --settings=mayan.settings.testing.gitlab-ci.db_postgres --nomigrations