From 025001499d27723f83d43dc75ff2f4705b2369b8 Mon Sep 17 00:00:00 2001 From: Dimitri <56969769+DimitriDR@users.noreply.github.com> Date: Fri, 8 Mar 2024 16:55:56 +0100 Subject: [PATCH 01/12] Fix: missing translation string (#6054) --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- src-ui/messages.xlf | 37 +++++++++++-------- .../system-status-dialog.component.html | 2 +- 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 1a36226ba..ae34385a1 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -1912,7 +1912,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4049,7 +4049,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 @@ -4585,6 +4585,13 @@ 56 + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Latest Migration @@ -4767,7 +4774,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5000,7 +5007,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 @@ -5639,7 +5646,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -5650,7 +5657,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -5661,21 +5668,21 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -5686,7 +5693,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -5697,7 +5704,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5708,7 +5715,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5719,7 +5726,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5730,7 +5737,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5745,7 +5752,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 diff --git a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html index 42ea1d008..713ae06ee 100644 --- a/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html +++ b/src-ui/src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -56,7 +56,7 @@
Migration Status
@if (status.database.migration_status.unapplied_migrations.length === 0) { - Up to date + Up to date } @else { {{status.database.migration_status.unapplied_migrations.length}} Pending } From b91da77a8aee174431649659aca6e586e6f151e9 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 8 Mar 2024 17:04:09 -0800 Subject: [PATCH 02/12] Reset dev version string --- src-ui/src/environments/environment.prod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index d4f5fff2e..e4df0bf7d 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -5,7 +5,7 @@ export const environment = { apiBaseUrl: document.baseURI + 'api/', apiVersion: '5', appTitle: 'Paperless-ngx', - version: '2.6.1-dev', + version: '2.6.2-dev', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', From ef4f589094bc22a20510a906f8b31ac80ef11a6a Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 9 Mar 2024 07:39:35 -0800 Subject: [PATCH 03/12] Change: dont require empty bulk edit parameters (#6059) --- src/documents/serialisers.py | 2 +- src/documents/tests/test_api_bulk_edit.py | 149 +----------------- src/documents/tests/test_bulk_edit.py | 183 +++++++++++++++++++++- 3 files changed, 181 insertions(+), 153 deletions(-) diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index 5ea0e21c8..1c2c6a095 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -874,7 +874,7 @@ class BulkEditSerializer(DocumentListSerializer, SetPermissionsMixin): write_only=True, ) - parameters = serializers.DictField(allow_empty=True) + parameters = serializers.DictField(allow_empty=True, default={}, write_only=True) def _validate_tag_id_list(self, tags, name="tags"): if not isinstance(tags, list): diff --git a/src/documents/tests/test_api_bulk_edit.py b/src/documents/tests/test_api_bulk_edit.py index 4cf9909c0..10093eb44 100644 --- a/src/documents/tests/test_api_bulk_edit.py +++ b/src/documents/tests/test_api_bulk_edit.py @@ -6,7 +6,6 @@ from guardian.shortcuts import assign_perm from rest_framework import status from rest_framework.test import APITestCase -from documents import bulk_edit from documents.models import Correspondent from documents.models import Document from documents.models import DocumentType @@ -15,7 +14,7 @@ from documents.models import Tag from documents.tests.utils import DirectoriesMixin -class TestBulkEdit(DirectoriesMixin, APITestCase): +class TestBulkEditAPI(DirectoriesMixin, APITestCase): def setUp(self): super().setUp() @@ -51,144 +50,6 @@ class TestBulkEdit(DirectoriesMixin, APITestCase): self.doc4.tags.add(self.t1, self.t2) self.sp1 = StoragePath.objects.create(name="sp1", path="Something/{checksum}") - def test_set_correspondent(self): - self.assertEqual(Document.objects.filter(correspondent=self.c2).count(), 1) - bulk_edit.set_correspondent( - [self.doc1.id, self.doc2.id, self.doc3.id], - self.c2.id, - ) - self.assertEqual(Document.objects.filter(correspondent=self.c2).count(), 3) - self.async_task.assert_called_once() - args, kwargs = self.async_task.call_args - self.assertCountEqual(kwargs["document_ids"], [self.doc1.id, self.doc2.id]) - - def test_unset_correspondent(self): - self.assertEqual(Document.objects.filter(correspondent=self.c2).count(), 1) - bulk_edit.set_correspondent([self.doc1.id, self.doc2.id, self.doc3.id], None) - self.assertEqual(Document.objects.filter(correspondent=self.c2).count(), 0) - self.async_task.assert_called_once() - args, kwargs = self.async_task.call_args - self.assertCountEqual(kwargs["document_ids"], [self.doc2.id, self.doc3.id]) - - def test_set_document_type(self): - self.assertEqual(Document.objects.filter(document_type=self.dt2).count(), 1) - bulk_edit.set_document_type( - [self.doc1.id, self.doc2.id, self.doc3.id], - self.dt2.id, - ) - self.assertEqual(Document.objects.filter(document_type=self.dt2).count(), 3) - self.async_task.assert_called_once() - args, kwargs = self.async_task.call_args - self.assertCountEqual(kwargs["document_ids"], [self.doc1.id, self.doc2.id]) - - def test_unset_document_type(self): - self.assertEqual(Document.objects.filter(document_type=self.dt2).count(), 1) - bulk_edit.set_document_type([self.doc1.id, self.doc2.id, self.doc3.id], None) - self.assertEqual(Document.objects.filter(document_type=self.dt2).count(), 0) - self.async_task.assert_called_once() - args, kwargs = self.async_task.call_args - self.assertCountEqual(kwargs["document_ids"], [self.doc2.id, self.doc3.id]) - - def test_set_document_storage_path(self): - """ - GIVEN: - - 5 documents without defined storage path - WHEN: - - Bulk edit called to add storage path to 1 document - THEN: - - Single document storage path update - """ - self.assertEqual(Document.objects.filter(storage_path=None).count(), 5) - - bulk_edit.set_storage_path( - [self.doc1.id], - self.sp1.id, - ) - - self.assertEqual(Document.objects.filter(storage_path=None).count(), 4) - - self.async_task.assert_called_once() - args, kwargs = self.async_task.call_args - - self.assertCountEqual(kwargs["document_ids"], [self.doc1.id]) - - def test_unset_document_storage_path(self): - """ - GIVEN: - - 4 documents without defined storage path - - 1 document with a defined storage - WHEN: - - Bulk edit called to remove storage path from 1 document - THEN: - - Single document storage path removed - """ - self.assertEqual(Document.objects.filter(storage_path=None).count(), 5) - - bulk_edit.set_storage_path( - [self.doc1.id], - self.sp1.id, - ) - - self.assertEqual(Document.objects.filter(storage_path=None).count(), 4) - - bulk_edit.set_storage_path( - [self.doc1.id], - None, - ) - - self.assertEqual(Document.objects.filter(storage_path=None).count(), 5) - - self.async_task.assert_called() - args, kwargs = self.async_task.call_args - - self.assertCountEqual(kwargs["document_ids"], [self.doc1.id]) - - def test_add_tag(self): - self.assertEqual(Document.objects.filter(tags__id=self.t1.id).count(), 2) - bulk_edit.add_tag( - [self.doc1.id, self.doc2.id, self.doc3.id, self.doc4.id], - self.t1.id, - ) - self.assertEqual(Document.objects.filter(tags__id=self.t1.id).count(), 4) - self.async_task.assert_called_once() - args, kwargs = self.async_task.call_args - self.assertCountEqual(kwargs["document_ids"], [self.doc1.id, self.doc3.id]) - - def test_remove_tag(self): - self.assertEqual(Document.objects.filter(tags__id=self.t1.id).count(), 2) - bulk_edit.remove_tag([self.doc1.id, self.doc3.id, self.doc4.id], self.t1.id) - self.assertEqual(Document.objects.filter(tags__id=self.t1.id).count(), 1) - self.async_task.assert_called_once() - args, kwargs = self.async_task.call_args - self.assertCountEqual(kwargs["document_ids"], [self.doc4.id]) - - def test_modify_tags(self): - tag_unrelated = Tag.objects.create(name="unrelated") - self.doc2.tags.add(tag_unrelated) - self.doc3.tags.add(tag_unrelated) - bulk_edit.modify_tags( - [self.doc2.id, self.doc3.id], - add_tags=[self.t2.id], - remove_tags=[self.t1.id], - ) - - self.assertCountEqual(list(self.doc2.tags.all()), [self.t2, tag_unrelated]) - self.assertCountEqual(list(self.doc3.tags.all()), [self.t2, tag_unrelated]) - - self.async_task.assert_called_once() - args, kwargs = self.async_task.call_args - # TODO: doc3 should not be affected, but the query for that is rather complicated - self.assertCountEqual(kwargs["document_ids"], [self.doc2.id, self.doc3.id]) - - def test_delete(self): - self.assertEqual(Document.objects.count(), 5) - bulk_edit.delete([self.doc1.id, self.doc2.id]) - self.assertEqual(Document.objects.count(), 3) - self.assertCountEqual( - [doc.id for doc in Document.objects.all()], - [self.doc3.id, self.doc4.id, self.doc5.id], - ) - @mock.patch("documents.serialisers.bulk_edit.set_correspondent") def test_api_set_correspondent(self, m): m.return_value = "OK" @@ -367,7 +228,7 @@ class TestBulkEdit(DirectoriesMixin, APITestCase): response = self.client.post( "/api/documents/bulk_edit/", json.dumps( - {"documents": [self.doc1.id], "method": "delete", "parameters": {}}, + {"documents": [self.doc1.id], "method": "delete"}, ), content_type="application/json", ) @@ -493,7 +354,7 @@ class TestBulkEdit(DirectoriesMixin, APITestCase): self.assertEqual(Document.objects.count(), 5) response = self.client.post( "/api/documents/bulk_edit/", - json.dumps({"documents": [-235], "method": "delete", "parameters": {}}), + json.dumps({"documents": [-235], "method": "delete"}), content_type="application/json", ) self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) @@ -600,7 +461,7 @@ class TestBulkEdit(DirectoriesMixin, APITestCase): response = self.client.post( "/api/documents/bulk_edit/", json.dumps( - {"documents": [self.doc2.id], "method": "add_tag", "parameters": {}}, + {"documents": [self.doc2.id], "method": "add_tag"}, ), content_type="application/json", ) @@ -627,7 +488,7 @@ class TestBulkEdit(DirectoriesMixin, APITestCase): response = self.client.post( "/api/documents/bulk_edit/", json.dumps( - {"documents": [self.doc2.id], "method": "remove_tag", "parameters": {}}, + {"documents": [self.doc2.id], "method": "remove_tag"}, ), content_type="application/json", ) diff --git a/src/documents/tests/test_bulk_edit.py b/src/documents/tests/test_bulk_edit.py index ad622ca24..f73835302 100644 --- a/src/documents/tests/test_bulk_edit.py +++ b/src/documents/tests/test_bulk_edit.py @@ -7,25 +7,192 @@ from guardian.shortcuts import assign_perm from guardian.shortcuts import get_groups_with_perms from guardian.shortcuts import get_users_with_perms -from documents.bulk_edit import set_permissions +from documents import bulk_edit +from documents.models import Correspondent from documents.models import Document +from documents.models import DocumentType +from documents.models import StoragePath +from documents.models import Tag from documents.tests.utils import DirectoriesMixin -class TestBulkEditPermissions(DirectoriesMixin, TestCase): +class TestBulkEdit(DirectoriesMixin, TestCase): def setUp(self): super().setUp() - self.doc1 = Document.objects.create(checksum="A", title="A") - self.doc2 = Document.objects.create(checksum="B", title="B") - self.doc3 = Document.objects.create(checksum="C", title="C") - self.owner = User.objects.create(username="test_owner") self.user1 = User.objects.create(username="user1") self.user2 = User.objects.create(username="user2") self.group1 = Group.objects.create(name="group1") self.group2 = Group.objects.create(name="group2") + patcher = mock.patch("documents.bulk_edit.bulk_update_documents.delay") + self.async_task = patcher.start() + self.addCleanup(patcher.stop) + self.c1 = Correspondent.objects.create(name="c1") + self.c2 = Correspondent.objects.create(name="c2") + self.dt1 = DocumentType.objects.create(name="dt1") + self.dt2 = DocumentType.objects.create(name="dt2") + self.t1 = Tag.objects.create(name="t1") + self.t2 = Tag.objects.create(name="t2") + self.doc1 = Document.objects.create(checksum="A", title="A") + self.doc2 = Document.objects.create( + checksum="B", + title="B", + correspondent=self.c1, + document_type=self.dt1, + ) + self.doc3 = Document.objects.create( + checksum="C", + title="C", + correspondent=self.c2, + document_type=self.dt2, + ) + self.doc4 = Document.objects.create(checksum="D", title="D") + self.doc5 = Document.objects.create(checksum="E", title="E") + self.doc2.tags.add(self.t1) + self.doc3.tags.add(self.t2) + self.doc4.tags.add(self.t1, self.t2) + self.sp1 = StoragePath.objects.create(name="sp1", path="Something/{checksum}") + + def test_set_correspondent(self): + self.assertEqual(Document.objects.filter(correspondent=self.c2).count(), 1) + bulk_edit.set_correspondent( + [self.doc1.id, self.doc2.id, self.doc3.id], + self.c2.id, + ) + self.assertEqual(Document.objects.filter(correspondent=self.c2).count(), 3) + self.async_task.assert_called_once() + args, kwargs = self.async_task.call_args + self.assertCountEqual(kwargs["document_ids"], [self.doc1.id, self.doc2.id]) + + def test_unset_correspondent(self): + self.assertEqual(Document.objects.filter(correspondent=self.c2).count(), 1) + bulk_edit.set_correspondent([self.doc1.id, self.doc2.id, self.doc3.id], None) + self.assertEqual(Document.objects.filter(correspondent=self.c2).count(), 0) + self.async_task.assert_called_once() + args, kwargs = self.async_task.call_args + self.assertCountEqual(kwargs["document_ids"], [self.doc2.id, self.doc3.id]) + + def test_set_document_type(self): + self.assertEqual(Document.objects.filter(document_type=self.dt2).count(), 1) + bulk_edit.set_document_type( + [self.doc1.id, self.doc2.id, self.doc3.id], + self.dt2.id, + ) + self.assertEqual(Document.objects.filter(document_type=self.dt2).count(), 3) + self.async_task.assert_called_once() + args, kwargs = self.async_task.call_args + self.assertCountEqual(kwargs["document_ids"], [self.doc1.id, self.doc2.id]) + + def test_unset_document_type(self): + self.assertEqual(Document.objects.filter(document_type=self.dt2).count(), 1) + bulk_edit.set_document_type([self.doc1.id, self.doc2.id, self.doc3.id], None) + self.assertEqual(Document.objects.filter(document_type=self.dt2).count(), 0) + self.async_task.assert_called_once() + args, kwargs = self.async_task.call_args + self.assertCountEqual(kwargs["document_ids"], [self.doc2.id, self.doc3.id]) + + def test_set_document_storage_path(self): + """ + GIVEN: + - 5 documents without defined storage path + WHEN: + - Bulk edit called to add storage path to 1 document + THEN: + - Single document storage path update + """ + self.assertEqual(Document.objects.filter(storage_path=None).count(), 5) + + bulk_edit.set_storage_path( + [self.doc1.id], + self.sp1.id, + ) + + self.assertEqual(Document.objects.filter(storage_path=None).count(), 4) + + self.async_task.assert_called_once() + args, kwargs = self.async_task.call_args + + self.assertCountEqual(kwargs["document_ids"], [self.doc1.id]) + + def test_unset_document_storage_path(self): + """ + GIVEN: + - 4 documents without defined storage path + - 1 document with a defined storage + WHEN: + - Bulk edit called to remove storage path from 1 document + THEN: + - Single document storage path removed + """ + self.assertEqual(Document.objects.filter(storage_path=None).count(), 5) + + bulk_edit.set_storage_path( + [self.doc1.id], + self.sp1.id, + ) + + self.assertEqual(Document.objects.filter(storage_path=None).count(), 4) + + bulk_edit.set_storage_path( + [self.doc1.id], + None, + ) + + self.assertEqual(Document.objects.filter(storage_path=None).count(), 5) + + self.async_task.assert_called() + args, kwargs = self.async_task.call_args + + self.assertCountEqual(kwargs["document_ids"], [self.doc1.id]) + + def test_add_tag(self): + self.assertEqual(Document.objects.filter(tags__id=self.t1.id).count(), 2) + bulk_edit.add_tag( + [self.doc1.id, self.doc2.id, self.doc3.id, self.doc4.id], + self.t1.id, + ) + self.assertEqual(Document.objects.filter(tags__id=self.t1.id).count(), 4) + self.async_task.assert_called_once() + args, kwargs = self.async_task.call_args + self.assertCountEqual(kwargs["document_ids"], [self.doc1.id, self.doc3.id]) + + def test_remove_tag(self): + self.assertEqual(Document.objects.filter(tags__id=self.t1.id).count(), 2) + bulk_edit.remove_tag([self.doc1.id, self.doc3.id, self.doc4.id], self.t1.id) + self.assertEqual(Document.objects.filter(tags__id=self.t1.id).count(), 1) + self.async_task.assert_called_once() + args, kwargs = self.async_task.call_args + self.assertCountEqual(kwargs["document_ids"], [self.doc4.id]) + + def test_modify_tags(self): + tag_unrelated = Tag.objects.create(name="unrelated") + self.doc2.tags.add(tag_unrelated) + self.doc3.tags.add(tag_unrelated) + bulk_edit.modify_tags( + [self.doc2.id, self.doc3.id], + add_tags=[self.t2.id], + remove_tags=[self.t1.id], + ) + + self.assertCountEqual(list(self.doc2.tags.all()), [self.t2, tag_unrelated]) + self.assertCountEqual(list(self.doc3.tags.all()), [self.t2, tag_unrelated]) + + self.async_task.assert_called_once() + args, kwargs = self.async_task.call_args + # TODO: doc3 should not be affected, but the query for that is rather complicated + self.assertCountEqual(kwargs["document_ids"], [self.doc2.id, self.doc3.id]) + + def test_delete(self): + self.assertEqual(Document.objects.count(), 5) + bulk_edit.delete([self.doc1.id, self.doc2.id]) + self.assertEqual(Document.objects.count(), 3) + self.assertCountEqual( + [doc.id for doc in Document.objects.all()], + [self.doc3.id, self.doc4.id, self.doc5.id], + ) + @mock.patch("documents.tasks.bulk_update_documents.delay") def test_set_permissions(self, m): doc_ids = [self.doc1.id, self.doc2.id, self.doc3.id] @@ -43,7 +210,7 @@ class TestBulkEditPermissions(DirectoriesMixin, TestCase): }, } - set_permissions( + bulk_edit.set_permissions( doc_ids, set_permissions=permissions, owner=self.owner, @@ -85,7 +252,7 @@ class TestBulkEditPermissions(DirectoriesMixin, TestCase): "groups": [self.group2.id], }, } - set_permissions( + bulk_edit.set_permissions( doc_ids, set_permissions=permissions, owner=self.owner, From 8d463e05aeb24ee881c0f0124d29a1bbb8283a2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 13:32:28 -0700 Subject: [PATCH 04/12] Chore(deps): Bump the small-changes group with 2 updates (#6081) Bumps the small-changes group with 2 updates: [rapidfuzz](https://github.com/rapidfuzz/RapidFuzz) and [redis](https://github.com/redis/redis-py). Updates `rapidfuzz` from 3.6.1 to 3.6.2 - [Release notes](https://github.com/rapidfuzz/RapidFuzz/releases) - [Changelog](https://github.com/rapidfuzz/RapidFuzz/blob/main/CHANGELOG.rst) - [Commits](https://github.com/rapidfuzz/RapidFuzz/compare/v3.6.1...v3.6.2) Updates `redis` from 5.0.2 to 5.0.3 - [Release notes](https://github.com/redis/redis-py/releases) - [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES) - [Commits](https://github.com/redis/redis-py/compare/v5.0.2...v5.0.3) --- updated-dependencies: - dependency-name: rapidfuzz dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes - dependency-name: redis dependency-type: direct:production update-type: version-update:semver-patch dependency-group: small-changes ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Pipfile.lock | 193 ++++++++++++++++++++++++++------------------------- 1 file changed, 97 insertions(+), 96 deletions(-) diff --git a/Pipfile.lock b/Pipfile.lock index 2f81583c6..49efc6194 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "7bc15a3bbd521f85a8cdcc85be8adf7c942acb53c6d461199d7f8b1ef63ac651" + "sha256": "e88ab81dcd44e04defdc7efbbd6e2c5e1e522b3cdb580419569fc433c00139ef" }, "pipfile-spec": 6, "requires": {}, @@ -43,7 +43,7 @@ "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f", "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028" ], - "markers": "python_version >= '3.7'", + "markers": "python_full_version < '3.11.3'", "version": "==4.0.3" }, "billiard": { @@ -1502,111 +1502,112 @@ }, "rapidfuzz": { "hashes": [ - "sha256:01835d02acd5d95c1071e1da1bb27fe213c84a013b899aba96380ca9962364bc", - "sha256:01eb03cd880a294d1bf1a583fdd00b87169b9cc9c9f52587411506658c864d73", - "sha256:03f73b381bdeccb331a12c3c60f1e41943931461cdb52987f2ecf46bfc22f50d", - "sha256:0402f1629e91a4b2e4aee68043a30191e5e1b7cd2aa8dacf50b1a1bcf6b7d3ab", - "sha256:060bd7277dc794279fa95522af355034a29c90b42adcb7aa1da358fc839cdb11", - "sha256:064c1d66c40b3a0f488db1f319a6e75616b2e5fe5430a59f93a9a5e40a656d15", - "sha256:06e98ff000e2619e7cfe552d086815671ed09b6899408c2c1b5103658261f6f3", - "sha256:08b6fb47dd889c69fbc0b915d782aaed43e025df6979b6b7f92084ba55edd526", - "sha256:0a9fc714b8c290261669f22808913aad49553b686115ad0ee999d1cb3df0cd66", - "sha256:0bbfae35ce4de4c574b386c43c78a0be176eeddfdae148cb2136f4605bebab89", - "sha256:12ff8eaf4a9399eb2bebd838f16e2d1ded0955230283b07376d68947bbc2d33d", - "sha256:1936d134b6c513fbe934aeb668b0fee1ffd4729a3c9d8d373f3e404fbb0ce8a0", - "sha256:1c47d592e447738744905c18dda47ed155620204714e6df20eb1941bb1ba315e", - "sha256:1dfc557c0454ad22382373ec1b7df530b4bbd974335efe97a04caec936f2956a", - "sha256:1e12319c6b304cd4c32d5db00b7a1e36bdc66179c44c5707f6faa5a889a317c0", - "sha256:23de71e7f05518b0bbeef55d67b5dbce3bcd3e2c81e7e533051a2e9401354eb0", - "sha256:266dd630f12696ea7119f31d8b8e4959ef45ee2cbedae54417d71ae6f47b9848", - "sha256:2963f4a3f763870a16ee076796be31a4a0958fbae133dbc43fc55c3968564cf5", - "sha256:2a791168e119cfddf4b5a40470620c872812042f0621e6a293983a2d52372db0", - "sha256:2b155e67fff215c09f130555002e42f7517d0ea72cbd58050abb83cb7c880cec", - "sha256:2b19795b26b979c845dba407fe79d66975d520947b74a8ab6cee1d22686f7967", - "sha256:2e03038bfa66d2d7cffa05d81c2f18fd6acbb25e7e3c068d52bb7469e07ff382", - "sha256:3028ee8ecc48250607fa8a0adce37b56275ec3b1acaccd84aee1f68487c8557b", - "sha256:35660bee3ce1204872574fa041c7ad7ec5175b3053a4cb6e181463fc07013de7", - "sha256:3c772d04fb0ebeece3109d91f6122b1503023086a9591a0b63d6ee7326bd73d9", - "sha256:3c84294f4470fcabd7830795d754d808133329e0a81d62fcc2e65886164be83b", - "sha256:40cced1a8852652813f30fb5d4b8f9b237112a0bbaeebb0f4cc3611502556764", - "sha256:4243a9c35667a349788461aae6471efde8d8800175b7db5148a6ab929628047f", - "sha256:42f211e366e026de110a4246801d43a907cd1a10948082f47e8a4e6da76fef52", - "sha256:4381023fa1ff32fd5076f5d8321249a9aa62128eb3f21d7ee6a55373e672b261", - "sha256:484759b5dbc5559e76fefaa9170147d1254468f555fd9649aea3bad46162a88b", - "sha256:49b9ed2472394d306d5dc967a7de48b0aab599016aa4477127b20c2ed982dbf9", - "sha256:53251e256017e2b87f7000aee0353ba42392c442ae0bafd0f6b948593d3f68c6", - "sha256:588c4b20fa2fae79d60a4e438cf7133d6773915df3cc0a7f1351da19eb90f720", - "sha256:5a2f3e9df346145c2be94e4d9eeffb82fab0cbfee85bd4a06810e834fe7c03fa", - "sha256:5d82b9651e3d34b23e4e8e201ecd3477c2baa17b638979deeabbb585bcb8ba74", - "sha256:5dd95b6b7bfb1584f806db89e1e0c8dbb9d25a30a4683880c195cc7f197eaf0c", - "sha256:692c9a50bea7a8537442834f9bc6b7d29d8729a5b6379df17c31b6ab4df948c2", - "sha256:6b0ccc2ec1781c7e5370d96aef0573dd1f97335343e4982bdb3a44c133e27786", - "sha256:6dede83a6b903e3ebcd7e8137e7ff46907ce9316e9d7e7f917d7e7cdc570ee05", - "sha256:7142ee354e9c06e29a2636b9bbcb592bb00600a88f02aa5e70e4f230347b373e", - "sha256:7183157edf0c982c0b8592686535c8b3e107f13904b36d85219c77be5cefd0d8", - "sha256:7420e801b00dee4a344ae2ee10e837d603461eb180e41d063699fb7efe08faf0", - "sha256:757dfd7392ec6346bd004f8826afb3bf01d18a723c97cbe9958c733ab1a51791", - "sha256:76c23ceaea27e790ddd35ef88b84cf9d721806ca366199a76fd47cfc0457a81b", - "sha256:7fec74c234d3097612ea80f2a80c60720eec34947066d33d34dc07a3092e8105", - "sha256:82300e5f8945d601c2daaaac139d5524d7c1fdf719aa799a9439927739917460", - "sha256:841eafba6913c4dfd53045835545ba01a41e9644e60920c65b89c8f7e60c00a9", - "sha256:8d7a072f10ee57c8413c8ab9593086d42aaff6ee65df4aa6663eecdb7c398dca", - "sha256:8e4da90e4c2b444d0a171d7444ea10152e07e95972bb40b834a13bdd6de1110c", - "sha256:96cd19934f76a1264e8ecfed9d9f5291fde04ecb667faef5f33bdbfd95fe2d1f", - "sha256:a03863714fa6936f90caa7b4b50ea59ea32bb498cc91f74dc25485b3f8fccfe9", - "sha256:a1788ebb5f5b655a15777e654ea433d198f593230277e74d51a2a1e29a986283", - "sha256:a3ee4f8f076aa92184e80308fc1a079ac356b99c39408fa422bbd00145be9854", - "sha256:a490cd645ef9d8524090551016f05f052e416c8adb2d8b85d35c9baa9d0428ab", - "sha256:a553cc1a80d97459d587529cc43a4c7c5ecf835f572b671107692fe9eddf3e24", - "sha256:a59472b43879012b90989603aa5a6937a869a72723b1bf2ff1a0d1edee2cc8e6", - "sha256:ac434fc71edda30d45db4a92ba5e7a42c7405e1a54cb4ec01d03cc668c6dcd40", - "sha256:ad9d74ef7c619b5b0577e909582a1928d93e07d271af18ba43e428dc3512c2a1", - "sha256:ae598a172e3a95df3383634589660d6b170cc1336fe7578115c584a99e0ba64d", - "sha256:b2ef4c0fd3256e357b70591ffb9e8ed1d439fb1f481ba03016e751a55261d7c1", - "sha256:b3e5af946f419c30f5cb98b69d40997fe8580efe78fc83c2f0f25b60d0e56efb", - "sha256:b53137d81e770c82189e07a8f32722d9e4260f13a0aec9914029206ead38cac3", - "sha256:b7e3375e4f2bfec77f907680328e4cd16cc64e137c84b1886d547ab340ba6928", - "sha256:bcc957c0a8bde8007f1a8a413a632a1a409890f31f73fe764ef4eac55f59ca87", - "sha256:be156f51f3a4f369e758505ed4ae64ea88900dcb2f89d5aabb5752676d3f3d7e", - "sha256:be368573255f8fbb0125a78330a1a40c65e9ba3c5ad129a426ff4289099bfb41", - "sha256:c1a23eee225dfb21c07f25c9fcf23eb055d0056b48e740fe241cbb4b22284379", - "sha256:c65f92881753aa1098c77818e2b04a95048f30edbe9c3094dc3707d67df4598b", - "sha256:ca3dfcf74f2b6962f411c33dd95b0adf3901266e770da6281bc96bb5a8b20de9", - "sha256:cd4ba4c18b149da11e7f1b3584813159f189dc20833709de5f3df8b1342a9759", - "sha256:d056e342989248d2bdd67f1955bb7c3b0ecfa239d8f67a8dfe6477b30872c607", - "sha256:d2f0274595cc5b2b929c80d4e71b35041104b577e118cf789b3fe0a77b37a4c5", - "sha256:d73dcfe789d37c6c8b108bf1e203e027714a239e50ad55572ced3c004424ed3b", - "sha256:d79aec8aeee02ab55d0ddb33cea3ecd7b69813a48e423c966a26d7aab025cdfe", - "sha256:da3e8c9f7e64bb17faefda085ff6862ecb3ad8b79b0f618a6cf4452028aa2222", - "sha256:dad55a514868dae4543ca48c4e1fc0fac704ead038dafedf8f1fc0cc263746c1", - "sha256:dec307b57ec2d5054d77d03ee4f654afcd2c18aee00c48014cb70bfed79597d6", - "sha256:e06c4242a1354cf9d48ee01f6f4e6e19c511d50bb1e8d7d20bcadbb83a2aea90", - "sha256:e19d519386e9db4a5335a4b29f25b8183a1c3f78cecb4c9c3112e7f86470e37f", - "sha256:e49b9575d16c56c696bc7b06a06bf0c3d4ef01e89137b3ddd4e2ce709af9fe06", - "sha256:ebcfb5bfd0a733514352cfc94224faad8791e576a80ffe2fd40b2177bf0e7198", - "sha256:ed0f712e0bb5fea327e92aec8a937afd07ba8de4c529735d82e4c4124c10d5a0", - "sha256:edf97c321fd641fea2793abce0e48fa4f91f3c202092672f8b5b4e781960b891", - "sha256:eef8b346ab331bec12bbc83ac75641249e6167fab3d84d8f5ca37fd8e6c7a08c", - "sha256:f056ba42fd2f32e06b2c2ba2443594873cfccc0c90c8b6327904fc2ddf6d5799", - "sha256:f382f7ffe384ce34345e1c0b2065451267d3453cadde78946fbd99a59f0cc23c", - "sha256:f59d19078cc332dbdf3b7b210852ba1f5db8c0a2cd8cc4c0ed84cc00c76e6802", - "sha256:fbc07e2e4ac696497c5f66ec35c21ddab3fc7a406640bffed64c26ab2f7ce6d6", - "sha256:fde9b14302a31af7bdafbf5cfbb100201ba21519be2b9dedcf4f1048e4fbe65d" + "sha256:012221629d54d3bee954148247f711eb86d4d390b589ebfe03172ea0b37a7531", + "sha256:080cb71b50cb6aff11d1c6aeb157f273e2da0b2bdb3f9d7b01257e49e69a8576", + "sha256:153d065e353371cc0aeff32b99999a5758266a64e958d1364189367c1c9f6814", + "sha256:16270b5529de83b7bae7457e952e4d9cf3fbf029a837dd32d415bb9e0eb8e599", + "sha256:1b86b93d93020c2b3edc1665d75c8855784845fc0a739b312c26c3a4bf0c80d5", + "sha256:1c54d3c85e522d3ac9ee39415f183c8fa184c4f87e7e5a37938f15a6d50e853a", + "sha256:1df2faf80201952e252413b6fac6f3e146080dcebb87bb1bb722508e67558ed8", + "sha256:1dfe4c24957474ce0ac75d886387e30e292b4be39228a6d71f76de414dc187db", + "sha256:259364199cbfeca33b1af369fc7951f71717aa285184a3fa5a7b1772da1b89db", + "sha256:28243086ed0e50808bb56632e5442c457241646aeafafd501ac87901f40a3237", + "sha256:28c011fb31f2c3f82f503aedd6097d3d3854e574e327a119a3b7eb2cf90b79ca", + "sha256:2a46220f86a5f9cb016af31525e0d0865cad437d02239aa0d8aed2ab8bff1f1c", + "sha256:2acd2514defce81e6ff4bbff50252d5e7df8e85a731442c4b83e44c86cf1c916", + "sha256:2d580d937146e803c8e5e1b87916cab8d6f84013b6392713e201efcda335c7d8", + "sha256:3168ff565d4b8c239cf11fb604dd2507d30e9bcaac76a4077c0ac23cf2c866ed", + "sha256:337e357f693130c4c6be740652542b260e36f622c59e01fa33d58f1d2750c930", + "sha256:3549123fca5bb817341025f98e8e49ca99f84596c7c4f92b658f8e5836040d4a", + "sha256:354ad5fe655beb7b279390cb58334903931c5452ecbad1b1666ffb06786498e2", + "sha256:35aeac852bca06023d6bbd50c1fc504ca5a9a3613d5e75a140f0be7601fa34ef", + "sha256:35bd4bc9c40e6994c5d6edea4b9319388b4d9711c13c66d543bb4c37624b4184", + "sha256:36ce7b68a7b90b787cdd73480a68d2f1ca63c31a3a9d5a79a8736f978e1e9344", + "sha256:380586664f2f63807050ddb95e7702888b4f0b425abf17655940c411f39287ad", + "sha256:3ae7c86914cb6673e97e187ba431b9c4cf4177d9ae77f8a1e5b2ba9a5628839e", + "sha256:3c1dc078ef371fce09f9f3eec2ca4eaa2a8cd412ec53941015b4f39f14d34407", + "sha256:4209816626d8d6ff8ae7dc248061c6059e618b70c6e6f6e4d7444ae3740b2b85", + "sha256:423c7c588b09d618601097b7a0017dfcb91132a2076bef29023c5f3cd2dc3de1", + "sha256:48e1eaea8fcd522fca7f04f0480663f0f0cfb77957092cce60a93f4462864996", + "sha256:495c0d8e14e6f12520eb7fc71b9ba9fcaafb47fc23a654e6e89b6c7985ec0020", + "sha256:4c279928651ce0e9e5220dcb25a00cc53b65e592a0861336a38299bcdca3a596", + "sha256:4edcceebb85ebfa49a3ddcde20ad891d36c08dc0fd592efdab0e7d313a4e36af", + "sha256:4fcfa23b5553b27f4016df77c53172ea743454cf12c28cfa7c35a309a2be93b3", + "sha256:53597fd72a9340bcdd80d3620f4957c2b92f9b569313b969a3abdaffd193aae6", + "sha256:5378c04102c7f084cde30a100154fa6d7e2baf0d51a6bdd2f912545559c1fb35", + "sha256:617949a70150e6fffdaed19253dd49f7a53528411dc8bf7663d499ba21e0f61e", + "sha256:62df2136068e2515ed8beb01756381ff62c29384d785e3bf46e3111d4ea3ba1e", + "sha256:6440ed0b3007c1c9286b0b88fe2ab2d9e83edd60cd62293b3dfabb732b4e8a30", + "sha256:6468f8bc8c3c50604f43631550ef9cfec873515dba5023ca34d461be94669fc8", + "sha256:6478f7803efebf5f644d0b758439c5b25728550fdfbb19783d150004c46a75a9", + "sha256:66b008bf2972740cd2dda5d382eb8bdb87265cd88198e71c7797bdc0d1f79d20", + "sha256:673ba2c343644805acdae1cb949c6a4de71aa2f62a998978551ebea59603af3f", + "sha256:6d67b649bf3e1b1722d04eca44d37919aef88305ce7ad05564502d013cf550fd", + "sha256:6ee98d88ae9ccc77ff61992ed33b2496478def5dc0da55c9a9aa06fcb725a352", + "sha256:7382c90170f60c846c81a07ddd80bb2e8c43c8383754486fa37f67391a571897", + "sha256:74c6773b11445b5e5cf93ca383171cd0ac0cdeafea11a7b2a5688f8bf8d813e6", + "sha256:7d830bc7a9b586a374147ec60b08b1f9ae5996b43f75cc514f37faef3866b519", + "sha256:7f18397c8d6a65fc0b288d2fc29bc7baeea6ba91eeb95163a3cd98f23cd3bc85", + "sha256:7f9fa14136a5b0cba1ec42531f7c3e0b0d3edb7fd6bc5e5ae7b498541f3855ab", + "sha256:80e51b22a7da83f9c87a97e92df07ed0612c74c35496590255f4b5d5b4212dfe", + "sha256:81a630ed2fc3ec5fc7400eb66bab1f87e282b4d47f0abe3e48c6634dfa13b5e4", + "sha256:824cc381cf81cbf8d158f6935664ec2a69e6ac3b1d39fa201988bf81a257f775", + "sha256:84c1032ae42628465b7a5cc35249906061e18a8193c9c27cbd2db54e9823a9a6", + "sha256:85a5b6e026393fe39fb61146b9c17c5af66fffbe1410e992c4bb06d9ec327bd3", + "sha256:87ac3a87f2251ae2e95fc9478ca5c759de6d141d04c84d3fec9f9cdcfc167b33", + "sha256:95a49c6b8bf1229743ae585dd5b7d57f0d15a7eb6e826866d5c9965ba958503c", + "sha256:9a07dffac439223b4f1025dbfc68f4445a3460a859309c9858c2a3fa29617cdc", + "sha256:9a74102fc5a2534fe91f7507838623e1f3a149d8e05648389c42bb42e14b1c3f", + "sha256:9bcc91ebd8fc69a6bd3b5711c8250f5f4e70606b4da75ef415f57ad209978205", + "sha256:9d457c89bac1471442002e70551e8268e639b3870b4a4521eae363c07253be87", + "sha256:a5637e6bf11b15b5aff6ee818c76bdec99ad208511b78985e6209ba648a6e3ee", + "sha256:a7895e04a22d6515bc91a850e0831f2405547605aa311d1ffec51e4818abc3c1", + "sha256:a945567c2b0b6e069454c9782d5234b0b6795718adf7a9f868bd3144afa6a023", + "sha256:ab269adfc64480f209e99f253391a10735edd5c09046e04899adab5fb132f20e", + "sha256:af7c19ec86e11488539380d3db1755be5d561a3c0e7b04ff9d07abd7f9a8e9d8", + "sha256:b593cc51aed887e93b78c2f94dfae9008be2b23d17afd3b1f1d3eb3913b58f26", + "sha256:bd82f9838519136b7083dd1e3149ee80344521f3dc37f744f227505ff0883efb", + "sha256:be69f7fd46b5c6467fe5e2fd4cff3816b0c03048eed8a4becb9a73e6000960e7", + "sha256:bec353f022011e6e5cd28ccb8700fbd2a33918197af0d4e0abb3c3f4845cc864", + "sha256:c17c5efee347a40a6f4c1eec59e3d7d1e22f7613a97f8b8a07733ef723483a04", + "sha256:cbd5894f23fdf5697499cf759523639838ac822bd1600e343fdce7313baa02ae", + "sha256:cda81d0e0ce0c13abfa46b24e10c1e85f9c6acb628f0a9a948f5779f9c2076a2", + "sha256:cf911e792ab0c431694c9bf2648afabfd92099103f2e31492893e078ddca5e1a", + "sha256:d07899506a5a8760448d9df036d528b55a554bf571714173635c79eef4a86e58", + "sha256:d41dd59a70decfce6595315367a2fea2af660d92a9d144acc6479030501014d7", + "sha256:d4f6de745fe6ce46a422d353ee10599013631d7d714a36d025f164b2d4e8c000", + "sha256:d57b98013b802621bbc8b12a46bfc9d36ac552ab51ca207f7ce167ad46adabeb", + "sha256:d8e5a437b9089df6242a718d9c31ab1742989e9400a0977af012ef483b63b4c2", + "sha256:dbee7f5ff11872b76505cbd87c814abc823e8757f11c69062eb3b25130a283da", + "sha256:ddc380ffaa90f204cc9ddcb779114b9ab6f015246d549de9d47871a97ef9f18a", + "sha256:de8adc12161bf282c60f12dc9233bb31632f71d446a010fe7469a69b8153427f", + "sha256:e06f6d270112f5db001f1cba5a97e1a48aee3d3dbdcbea3ec027c230462dbf9b", + "sha256:e1507fc5769aa109dda4de3a15f822a0f6a03e18d627bd0ba3ddbb253cf70e07", + "sha256:e48dde8ca83d11daa00900cf6a5d281a1297aef9b7bfa73801af6e8822be5019", + "sha256:e706f302c6a3ae0d74edd0d6ace46aee1ae07c563b436ccf5ff04db2b3571e60", + "sha256:eb2e51d01b9c6d6954a3e055c57a80d4685b4fc82719db5519fc153566bcd6bb", + "sha256:ed52461ae5a9ea4c400d38e2649c74a413f1a6d8fb8308b66f1fbd122514732f", + "sha256:ef3925daaa93eed20401012e219f569ff0c039ed5bf4ce2d3737b4f75d441622", + "sha256:f31314fd2e2f3dc3e519e6f93669462ce7953df2def1c344aa8f5345976d0eb2", + "sha256:f3a70f341c4c111bad910d2df69c78577a98af140319a996af24c9385939335d", + "sha256:f8b77779174b1b40aa70827692571ab457061897846255ad7d5d559e2edb1932", + "sha256:fe2a68be734e8e88af23385c68d6467e15818b6b1df1cbfebf7bff577226c957" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==3.6.1" + "version": "==3.6.2" }, "redis": { "extras": [ "hiredis" ], "hashes": [ - "sha256:3f82cc80d350e93042c8e6e7a5d0596e4dd68715babffba79492733e1f367037", - "sha256:4caa8e1fcb6f3c0ef28dba99535101d80934b7d4cd541bbb47f4a3826ee472d1" + "sha256:4973bae7444c0fbed64a06b87446f79361cb7e4ec1538c022d696ed7a5015580", + "sha256:5da9b8fe9e1254293756c16c008e8620b3d15fcc6dde6babde9541850e72a32d" ], + "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==5.0.2" + "version": "==5.0.3" }, "regex": { "hashes": [ From 6f549506d6591f0709073a578389bb46f7d8f0db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 17:33:50 -0700 Subject: [PATCH 05/12] Chore(deps): Bump the django group with 1 update (#6080) Bumps the django group with 1 update: [django-filter](https://github.com/carltongibson/django-filter). Updates `django-filter` from 23.5 to 24.1 - [Release notes](https://github.com/carltongibson/django-filter/releases) - [Changelog](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst) - [Commits](https://github.com/carltongibson/django-filter/compare/23.5...24.1) --- updated-dependencies: - dependency-name: django-filter dependency-type: direct:production update-type: version-update:semver-major dependency-group: django ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Pipfile | 2 +- Pipfile.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Pipfile b/Pipfile index b5656439f..e76b30b88 100644 --- a/Pipfile +++ b/Pipfile @@ -14,7 +14,7 @@ django-celery-results = "*" django-compression-middleware = "*" django-cors-headers = "*" django-extensions = "*" -django-filter = "~=23.5" +django-filter = "~=24.1" django-guardian = "*" django-multiselectfield = "*" djangorestframework = "~=3.14" diff --git a/Pipfile.lock b/Pipfile.lock index 49efc6194..be69c652e 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "e88ab81dcd44e04defdc7efbbd6e2c5e1e522b3cdb580419569fc433c00139ef" + "sha256": "1d4d3594f94314b0af3006fea7feac68d801bc6e88fb89ac97775ec228c79273" }, "pipfile-spec": 6, "requires": {}, @@ -522,12 +522,12 @@ }, "django-filter": { "hashes": [ - "sha256:67583aa43b91fe8c49f74a832d95f4d8442be628fd4c6d65e9f811f5153a4e5c", - "sha256:99122a201d83860aef4fe77758b69dda913e874cc5e0eaa50a86b0b18d708400" + "sha256:335bcae6cbd3e984b024841070f567b22faea57594f27d37c52f8f131f8d8621", + "sha256:65cb43ce272077e5ac6aae1054d76c121cd6b552e296a82a13921e9371baf8c1" ], "index": "pypi", - "markers": "python_version >= '3.7'", - "version": "==23.5" + "markers": "python_version >= '3.8'", + "version": "==24.1" }, "django-guardian": { "hashes": [ From a196c14a587635a563828c0d49139a6d0f51fa43 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 07:56:01 -0700 Subject: [PATCH 06/12] Chore(deps-dev): Bump the development group with 3 updates (#6079) * Chore(deps-dev): Bump the development group with 3 updates Bumps the development group with 3 updates: [ruff](https://github.com/astral-sh/ruff), [pytest](https://github.com/pytest-dev/pytest) and [mkdocs-material](https://github.com/squidfunk/mkdocs-material). Updates `ruff` from 0.3.0 to 0.3.2 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/v0.3.0...v0.3.2) Updates `pytest` from 8.0.2 to 8.1.1 - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.0.2...8.1.1) Updates `mkdocs-material` from 9.5.12 to 9.5.13 - [Release notes](https://github.com/squidfunk/mkdocs-material/releases) - [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG) - [Commits](https://github.com/squidfunk/mkdocs-material/compare/9.5.12...9.5.13) --- updated-dependencies: - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development - dependency-name: pytest dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development - dependency-name: mkdocs-material dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development ... Signed-off-by: dependabot[bot] * Updates pre-commit hook versions and runs it against all files --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com> --- .pre-commit-config.yaml | 2 +- Pipfile.lock | 69 +++++++++---------- src/documents/classifier.py | 10 +-- .../migrations/0014_document_checksum.py | 4 +- src/documents/tests/utils.py | 4 +- src/paperless_tesseract/tests/test_parser.py | 6 +- 6 files changed, 40 insertions(+), 55 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4ee14f187..a036a11d1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,7 +47,7 @@ repos: exclude: "(^Pipfile\\.lock$)" # Python hooks - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 'v0.3.0' + rev: 'v0.3.2' hooks: - id: ruff - repo: https://github.com/psf/black-pre-commit-mirror diff --git a/Pipfile.lock b/Pipfile.lock index be69c652e..4993fa05a 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -2928,11 +2928,11 @@ }, "importlib-metadata": { "hashes": [ - "sha256:4805911c3a4ec7c3966410053e9ec6a1fecd629117df5adee56dfc9432a1081e", - "sha256:f238736bb06590ae52ac1fab06a3a9ef1d8dce2b7a35b5ab329371d6c8f5d2cc" + "sha256:198f568f3230878cb1b44fbd7975f87906c22336dba2e4a7f05278c281fbd792", + "sha256:f4bc4c0c070c490abf4ce96d715f68e95923320370efb66143df00199bb6c100" ], "markers": "python_version < '3.10'", - "version": "==7.0.1" + "version": "==7.0.2" }, "incremental": { "hashes": [ @@ -3057,12 +3057,12 @@ }, "mkdocs-material": { "hashes": [ - "sha256:5f69cef6a8aaa4050b812f72b1094fda3d079b9a51cf27a247244c03ec455e97", - "sha256:d6f0c269f015e48c76291cdc79efb70f7b33bbbf42d649cfe475522ebee61b1f" + "sha256:5cbe17fee4e3b4980c8420a04cc762d8dc052ef1e10532abd4fce88e5ea9ce6a", + "sha256:d8e4caae576312a88fd2609b81cf43d233cdbe36860d67a68702b018b425bd87" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==9.5.12" + "version": "==9.5.13" }, "mkdocs-material-extensions": { "hashes": [ @@ -3132,11 +3132,11 @@ }, "packaging": { "hashes": [ - "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5", - "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" + "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", + "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" ], "markers": "python_version >= '3.7'", - "version": "==23.2" + "version": "==24.0" }, "paginate": { "hashes": [ @@ -3284,11 +3284,11 @@ }, "pymdown-extensions": { "hashes": [ - "sha256:6ca215bc57bc12bf32b414887a68b810637d039124ed9b2e5bd3325cbb2c050c", - "sha256:c0d64d5cf62566f59e6b2b690a4095c931107c250a8c8e1351c1de5f6b036deb" + "sha256:c70e146bdd83c744ffc766b4671999796aba18842b268510a329f7f64700d584", + "sha256:f5cc7000d7ff0d1ce9395d216017fa4df3dde800afb1fb72d1c7d3fd35e710f4" ], "markers": "python_version >= '3.8'", - "version": "==10.7" + "version": "==10.7.1" }, "pyopenssl": { "hashes": [ @@ -3299,12 +3299,12 @@ }, "pytest": { "hashes": [ - "sha256:d4051d623a2e0b7e51960ba963193b09ce6daeb9759a451844a21e4ddedfc1bd", - "sha256:edfaaef32ce5172d5466b5127b42e0d6d35ebbe4453f0e3505d96afd93f6b096" + "sha256:2a8386cfc11fa9d2c50ee7b2a57e7d898ef90470a7a34c4b949ff59662bb78b7", + "sha256:ac978141a75948948817d360297b7aae0fcb9d6ff6bc9ec6d514b85d5a65c044" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==8.0.2" + "version": "==8.1.1" }, "pytest-cov": { "hashes": [ @@ -3373,7 +3373,6 @@ "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" ], - "index": "pypi", "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.9.0.post0" }, @@ -3462,6 +3461,7 @@ "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d", "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" ], + "markers": "python_version >= '3.6'", "version": "==6.0.1" }, "pyyaml-env-tag": { @@ -3581,27 +3581,27 @@ }, "ruff": { "hashes": [ - "sha256:0886184ba2618d815067cf43e005388967b67ab9c80df52b32ec1152ab49f53a", - "sha256:128265876c1d703e5f5e5a4543bd8be47c73a9ba223fd3989d4aa87dd06f312f", - "sha256:19eacceb4c9406f6c41af806418a26fdb23120dfe53583df76d1401c92b7c14b", - "sha256:23dbb808e2f1d68eeadd5f655485e235c102ac6f12ad31505804edced2a5ae77", - "sha256:2f7dbba46e2827dfcb0f0cc55fba8e96ba7c8700e0a866eb8cef7d1d66c25dcb", - "sha256:3ef655c51f41d5fa879f98e40c90072b567c666a7114fa2d9fe004dffba00932", - "sha256:5da894a29ec018a8293d3d17c797e73b374773943e8369cfc50495573d396933", - "sha256:755c22536d7f1889be25f2baf6fedd019d0c51d079e8417d4441159f3bcd30c2", - "sha256:7deb528029bacf845bdbb3dbb2927d8ef9b4356a5e731b10eef171e3f0a85944", - "sha256:9343690f95710f8cf251bee1013bf43030072b9f8d012fbed6ad702ef70d360a", - "sha256:a1f3ed501a42f60f4dedb7805fa8d4534e78b4e196f536bac926f805f0743d49", - "sha256:b08b356d06a792e49a12074b62222f9d4ea2a11dca9da9f68163b28c71bf1dd4", - "sha256:cc30a9053ff2f1ffb505a585797c23434d5f6c838bacfe206c0e6cf38c921a1e", - "sha256:d0d3d7ef3d4f06433d592e5f7d813314a34601e6c5be8481cccb7fa760aa243e", - "sha256:dd73fe7f4c28d317855da6a7bc4aa29a1500320818dd8f27df95f70a01b8171f", - "sha256:e1e0d4381ca88fb2b73ea0766008e703f33f460295de658f5467f6f229658c19", - "sha256:e3a4a6d46aef0a84b74fcd201a4401ea9a6cd85614f6a9435f2d33dd8cefbf83" + "sha256:0ac06a3759c3ab9ef86bbeca665d31ad3aa9a4b1c17684aadb7e61c10baa0df4", + "sha256:0c1bdd9920cab5707c26c8b3bf33a064a4ca7842d91a99ec0634fec68f9f4037", + "sha256:1231eacd4510f73222940727ac927bc5d07667a86b0cbe822024dd00343e77e9", + "sha256:2c6d613b19e9a8021be2ee1d0e27710208d1603b56f47203d0abbde906929a9b", + "sha256:5f65103b1d76e0d600cabd577b04179ff592064eaa451a70a81085930e907d0b", + "sha256:77f2612752e25f730da7421ca5e3147b213dca4f9a0f7e0b534e9562c5441f01", + "sha256:967978ac2d4506255e2f52afe70dda023fc602b283e97685c8447d036863a302", + "sha256:9966b964b2dd1107797be9ca7195002b874424d1d5472097701ae8f43eadef5d", + "sha256:9bd640a8f7dd07a0b6901fcebccedadeb1a705a50350fb86b4003b805c81385a", + "sha256:b74c3de9103bd35df2bb05d8b2899bf2dbe4efda6474ea9681280648ec4d237d", + "sha256:b83d17ff166aa0659d1e1deaf9f2f14cbe387293a906de09bc4860717eb2e2da", + "sha256:bb875c6cc87b3703aeda85f01c9aebdce3d217aeaca3c2e52e38077383f7268a", + "sha256:be75e468a6a86426430373d81c041b7605137a28f7014a72d2fc749e47f572aa", + "sha256:c8439338a6303585d27b66b4626cbde89bb3e50fa3cae86ce52c1db7449330a7", + "sha256:de8b480d8379620cbb5ea466a9e53bb467d2fb07c7eca54a4aa8576483c35d36", + "sha256:f380be9fc15a99765c9cf316b40b9da1f6ad2ab9639e551703e581a5e6da6745", + "sha256:fa78ec9418eb1ca3db392811df3376b46471ae93792a81af2d1cbb0e5dcb5142" ], "index": "pypi", "markers": "python_version >= '3.7'", - "version": "==0.3.0" + "version": "==0.3.2" }, "scipy": { "hashes": [ @@ -3756,7 +3756,6 @@ "sha256:f970663fa4f7e80401a7b0cbeec00fa801bf0287d93d48368fc3e6fa32716245", "sha256:f9b2fdca47dc855516b2d66eef3c39f2672cbf7e7a42e7e67ad2cbfcd6ba107d" ], - "index": "pypi", "markers": "python_version >= '3.8'", "version": "==4.0.0" }, diff --git a/src/documents/classifier.py b/src/documents/classifier.py index aa0eb70b6..b3787abab 100644 --- a/src/documents/classifier.py +++ b/src/documents/classifier.py @@ -237,14 +237,8 @@ class DocumentClassifier: num_storage_paths = len(set(labels_storage_path) | {-1}) - 1 logger.debug( - "{} documents, {} tag(s), {} correspondent(s), " - "{} document type(s). {} storage path(es)".format( - docs_queryset.count(), - num_tags, - num_correspondents, - num_document_types, - num_storage_paths, - ), + f"{docs_queryset.count()} documents, {num_tags} tag(s), {num_correspondents} correspondent(s), " + f"{num_document_types} document type(s). {num_storage_paths} storage path(es)", ) from sklearn.feature_extraction.text import CountVectorizer diff --git a/src/documents/migrations/0014_document_checksum.py b/src/documents/migrations/0014_document_checksum.py index deef59990..f3da30eb6 100644 --- a/src/documents/migrations/0014_document_checksum.py +++ b/src/documents/migrations/0014_document_checksum.py @@ -130,9 +130,7 @@ def set_checksums(apps, schema_editor): fg="red", ), code=colourise( - " $ echo 'DELETE FROM documents_document WHERE id = {pk};' | ./manage.py dbshell".format( - pk=document.pk, - ), + f" $ echo 'DELETE FROM documents_document WHERE id = {document.pk};' | ./manage.py dbshell", fg="green", ), line=colourise("\n{}\n".format("=" * 80), fg="white", opts=("bold",)), diff --git a/src/documents/tests/utils.py b/src/documents/tests/utils.py index ba435d5c3..abdd27017 100644 --- a/src/documents/tests/utils.py +++ b/src/documents/tests/utils.py @@ -290,9 +290,7 @@ class TestMigrations(TransactionTestCase): assert ( self.migrate_from and self.migrate_to - ), "TestCase '{}' must define migrate_from and migrate_to properties".format( - type(self).__name__, - ) + ), f"TestCase '{type(self).__name__}' must define migrate_from and migrate_to properties" self.migrate_from = [(self.app, self.migrate_from)] if self.dependencies is not None: self.migrate_from.extend(self.dependencies) diff --git a/src/paperless_tesseract/tests/test_parser.py b/src/paperless_tesseract/tests/test_parser.py index fae64742e..d63d965c5 100644 --- a/src/paperless_tesseract/tests/test_parser.py +++ b/src/paperless_tesseract/tests/test_parser.py @@ -45,11 +45,7 @@ class TestParser(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertEqual( result, actual_result, - "strip_exceess_whitespace({}) != '{}', but '{}'".format( - source, - result, - actual_result, - ), + f"strip_exceess_whitespace({source}) != '{result}', but '{actual_result}'", ) def test_get_text_from_pdf(self): From 2c4a664df43e84260657dec3f31311a52a9cb848 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 14 Mar 2024 08:20:34 -0700 Subject: [PATCH 07/12] Change: remove credentials from redis url in system status (#6104) --- src/documents/tests/test_api_status.py | 39 ++++++++++++++++++++++++++ src/documents/views.py | 7 ++++- 2 files changed, 45 insertions(+), 1 deletion(-) diff --git a/src/documents/tests/test_api_status.py b/src/documents/tests/test_api_status.py index 1f8940ea9..96e639c35 100644 --- a/src/documents/tests/test_api_status.py +++ b/src/documents/tests/test_api_status.py @@ -100,6 +100,45 @@ class TestSystemStatus(APITestCase): self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertEqual(response.data["tasks"]["redis_status"], "OK") + def test_system_status_redis_no_credentials(self): + """ + GIVEN: + - Redis URL with credentials + WHEN: + - The user requests the system status + THEN: + - The response contains the redis URL but no credentials + """ + with override_settings( + _CHANNELS_REDIS_URL="redis://username:password@localhost:6379", + ): + self.client.force_login(self.user) + response = self.client.get(self.ENDPOINT) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual( + response.data["tasks"]["redis_url"], + "redis://localhost:6379", + ) + + def test_system_status_redis_socket(self): + """ + GIVEN: + - Redis URL is socket + WHEN: + - The user requests the system status + THEN: + - The response contains the redis URL + """ + + with override_settings(_CHANNELS_REDIS_URL="unix:///path/to/redis.sock"): + self.client.force_login(self.user) + response = self.client.get(self.ENDPOINT) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual( + response.data["tasks"]["redis_url"], + "unix:///path/to/redis.sock", + ) + @mock.patch("celery.app.control.Inspect.ping") def test_system_status_celery_ping(self, mock_ping): """ diff --git a/src/documents/views.py b/src/documents/views.py index 99db0a5d8..5fa0f7eb1 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -12,6 +12,7 @@ from pathlib import Path from time import mktime from unicodedata import normalize from urllib.parse import quote +from urllib.parse import urlparse import pathvalidate from django.apps import apps @@ -1617,6 +1618,10 @@ class SystemStatusView(GenericAPIView, PassUserMixin): media_stats = os.statvfs(settings.MEDIA_ROOT) redis_url = settings._CHANNELS_REDIS_URL + redis_url_parsed = urlparse(redis_url) + redis_constructed_url = f"{redis_url_parsed.scheme}://{redis_url_parsed.path or redis_url_parsed.hostname}" + if redis_url_parsed.hostname is not None: + redis_constructed_url += f":{redis_url_parsed.port}" redis_error = None with Redis.from_url(url=redis_url) as client: try: @@ -1728,7 +1733,7 @@ class SystemStatusView(GenericAPIView, PassUserMixin): }, }, "tasks": { - "redis_url": redis_url, + "redis_url": redis_constructed_url, "redis_status": redis_status, "redis_error": redis_error, "celery_status": celery_active, From 43ec154bc2f7bca35fb1910c2abd63e568c62c09 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 14 Mar 2024 08:34:23 -0700 Subject: [PATCH 08/12] Fix: allow setting allauth ACCOUNT_SESSION_REMEMBER (#6105) --- docs/configuration.md | 5 +++++ src/paperless/settings.py | 2 ++ 2 files changed, 7 insertions(+) diff --git a/docs/configuration.md b/docs/configuration.md index 5182d018b..981d27b27 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -589,6 +589,11 @@ system. See the corresponding Defaults to False +#### [`PAPERLESS_ACCOUNT_SESSION_REMEMBER=`](#PAPERLESS_ACCOUNT_SESSION_REMEMBER) {#PAPERLESS_ACCOUNT_SESSION_REMEMBER} + +: See the corresponding +[django-allauth documentation](https://docs.allauth.org/en/latest/account/configuration.html) + ## OCR settings {#ocr} Paperless uses [OCRmyPDF](https://ocrmypdf.readthedocs.io/en/latest/) diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 77adb6bbf..a583ef406 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -456,6 +456,8 @@ ACCOUNT_EMAIL_VERIFICATION = os.getenv( "optional", ) +ACCOUNT_SESSION_REMEMBER = __get_boolean("PAPERLESS_ACCOUNT_SESSION_REMEMBER") + if AUTO_LOGIN_USERNAME: _index = MIDDLEWARE.index("django.contrib.auth.middleware.AuthenticationMiddleware") # This overrides everything the auth middleware is doing but still allows From df359730fec5b5c5dc5ac5c47964645cfab0e761 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 Mar 2024 00:01:11 +0000 Subject: [PATCH 09/12] Chore(deps-dev): Bump follow-redirects from 1.15.5 to 1.15.6 in /src-ui (#6120) Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.5 to 1.15.6. - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.5...v1.15.6) --- updated-dependencies: - dependency-name: follow-redirects dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- src-ui/package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src-ui/package-lock.json b/src-ui/package-lock.json index 0978ca81a..b380824eb 100644 --- a/src-ui/package-lock.json +++ b/src-ui/package-lock.json @@ -9966,9 +9966,9 @@ "dev": true }, "node_modules/follow-redirects": { - "version": "1.15.5", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", - "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", "dev": true, "funding": [ { From b1aa57abcb34cacdf69990e66c5835e8fbe80bf2 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 17 Mar 2024 15:43:08 -0700 Subject: [PATCH 10/12] Fix: workflow action reordering --- .../workflow-edit-dialog/workflow-edit-dialog.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts index 77e079fd2..588202b89 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts @@ -481,5 +481,8 @@ export class WorkflowEditDialogComponent this.actionFields.insert(event.currentIndex, actionField) // removing id will effectively re-create the actions in this order this.object.actions.forEach((a) => (a.id = null)) + this.actionFields.controls.forEach((c) => + c.get('id').setValue(null, { emitEvent: false }) + ) } } From 1540e88a06e2320d539f00e4a4e81e32a02cd8ee Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 17 Mar 2024 16:43:48 -0700 Subject: [PATCH 11/12] Documentation: fix small typos in file handling docs --- docs/advanced_usage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced_usage.md b/docs/advanced_usage.md index ec67db2a5..b023d3ac9 100644 --- a/docs/advanced_usage.md +++ b/docs/advanced_usage.md @@ -293,7 +293,7 @@ will create a directory structure as follows: !!! tip Paperless checks the filename of a document whenever it is saved. Changing (or deleting) - a [storage paths](#storage-paths) will automatically be reflected in the file system. However, + a [storage path](#storage-paths) will automatically be reflected in the file system. However, when changing `PAPERLESS_FILENAME_FORMAT` you will need to manually run the [`document renamer`](administration.md#renamer) to move any existing documents. @@ -348,7 +348,7 @@ This happens if all the placeholders in a filename evaluate to the same value. If there are any errors in the placeholders included in `PAPERLESS_FILENAME_FORMAT`, -paperless will fallback to using the default naming scheme instead. +paperless will fall back to using the default naming scheme instead. !!! caution From 48eaa31ecf2dbba5b49a343d5d510187c888bdb3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Mar 2024 20:44:19 -0700 Subject: [PATCH 12/12] New Crowdin translations by GitHub Action (#6055) Co-authored-by: Crowdin Bot --- src-ui/src/locale/messages.af_ZA.xlf | 38 ++-- src-ui/src/locale/messages.ar_AR.xlf | 38 ++-- src-ui/src/locale/messages.be_BY.xlf | 38 ++-- src-ui/src/locale/messages.bg_BG.xlf | 280 +++++++++++++------------ src-ui/src/locale/messages.ca_ES.xlf | 38 ++-- src-ui/src/locale/messages.cs_CZ.xlf | 38 ++-- src-ui/src/locale/messages.da_DK.xlf | 38 ++-- src-ui/src/locale/messages.de_DE.xlf | 38 ++-- src-ui/src/locale/messages.el_GR.xlf | 38 ++-- src-ui/src/locale/messages.es_ES.xlf | 38 ++-- src-ui/src/locale/messages.fi_FI.xlf | 38 ++-- src-ui/src/locale/messages.fr_FR.xlf | 38 ++-- src-ui/src/locale/messages.he_IL.xlf | 38 ++-- src-ui/src/locale/messages.hr_HR.xlf | 38 ++-- src-ui/src/locale/messages.hu_HU.xlf | 38 ++-- src-ui/src/locale/messages.id_ID.xlf | 38 ++-- src-ui/src/locale/messages.it_IT.xlf | 38 ++-- src-ui/src/locale/messages.ja_JP.xlf | 38 ++-- src-ui/src/locale/messages.ko_KR.xlf | 38 ++-- src-ui/src/locale/messages.lb_LU.xlf | 38 ++-- src-ui/src/locale/messages.lv_LV.xlf | 38 ++-- src-ui/src/locale/messages.nl_NL.xlf | 38 ++-- src-ui/src/locale/messages.no_NO.xlf | 38 ++-- src-ui/src/locale/messages.pl_PL.xlf | 38 ++-- src-ui/src/locale/messages.pt_BR.xlf | 38 ++-- src-ui/src/locale/messages.pt_PT.xlf | 38 ++-- src-ui/src/locale/messages.ro_RO.xlf | 38 ++-- src-ui/src/locale/messages.ru_RU.xlf | 38 ++-- src-ui/src/locale/messages.sk_SK.xlf | 38 ++-- src-ui/src/locale/messages.sl_SI.xlf | 38 ++-- src-ui/src/locale/messages.sr_CS.xlf | 38 ++-- src-ui/src/locale/messages.sv_SE.xlf | 38 ++-- src-ui/src/locale/messages.th_TH.xlf | 38 ++-- src-ui/src/locale/messages.tr_TR.xlf | 38 ++-- src-ui/src/locale/messages.uk_UA.xlf | 38 ++-- src-ui/src/locale/messages.vi_VN.xlf | 38 ++-- src-ui/src/locale/messages.zh_CN.xlf | 38 ++-- src-ui/src/locale/messages.zh_TW.xlf | 38 ++-- src/locale/bg_BG/LC_MESSAGES/django.po | 157 +++++++------- src/locale/de_DE/LC_MESSAGES/django.po | 2 +- src/locale/fr_FR/LC_MESSAGES/django.po | 2 +- src/locale/he_IL/LC_MESSAGES/django.po | 8 +- src/locale/ja_JP/LC_MESSAGES/django.po | 2 +- src/locale/zh_CN/LC_MESSAGES/django.po | 4 +- 44 files changed, 1083 insertions(+), 778 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index bf12f4320..a00d0c11c 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Bekyk @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Meer soos dit @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Bekyk notas @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 notas @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Telling: diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index f93039502..65b4f2245 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 عرض @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 مزيدا من هذا @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 إظهار الملاحظات @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 الملاحظات @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 النقاط: diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index b666f0ec2..76667bdaf 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Прагляд @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Больш падобнага @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Адзнака: diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index 466458145..baa1767e3 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -403,7 +403,7 @@ src/app/app.component.ts 180 - Workflows give you more control over the document pipeline. + Работните процеси ви дават повече контрол върху конвейера на документи. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -455,7 +455,7 @@ src/app/components/admin/config/config.component.html 2 - Application Configuration + Софтуерна конфигурация Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. @@ -463,7 +463,7 @@ src/app/components/admin/config/config.component.html 4 - Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. + Глобални опции за конфигурация на приложението, които се прилагат за <strong>всеки</strong> потребител на тази инсталация на софтуера. Опциите също могат да бъдат зададени с помощта на променливи на средата или конфигурационния файл, но стойността тук винаги ще има предимство. @@ -481,7 +481,7 @@ src/app/components/common/permissions-select/permissions-select.component.html 22 - + Read the documentation about this setting @@ -489,7 +489,7 @@ src/app/components/admin/config/config.component.html 25 - Read the documentation about this setting + Прочетете документацията за тази настройка Enable @@ -497,7 +497,7 @@ src/app/components/admin/config/config.component.html 34 - Enable + Активирай Discard @@ -581,7 +581,7 @@ src/app/components/admin/config/config.component.ts 81 - Error retrieving config + Грешка при извличане на конфигурацията Invalid JSON @@ -589,7 +589,7 @@ src/app/components/admin/config/config.component.ts 107 - Invalid JSON + Невалиден JSON Configuration updated @@ -597,7 +597,7 @@ src/app/components/admin/config/config.component.ts 151 - Configuration updated + Конфигурацията е обновена An error occurred updating configuration @@ -605,7 +605,7 @@ src/app/components/admin/config/config.component.ts 156 - An error occurred updating configuration + Възникна грешка при актуализиране на конфигурацията File successfully updated @@ -613,7 +613,7 @@ src/app/components/admin/config/config.component.ts 178 - File successfully updated + Файлът е актуализиран успешно An error occurred uploading file @@ -621,7 +621,7 @@ src/app/components/admin/config/config.component.ts 183 - An error occurred uploading file + Възникна грешка при качването на файла Logs @@ -645,7 +645,7 @@ src/app/components/admin/logs/logs.component.html 4 - Review the log files for the application and for email checking. + Прегледайте регистрационните файлове за приложението и за проверка на имейл. Auto refresh @@ -765,7 +765,7 @@ src/app/components/admin/settings/settings.component.html 4 - Options to customize appearance, notifications, saved views and more. Settings apply to the <strong>current user only</strong>. + Опции за персонализиране на външния вид, известия, запазени изгледи и др. Настройките се отнасят само за <strong>текущия потребител</strong>. Start tour @@ -785,7 +785,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 2 - System Status + Системат статус Open Django Admin @@ -1001,7 +1001,7 @@ src/app/components/admin/settings/settings.component.html 182 - Document editing + Редактиране на документ Automatically remove inbox tag(s) on save @@ -1009,7 +1009,7 @@ src/app/components/admin/settings/settings.component.html 186 - Automatically remove inbox tag(s) on save + Автоматично премахване на таг(ове) на входящата кутия при запазване Bulk editing @@ -1893,7 +1893,7 @@ src/app/components/admin/tasks/tasks.component.html 111 -  ( selected) + ( selected) Failed @@ -1901,7 +1901,7 @@ src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + Неуспех Complete @@ -1909,7 +1909,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + Изпълнено Started @@ -1917,7 +1917,7 @@ src/app/components/admin/tasks/tasks.component.html 139,141 - Started + Стартирано Queued @@ -1925,7 +1925,7 @@ src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + Подредено в опашка Dismiss selected @@ -2013,7 +2013,7 @@ src/app/components/admin/users-groups/users-groups.component.html 4 - Create, delete and edit users and groups. + Създавайте, изтривайте и редактирайте потребители и групи. Users @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -2597,7 +2597,7 @@ src/app/components/manage/workflows/workflows.component.html 2 - Workflows + Работни процеси Mail @@ -2629,7 +2629,7 @@ src/app/components/app-frame/app-frame.component.html 242 - Configuration + Конфигурация GitHub @@ -2725,7 +2725,7 @@ src/app/components/common/confirm-button/confirm-button.component.ts 20 - Are you sure? + Сигурни ли сте? Confirmation @@ -3797,7 +3797,7 @@ src/app/components/manage/workflows/workflows.component.html 30 - Enabled + Активирано Triggers @@ -3809,7 +3809,7 @@ src/app/components/manage/workflows/workflows.component.html 20 - Triggers + Тригъри Trigger Workflow On: @@ -3817,7 +3817,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 31 - Trigger Workflow On: + Задействай работния процес при: Add Trigger @@ -3825,7 +3825,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 33 - Add Trigger + Добави тригър Apply Actions: @@ -3833,7 +3833,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 73 - Apply Actions: + Приложи действия: Add Action @@ -3841,7 +3841,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 75 - Add Action + Добави действие Trigger type @@ -3849,7 +3849,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 121 - Trigger type + Тип на тригъра Trigger for documents that match all filters specified below. @@ -3921,7 +3921,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 132 - Content matching algorithm + Алгоритъм за съвпадение на съдържанието Content matching pattern @@ -3929,7 +3929,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 134 - Content matching pattern + Модел за съвпадение на съдържанието Has tags @@ -3937,7 +3937,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 143 - Has tags + Има тагове Has correspondent @@ -3945,7 +3945,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 144 - Has correspondent + Има кореспондент Has document type @@ -3953,7 +3953,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 145 - Has document type + Има тип на документ Action type @@ -3961,7 +3961,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 155 - Action type + Тип на действие Assign title @@ -3977,7 +3977,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 160 - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + Може да включи някои контейнери, вижте <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документация</a>. Assign tags @@ -4033,7 +4033,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 216 - Remove tags + Премахни тагове Remove all @@ -4065,7 +4065,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 254 - Remove all + Премахни всички Remove correspondents @@ -4073,7 +4073,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 222 - Remove correspondents + Премахни кореспонденти Remove document types @@ -4081,7 +4081,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 228 - Remove document types + Премахни типове документи Remove storage paths @@ -4105,7 +4105,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 247 - Remove owners + Премахни собственици Remove permissions @@ -4113,7 +4113,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 253 - Remove permissions + Премахване на права View permissions @@ -4121,7 +4121,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 256 - View permissions + Права за преглед Edit permissions @@ -4129,7 +4129,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 275 - Edit permissions + Редакция на права Consume Folder @@ -4169,7 +4169,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 58 - Document Added + Документът е добавен Document Updated @@ -4177,7 +4177,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 62 - Document Updated + Документът е обновен Assignment @@ -4185,7 +4185,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 69 - Assignment + Задача Removal @@ -4193,7 +4193,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 73 - Removal + Премахване Create new workflow @@ -4201,7 +4201,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 142 - Create new workflow + Създай нов работен процес Edit workflow @@ -4209,7 +4209,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 146 - Edit workflow + Редактирай работен процес All @@ -4410,7 +4410,7 @@ src/app/components/common/input/file/file.component.html 15 - Upload + Качи Show password @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Изглед @@ -4527,7 +4527,7 @@ src/app/components/common/page-header/page-header.component.html 9 - What's this? + Какво е това? Read more @@ -4535,7 +4535,7 @@ src/app/components/common/page-header/page-header.component.html 15 - Read more + Прочети повече Merge with existing permissions @@ -4575,7 +4575,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 75 - Any and all existing owner, user and group permissions will be replaced. + Всички съществуващи права за собственик, потребител и група ще бъдат заменени. My documents @@ -4739,7 +4739,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 59 - Connected social accounts + Свързани социални акаунти Set a password before disconnecting social account. @@ -4747,7 +4747,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 63 - Set a password before disconnecting social account. + Задайте парола, преди да прекъснете връзката със социалния акаунт. Disconnect @@ -4755,7 +4755,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 69 - Disconnect + Прекъсване Disconnect social account @@ -4771,7 +4771,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 81 - Warning: disconnecting social accounts cannot be undone + Предупреждение: прекъсването на връзката между социални акаунти не може да бъде отменено Connect new social account @@ -4779,7 +4779,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 86 - Connect new social account + Свържете нов социален акаунт Emails must match @@ -4827,7 +4827,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 210 - Error disconnecting social account + Грешка при прекъсване на връзката със социалния акаунт Select @@ -4971,7 +4971,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 18 - Environment + Environment Paperless-ngx Version @@ -4979,7 +4979,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 22 - Paperless-ngx Version + Paperless-ngx Version Install Type @@ -4987,7 +4987,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 24 - Install Type + Тип на инсталацията Server OS @@ -4995,7 +4995,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 26 - Server OS + Server OS Media Storage @@ -5003,7 +5003,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 28 - Media Storage + Media Storage available @@ -5011,7 +5011,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 31 - available + налично total @@ -5019,7 +5019,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 31 - total + общо Database @@ -5027,7 +5027,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 41 - Database + База данни Status @@ -5051,7 +5051,15 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 56 - Migration Status + Статус на миграцията + + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Ползва последва версия Latest Migration @@ -5059,7 +5067,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 64 - Latest Migration + Последна миграция Pending Migrations @@ -5067,7 +5075,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 66 - Pending Migrations + Чакаща миграция Tasks @@ -5075,7 +5083,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 83 - Tasks + Задачи Redis Status @@ -5083,7 +5091,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 87 - Redis Status + Redis статус Celery Status @@ -5091,7 +5099,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 96 - Celery Status + Celery статус Search Index @@ -5099,7 +5107,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 105 - Search Index + Search Index Last Updated @@ -5107,7 +5115,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 119 - Last Updated + Последно обновен Classifier @@ -5115,7 +5123,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 121 - Classifier + Класификатор Last Trained @@ -5123,7 +5131,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 139 - Last Trained + Последно трениран Copy Raw Error @@ -5139,7 +5147,7 @@ src/app/components/dashboard/dashboard.component.ts 38 - Hello , welcome to + Привет , добре дошъл в Welcome to @@ -5147,7 +5155,7 @@ src/app/components/dashboard/dashboard.component.ts 40 - Welcome to + Задравейте в Dashboard updated @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Още като това @@ -5778,7 +5786,7 @@ src/app/components/document-detail/document-detail.component.ts 348 - Document changes detected + Установени промени в документа The version of this document in your browser session appears older than the existing version. @@ -5786,7 +5794,7 @@ src/app/components/document-detail/document-detail.component.ts 349 - The version of this document in your browser session appears older than the existing version. + Версията на този документ в сесията на вашия браузър изглежда по-стара от съществуващата версия. Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. @@ -5794,7 +5802,7 @@ src/app/components/document-detail/document-detail.component.ts 350 - Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. + Записването на документа тук може да презапише други направени промени. За да възстановите съществуващата версия, отхвърлете промените или затворете документа. Ok @@ -5802,7 +5810,7 @@ src/app/components/document-detail/document-detail.component.ts 352 - Ok + Ок Error retrieving metadata @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Преглед на бележка @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Бележки @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Резултат: @@ -6916,7 +6924,7 @@ src/app/components/manage/custom-fields/custom-fields.component.html 4 - Customize the data fields that can be attached to documents. + Персонализирайте полетата с данни, които могат да бъдат прикачени към документи. Add Field @@ -7356,7 +7364,7 @@ src/app/components/manage/management-list/management-list.component.ts 204 - Associated documents will not be deleted. + Свързаните документи няма да бъдат изтрити. Error while deleting element @@ -7380,7 +7388,7 @@ src/app/components/manage/management-list/management-list.component.ts 319 - This operation will permanently delete all objects. + Тази операция ще изтрие завинаги всички обекти. Objects deleted successfully @@ -7388,7 +7396,7 @@ src/app/components/manage/management-list/management-list.component.ts 333 - Objects deleted successfully + Обектите са успешно изтрити Error deleting objects @@ -7396,7 +7404,7 @@ src/app/components/manage/management-list/management-list.component.ts 339 - Error deleting objects + Грешки при изтриване на обектите storage path @@ -7452,7 +7460,7 @@ src/app/components/manage/workflows/workflows.component.html 4 - Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow. + Използвайте работни потоци, за да персонализирате поведението на софтуера, когато събитията „задействат“ работен поток. Add Workflow @@ -7460,7 +7468,7 @@ src/app/components/manage/workflows/workflows.component.html 9 - Add Workflow + Добави работен процес Disabled @@ -7468,7 +7476,7 @@ src/app/components/manage/workflows/workflows.component.html 30 - Disabled + Деактивиран No workflows defined. @@ -7476,7 +7484,7 @@ src/app/components/manage/workflows/workflows.component.html 46 - No workflows defined. + Няма дефиниран работен процес. Saved workflow "". @@ -7484,7 +7492,7 @@ src/app/components/manage/workflows/workflows.component.ts 79 - Saved workflow "". + Запазен работен процес "". Error saving workflow. @@ -7492,7 +7500,7 @@ src/app/components/manage/workflows/workflows.component.ts 87 - Error saving workflow. + Грешка при записването на работния процес. Confirm delete workflow @@ -7500,7 +7508,7 @@ src/app/components/manage/workflows/workflows.component.ts 95 - Confirm delete workflow + Потвърдете изтриването на работния процес This operation will permanently delete this workflow. @@ -7508,7 +7516,7 @@ src/app/components/manage/workflows/workflows.component.ts 96 - This operation will permanently delete this workflow. + Тази операция ще изтрие за постоянно този работен процес. Deleted workflow @@ -7516,7 +7524,7 @@ src/app/components/manage/workflows/workflows.component.ts 105 - Deleted workflow + Изтирит работен процес Error deleting workflow. @@ -7524,7 +7532,7 @@ src/app/components/manage/workflows/workflows.component.ts 110 - Error deleting workflow. + Грешка при изтриване на работния процес. Not Found @@ -7708,7 +7716,7 @@ src/app/data/paperless-config.ts 50 - General Settings + Общи настройки OCR Settings @@ -7716,7 +7724,7 @@ src/app/data/paperless-config.ts 51 - OCR Settings + OCR настройки Output Type @@ -7724,7 +7732,7 @@ src/app/data/paperless-config.ts 75 - Output Type + Изходен тип Language @@ -7732,7 +7740,7 @@ src/app/data/paperless-config.ts 83 - Language + Език Pages @@ -7740,7 +7748,7 @@ src/app/data/paperless-config.ts 90 - Pages + Страници Mode @@ -7748,7 +7756,7 @@ src/app/data/paperless-config.ts 97 - Mode + Режим Skip Archive File @@ -7756,7 +7764,7 @@ src/app/data/paperless-config.ts 105 - Skip Archive File + Пропусни архивиране на файла Image DPI @@ -7764,7 +7772,7 @@ src/app/data/paperless-config.ts 113 - Image DPI + Изображение DPI Clean @@ -7772,7 +7780,7 @@ src/app/data/paperless-config.ts 120 - Clean + Чист Deskew @@ -7780,7 +7788,7 @@ src/app/data/paperless-config.ts 128 - Deskew + Изкривяване (Deskew) Rotate Pages @@ -7788,7 +7796,7 @@ src/app/data/paperless-config.ts 135 - Rotate Pages + Завъртане на страници Rotate Pages Threshold @@ -7796,7 +7804,7 @@ src/app/data/paperless-config.ts 142 - Rotate Pages Threshold + Праг за завъртане на страници Max Image Pixels @@ -7804,7 +7812,7 @@ src/app/data/paperless-config.ts 149 - Max Image Pixels + Максимални пиксели на изображението Color Conversion Strategy @@ -7812,7 +7820,7 @@ src/app/data/paperless-config.ts 156 - Color Conversion Strategy + Стратегия за преобразуване на цветовете OCR Arguments @@ -7820,7 +7828,7 @@ src/app/data/paperless-config.ts 164 - OCR Arguments + OCR Аргументи Application Logo @@ -7828,7 +7836,7 @@ src/app/data/paperless-config.ts 171 - Application Logo + Лого на софтуера Application Title @@ -7836,7 +7844,7 @@ src/app/data/paperless-config.ts 178 - Application Title + Име на софтуера Warning: You have unsaved changes to your document(s). @@ -8257,7 +8265,7 @@ src/app/services/settings.service.ts 136 - Japanese + Японски Luxembourgish diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 4318778c7..f01f35ef2 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Vista @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Més com aquest @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Veure notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Resultat: diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index 46bbe9e47..10f605dd2 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Zobrazení @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Podobné @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Zobrazit poznámky @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 poznámek @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Shoda: diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index e828367cf..a1f03b94d 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Vis @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Mere som dette @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score: diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 8b59d7d68..67b237951 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Anzeigen @@ -5053,6 +5053,14 @@ Migrationsstatus + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Aktuell + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Ähnliche Dokumente @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Notizen anzeigen @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notizen @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Relevanz: diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index a4315a84a..4d8b68f4a 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Προβολή @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Περισσότερο σαν αυτό @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Προβολή σημειώσεων @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Σημειώσεις @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Βαθμολογία: diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index 804f1c9e8..457372577 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Vista @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Similares @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Ver notas @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notas @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Puntuación: diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index d50f02810..9970e6d74 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Näytä @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Enemmän tällaisia @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Näytä muistiinpanot @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Muistiinpanot @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Pisteet: diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index e59fba9dd..be2a8e36e 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Vue @@ -5053,6 +5053,14 @@ État de la migration + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + À jour + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Documents liés @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Afficher les notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score : diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 8a52b9bb7..b1b4e7e60 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 צפייה @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 עוד כמו זה @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 הצגת הערות @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score: diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index f2626266e..500f61fe1 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 View @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 More like this @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score: diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index a4d642802..607b6a540 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Nézet @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Még több ilyen @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Jegyzetek megtekintése @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Megjegyzések @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Pontok: diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index e22fa1ae9..627db4f8a 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Lihat @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Lebih seperti ini @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score: diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index c7dd20ded..5305374df 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Mostra @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Altro come questo @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Visualizza note @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Note @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Rilevanza: diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index 74eb19579..11e5dfd78 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 表示 @@ -5053,6 +5053,14 @@ 移行状況 + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + 最新 + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 類似のドキュメント @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 メモを表示 @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 メモ @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 スコア: diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index d5c84c2eb..9208087ff 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 보기 @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 More like this @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 노트 보기 @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score: diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 33231e3bc..da44302cd 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Usiicht @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Ähnlech Dokumenter @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Relevanz: diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index 393e22ebe..2dbb09d4c 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 View @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 More like this @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score: diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 2611036ac..c702bd38a 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Bekijken @@ -5053,6 +5053,14 @@ Migratie status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Meer zoals dit @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Bekijk notities @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 notities @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score: diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index bd8c991ab..66b134a16 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Vis @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Mer som dette @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Vis notater @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Scoring: diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 24a030524..cfd309143 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Pokaż @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Podobne dokumenty @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Wyświetl notatki @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notatki @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Wynik: diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index bc9ae192a..611e813de 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4449,7 +4449,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Ver @@ -5054,6 +5054,14 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5254,7 +5262,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5517,7 +5525,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Mais como este @@ -6227,7 +6235,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6239,7 +6247,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6251,7 +6259,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Ver notas @@ -6259,7 +6267,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notas @@ -6267,7 +6275,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6279,7 +6287,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6291,7 +6299,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6303,7 +6311,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6315,7 +6323,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6327,7 +6335,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6343,7 +6351,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Nota: diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 5eddf644e..09da0a263 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Ver @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Mais como este @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Ver notas @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notas @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Pontuação: diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 761549371..de5900d19 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Vizualizare @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Similare @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Scor: diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 2604da956..2bffe86ec 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Представление @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Больше похожих @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Просмотреть заметки @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Заметки @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Оценка: diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index b928847ac..7eb1e3265 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Zobraziť @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Podobné ako @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Zobraziť poznámky @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Poznámky @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Skóre: diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index 5c5841268..54b5884b4 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Poglej @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Več takih @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Pokaži zapiske @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Opombe @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Rezultat: diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index c123d3a36..cd74c3c60 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Pregled @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Više ovakvih @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Pregled beleški @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Beleške @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Rezultat: diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 29855fb2a..59f02d927 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Vy @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Mer som detta @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Visa anteckningar @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Anteckningar @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Poäng: diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index 497ac06d7..bae67baeb 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 ดู @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 เอกสารที่คล้ายกัน @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 ดูหมายเหตุ @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 คะแนน: diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index b560027fd..0ac6d66e1 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Görüntüle @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Buna benzer daha @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Puan: diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index 23c0574b7..77ca79ff9 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 Переглянути @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 Більше схожих @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 Переглянути нотатки @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Нотатки @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Релевантність: diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index dcbde8cea..5ed404471 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 View @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 More like this @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score: diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 3fbed9bac..d4d21c9a5 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 查看 @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 更多类似内容 @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 查看备注 @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 备注 @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 分数: diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 7d6f41d24..820a2d093 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -2087,7 +2087,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 55 + 53 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -4448,7 +4448,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 60 + 58 View @@ -5053,6 +5053,14 @@ Migration Status + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 59 + + Up to date + Latest Migration @@ -5253,7 +5261,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 66 + 64 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -5516,7 +5524,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html - 52 + 50 More like this @@ -6226,7 +6234,7 @@ Filter by correspondent src/app/components/document-list/document-card-large/document-card-large.component.html - 21 + 20 src/app/components/document-list/document-list.component.html @@ -6238,7 +6246,7 @@ Filter by tag src/app/components/document-list/document-card-large/document-card-large.component.html - 29 + 28 src/app/components/document-list/document-list.component.html @@ -6250,7 +6258,7 @@ View notes src/app/components/document-list/document-card-large/document-card-large.component.html - 73 + 70 View notes @@ -6258,7 +6266,7 @@ Notes src/app/components/document-list/document-card-large/document-card-large.component.html - 74 + 71 Notes @@ -6266,7 +6274,7 @@ Filter by document type src/app/components/document-list/document-card-large/document-card-large.component.html - 78 + 75 src/app/components/document-list/document-list.component.html @@ -6278,7 +6286,7 @@ Filter by storage path src/app/components/document-list/document-card-large/document-card-large.component.html - 84 + 81 src/app/components/document-list/document-list.component.html @@ -6290,7 +6298,7 @@ Created: src/app/components/document-list/document-card-large/document-card-large.component.html - 96,97 + 93,94 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6302,7 +6310,7 @@ Added: src/app/components/document-list/document-card-large/document-card-large.component.html - 97,98 + 94,95 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6314,7 +6322,7 @@ Modified: src/app/components/document-list/document-card-large/document-card-large.component.html - 98,99 + 95,96 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6326,7 +6334,7 @@ Shared src/app/components/document-list/document-card-large/document-card-large.component.html - 111 + 108 src/app/components/document-list/document-card-small/document-card-small.component.html @@ -6342,7 +6350,7 @@ Score: src/app/components/document-list/document-card-large/document-card-large.component.html - 116 + 113 Score: diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po index fd9e364d1..c7921d84d 100644 --- a/src/locale/bg_BG/LC_MESSAGES/django.po +++ b/src/locale/bg_BG/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-03-04 17:00-0800\n" -"PO-Revision-Date: 2024-03-05 01:01\n" +"PO-Revision-Date: 2024-03-10 00:25\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -47,11 +47,11 @@ msgstr "Регулярен израз" #: documents/models.py:58 documents/models.py:902 msgid "Fuzzy word" -msgstr "" +msgstr "Неясна дума" #: documents/models.py:59 msgid "Automatic" -msgstr "" +msgstr "Автоматично" #: documents/models.py:62 documents/models.py:397 documents/models.py:1218 #: paperless_mail/models.py:18 paperless_mail/models.py:93 @@ -92,7 +92,7 @@ msgstr "Маркира този етикет като етикет за вход #: documents/models.py:112 msgid "tag" -msgstr "таг" +msgstr "етикет" #: documents/models.py:113 documents/models.py:185 msgid "tags" @@ -365,7 +365,7 @@ msgstr "пълнотекстова заявка" #: documents/models.py:446 msgid "more like this" -msgstr "" +msgstr "повече като този" #: documents/models.py:447 msgid "has tags in" @@ -617,11 +617,11 @@ msgstr "" #: documents/models.py:906 msgid "Document Added" -msgstr "" +msgstr "Документът е добавен" #: documents/models.py:907 msgid "Document Updated" -msgstr "" +msgstr "Документът е обновен" #: documents/models.py:910 msgid "Consume Folder" @@ -637,7 +637,7 @@ msgstr "Извличане на поща" #: documents/models.py:915 msgid "Workflow Trigger Type" -msgstr "" +msgstr "Тип на тръгъра на работния процес" #: documents/models.py:927 msgid "filter path" @@ -661,35 +661,35 @@ msgstr "филтриране на документи по това правил #: documents/models.py:971 msgid "has these tag(s)" -msgstr "" +msgstr "има този/тези етикет/и" #: documents/models.py:979 msgid "has this document type" -msgstr "" +msgstr "има този тип на документа" #: documents/models.py:987 msgid "has this correspondent" -msgstr "" +msgstr "има този кореспондент" #: documents/models.py:991 msgid "workflow trigger" -msgstr "" +msgstr "тръгър на работния процес" #: documents/models.py:992 msgid "workflow triggers" -msgstr "" +msgstr "тръгъри на работния процес" #: documents/models.py:1002 msgid "Assignment" -msgstr "" +msgstr "Задача" #: documents/models.py:1006 msgid "Removal" -msgstr "" +msgstr "Премахване" #: documents/models.py:1010 msgid "Workflow Action Type" -msgstr "" +msgstr "Тип на действието на работния процес" #: documents/models.py:1016 msgid "assign title" @@ -741,27 +741,27 @@ msgstr "присвояване на тези персонализирани по #: documents/models.py:1108 msgid "remove these tag(s)" -msgstr "" +msgstr "премахни този/тези етикект/и" #: documents/models.py:1113 msgid "remove all tags" -msgstr "" +msgstr "премахни всички етикети" #: documents/models.py:1120 msgid "remove these document type(s)" -msgstr "" +msgstr "премахни този/тези тип/ове на документ" #: documents/models.py:1125 msgid "remove all document types" -msgstr "" +msgstr "премахви всички типове на документ" #: documents/models.py:1132 msgid "remove these correspondent(s)" -msgstr "" +msgstr "премахни тези кореспонденти" #: documents/models.py:1137 msgid "remove all correspondents" -msgstr "" +msgstr "прехахни всички кореспонденти" #: documents/models.py:1144 msgid "remove these storage path(s)" @@ -773,47 +773,47 @@ msgstr "" #: documents/models.py:1156 msgid "remove these owner(s)" -msgstr "" +msgstr "премахни всички тези собственици" #: documents/models.py:1161 msgid "remove all owners" -msgstr "" +msgstr "премахни всички собственици" #: documents/models.py:1168 msgid "remove view permissions for these users" -msgstr "" +msgstr "премахни всички права за прелед на тези потребители" #: documents/models.py:1175 msgid "remove view permissions for these groups" -msgstr "" +msgstr "премахни всички права за прелед на тези групи" #: documents/models.py:1182 msgid "remove change permissions for these users" -msgstr "" +msgstr "премахни всички права за промяна на тези потребители" #: documents/models.py:1189 msgid "remove change permissions for these groups" -msgstr "" +msgstr "премахни всички права за прояна на тези групи" #: documents/models.py:1194 msgid "remove all permissions" -msgstr "" +msgstr "премахнете всички права" #: documents/models.py:1201 msgid "remove these custom fields" -msgstr "" +msgstr "премахни тези потребителски полета" #: documents/models.py:1206 msgid "remove all custom fields" -msgstr "" +msgstr "премахни всички потребителски полета" #: documents/models.py:1210 msgid "workflow action" -msgstr "" +msgstr "действие по работния процес" #: documents/models.py:1211 msgid "workflow actions" -msgstr "" +msgstr "действия по работния процес" #: documents/models.py:1220 paperless_mail/models.py:95 msgid "order" @@ -821,15 +821,15 @@ msgstr "ред" #: documents/models.py:1226 msgid "triggers" -msgstr "" +msgstr "тригъри" #: documents/models.py:1233 msgid "actions" -msgstr "" +msgstr "действия" #: documents/models.py:1236 msgid "enabled" -msgstr "" +msgstr "активирано" #: documents/serialisers.py:114 #, python-format @@ -852,13 +852,14 @@ msgstr "Засечена е невалидна променлива." #: documents/templates/account/email/base_message.txt:1 #, python-format msgid "Hello from %(site_name)s!" -msgstr "" +msgstr "Здравейте от %(site_name)s!" #: documents/templates/account/email/base_message.txt:5 #, python-format msgid "Thank you for using %(site_name)s!\n" "%(site_domain)s" -msgstr "" +msgstr "Благодари, че използвате %(site_name)s!\n" +"%(site_domain)s" #: documents/templates/account/login.html:5 msgid "Paperless-ngx sign in" @@ -871,7 +872,7 @@ msgstr "Моля, впишете се." #: documents/templates/account/login.html:12 #, python-format msgid "Don't have an account yet? Sign up" -msgstr "" +msgstr "Все още нямате профил? Регистрирайте се" #: documents/templates/account/login.html:19 #: documents/templates/account/signup.html:15 @@ -895,7 +896,7 @@ msgstr "Забравена парола?" #: documents/templates/account/login.html:45 #: documents/templates/account/signup.html:49 msgid "or sign in via" -msgstr "" +msgstr "или влезте чрез" #: documents/templates/account/password_reset.html:5 msgid "Paperless-ngx reset password request" @@ -973,21 +974,21 @@ msgstr "" #: documents/templates/account/signup.html:10 #, python-format msgid "Already have an account? Sign in" -msgstr "" +msgstr "Вече имате акаунт? Влезте" #: documents/templates/account/signup.html:16 #: documents/templates/socialaccount/signup.html:14 msgid "Email (optional)" -msgstr "" +msgstr "Имейл (опционален)" #: documents/templates/account/signup.html:18 msgid "Password (again)" -msgstr "" +msgstr "Парола (повторно)" #: documents/templates/account/signup.html:36 #: documents/templates/socialaccount/signup.html:27 msgid "Sign up" -msgstr "" +msgstr "Нов профил" #: documents/templates/index.html:61 msgid "Paperless-ngx is loading..." @@ -1012,21 +1013,21 @@ msgstr "Връзката за споделяне е изтекла." #: documents/templates/socialaccount/authentication_error.html:5 #: documents/templates/socialaccount/login.html:5 msgid "Paperless-ngx social account sign in" -msgstr "" +msgstr "Влизане посредством профил в социалните мрежи" #: documents/templates/socialaccount/authentication_error.html:10 #, python-format msgid "An error occurred while attempting to login via your social network account. Back to the login page" -msgstr "" +msgstr "Възникна грешка при опит за влизане през вашия акаунт в социалната мрежа. Обратно към страницата за вход" #: documents/templates/socialaccount/login.html:10 #, python-format msgid "You are about to connect a new third-party account from %(provider)s." -msgstr "" +msgstr "На път сте да свържете нов акаунт на трета страна от %(provider)s." #: documents/templates/socialaccount/login.html:13 msgid "Continue" -msgstr "" +msgstr "Продължи" #: documents/templates/socialaccount/signup.html:5 msgid "Paperless-ngx social account sign up" @@ -1035,26 +1036,26 @@ msgstr "" #: documents/templates/socialaccount/signup.html:10 #, python-format msgid "You are about to use your %(provider_name)s account to login." -msgstr "" +msgstr "На път сте да използвате профила си в %(provider_name)s за влизане." #: documents/templates/socialaccount/signup.html:11 msgid "As a final step, please complete the following form:" -msgstr "" +msgstr "Като последна стъпка, моля, попълнете следната форма:" #: documents/validators.py:17 #, python-brace-format msgid "Unable to parse URI {value}, missing scheme" -msgstr "" +msgstr "Не може да се анализира URI {value}, липсва схема" #: documents/validators.py:22 #, python-brace-format msgid "Unable to parse URI {value}, missing net location or path" -msgstr "" +msgstr "Не може да се анализира URI {value}, липсва мрежово местоположение или път" #: documents/validators.py:27 #, python-brace-format msgid "Unable to parse URI {value}" -msgstr "" +msgstr "Не може да се анализира URI {value}" #: paperless/apps.py:10 msgid "Paperless" @@ -1062,27 +1063,27 @@ msgstr "Paperless" #: paperless/models.py:26 msgid "pdf" -msgstr "" +msgstr "pdf" #: paperless/models.py:27 msgid "pdfa" -msgstr "" +msgstr "pdfa" #: paperless/models.py:28 msgid "pdfa-1" -msgstr "" +msgstr "pdfa-1" #: paperless/models.py:29 msgid "pdfa-2" -msgstr "" +msgstr "pdfa-2" #: paperless/models.py:30 msgid "pdfa-3" -msgstr "" +msgstr "pdfa-3" #: paperless/models.py:39 msgid "skip" -msgstr "" +msgstr "пропусни" #: paperless/models.py:40 msgid "redo" @@ -1098,7 +1099,7 @@ msgstr "" #: paperless/models.py:50 msgid "never" -msgstr "" +msgstr "никога" #: paperless/models.py:51 msgid "with_text" @@ -1106,7 +1107,7 @@ msgstr "" #: paperless/models.py:52 msgid "always" -msgstr "" +msgstr "винаги" #: paperless/models.py:60 msgid "clean" @@ -1126,7 +1127,7 @@ msgstr "" #: paperless/models.py:71 msgid "RGB" -msgstr "" +msgstr "RGB" #: paperless/models.py:72 msgid "UseDeviceIndependentColor" @@ -1134,27 +1135,27 @@ msgstr "" #: paperless/models.py:73 msgid "Gray" -msgstr "" +msgstr "Сиво" #: paperless/models.py:74 msgid "CMYK" -msgstr "" +msgstr "CMYK" #: paperless/models.py:83 msgid "Sets the output PDF type" -msgstr "" +msgstr "Задава изходния тип PDF" #: paperless/models.py:95 msgid "Do OCR from page 1 to this value" -msgstr "" +msgstr "Извърши OCR от страница 1 до тази стойност" #: paperless/models.py:101 msgid "Do OCR using these languages" -msgstr "" +msgstr "Извърши OCR разпознаване използвайки тези езици" #: paperless/models.py:108 msgid "Sets the OCR mode" -msgstr "" +msgstr "Задава режима OCR" #: paperless/models.py:116 msgid "Controls the generation of an archive file" @@ -1170,39 +1171,39 @@ msgstr "" #: paperless/models.py:138 msgid "Enables deskew" -msgstr "" +msgstr "Активира изкривяване (deskew)" #: paperless/models.py:141 msgid "Enables page rotation" -msgstr "" +msgstr "Активира завъртане на страницата" #: paperless/models.py:146 msgid "Sets the threshold for rotation of pages" -msgstr "" +msgstr "Задава прага за завъртане на страниците" #: paperless/models.py:152 msgid "Sets the maximum image size for decompression" -msgstr "" +msgstr "Задава максималния размер на изображението за декомпресия" #: paperless/models.py:158 msgid "Sets the Ghostscript color conversion strategy" -msgstr "" +msgstr "Задава стратегията за преобразуване на цветовете на Ghostscript" #: paperless/models.py:166 msgid "Adds additional user arguments for OCRMyPDF" -msgstr "" +msgstr "Добавя допълнителни потребителски аргументи за OCRMyPDF" #: paperless/models.py:171 msgid "Application title" -msgstr "" +msgstr "Наименование на софтуера" #: paperless/models.py:178 msgid "Application logo" -msgstr "" +msgstr "Лого на софтуера" #: paperless/models.py:188 msgid "paperless application settings" -msgstr "" +msgstr "настройки на софтуера" #: paperless/settings.py:664 msgid "English (US)" @@ -1270,7 +1271,7 @@ msgstr "Италиански" #: paperless/settings.py:680 msgid "Japanese" -msgstr "" +msgstr "Японски" #: paperless/settings.py:681 msgid "Luxembourgish" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index a29a73c2a..545be3ceb 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-03-04 17:00-0800\n" -"PO-Revision-Date: 2024-03-06 12:10\n" +"PO-Revision-Date: 2024-03-11 12:08\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index b754256d0..e5e11b144 100644 --- a/src/locale/fr_FR/LC_MESSAGES/django.po +++ b/src/locale/fr_FR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-03-04 17:00-0800\n" -"PO-Revision-Date: 2024-03-07 00:18\n" +"PO-Revision-Date: 2024-03-09 00:22\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po index 448e82a6e..1ee1cb9d4 100644 --- a/src/locale/he_IL/LC_MESSAGES/django.po +++ b/src/locale/he_IL/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-03-04 17:00-0800\n" -"PO-Revision-Date: 2024-03-05 01:01\n" +"PO-Revision-Date: 2024-03-09 00:22\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -51,7 +51,7 @@ msgstr "" #: documents/models.py:59 msgid "Automatic" -msgstr "" +msgstr "אוטומטי" #: documents/models.py:62 documents/models.py:397 documents/models.py:1218 #: paperless_mail/models.py:18 paperless_mail/models.py:93 @@ -621,7 +621,7 @@ msgstr "המסמך התווסף" #: documents/models.py:907 msgid "Document Updated" -msgstr "" +msgstr "המסמך עודכן" #: documents/models.py:910 msgid "Consume Folder" @@ -685,7 +685,7 @@ msgstr "" #: documents/models.py:1006 msgid "Removal" -msgstr "" +msgstr "הסרה" #: documents/models.py:1010 msgid "Workflow Action Type" diff --git a/src/locale/ja_JP/LC_MESSAGES/django.po b/src/locale/ja_JP/LC_MESSAGES/django.po index 8c1febb4c..4012bcfab 100644 --- a/src/locale/ja_JP/LC_MESSAGES/django.po +++ b/src/locale/ja_JP/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-03-04 17:00-0800\n" -"PO-Revision-Date: 2024-03-05 15:50\n" +"PO-Revision-Date: 2024-03-12 12:08\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po index c9d5b9f2f..d8b8c98dc 100644 --- a/src/locale/zh_CN/LC_MESSAGES/django.po +++ b/src/locale/zh_CN/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-03-04 17:00-0800\n" -"PO-Revision-Date: 2024-03-05 01:01\n" +"PO-Revision-Date: 2024-03-13 12:09\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -789,7 +789,7 @@ msgstr "" #: documents/models.py:1182 msgid "remove change permissions for these users" -msgstr "" +msgstr "为这些用户授予修改权限" #: documents/models.py:1189 msgid "remove change permissions for these groups"