From 31f592453e1f28ec2db202343681d5524fe6dad3 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Tue, 18 Jun 2024 21:23:34 -0700
Subject: [PATCH 1/9] 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 bf1646010..5cceb20e7 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.10.1',
+ version: '2.10.1-dev',
webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/',
From 3bb6a32ab96cbd48fdbb2e4dc5c523c088a79e8d Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Wed, 19 Jun 2024 00:44:07 -0700
Subject: [PATCH 2/9] Update bug report note
---
.github/ISSUE_TEMPLATE/bug-report.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
index 1736b5f08..6531652d0 100644
--- a/.github/ISSUE_TEMPLATE/bug-report.yml
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -9,7 +9,7 @@ body:
### ⚠️ Please remember: issues are for *bugs*
That is, something you believe affects every single user of Paperless-ngx, not just you. If you're not sure, start with one of the other options below.
- Also, note that **Paperless-ngx does not perform OCR itself**, that is handled by other tools. Problems with OCR of specific files should likely be raised 'upstream', see https://github.com/ocrmypdf/OCRmyPDF/issues or https://github.com/tesseract-ocr/tesseract/issues
+ Also, note that **Paperless-ngx does not perform OCR or archive file creation itself**, those are handled by other tools. Problems with OCR or archive versions of specific files should likely be raised 'upstream', see https://github.com/ocrmypdf/OCRmyPDF/issues or https://github.com/tesseract-ocr/tesseract/issues
- type: markdown
attributes:
value: |
From 91585a1fa69e37af84481cf79b86a7bf26627dad Mon Sep 17 00:00:00 2001
From: Trenton H <797416+stumpylog@users.noreply.github.com>
Date: Thu, 20 Jun 2024 12:49:54 -0700
Subject: [PATCH 3/9] Prefer the metadata JSON file over the version JSON file
(#7048)
---
src/documents/management/commands/document_importer.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py
index 97b73b743..3535e1476 100644
--- a/src/documents/management/commands/document_importer.py
+++ b/src/documents/management/commands/document_importer.py
@@ -166,10 +166,7 @@ class Command(CryptMixin, BaseCommand):
)
return
- if version_path.exists():
- with version_path.open() as infile:
- self.version = json.load(infile)["version"]
- elif metadata_path.exists():
+ if metadata_path.exists():
with metadata_path.open() as infile:
data = json.load(infile)
self.version = data["version"]
@@ -179,6 +176,9 @@ class Command(CryptMixin, BaseCommand):
)
elif EXPORTER_CRYPTO_SETTINGS_NAME in data:
self.load_crypt_params(data)
+ elif version_path.exists():
+ with version_path.open() as infile:
+ self.version = json.load(infile)["version"]
if self.version and self.version != version.__full_version_str__:
self.stdout.write(
From cccba47bd707c2ed7b3a2599016ada6edc5adcf8 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Fri, 21 Jun 2024 11:22:18 -0700
Subject: [PATCH 4/9] Fix: remove type attribute from object for Safari (#7056)
---
.../components/document-detail/document-detail.component.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src-ui/src/app/components/document-detail/document-detail.component.html b/src-ui/src/app/components/document-detail/document-detail.component.html
index 677596d8f..8486e1816 100644
--- a/src-ui/src/app/components/document-detail/document-detail.component.html
+++ b/src-ui/src/app/components/document-detail/document-detail.component.html
@@ -364,7 +364,7 @@
} @else {
-
+
}
}
@case (ContentRenderType.Text) {
From 0f9710dc8fcb9cbb6ca4a79ea16bb597728ad3c1 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Fri, 21 Jun 2024 11:33:01 -0700
Subject: [PATCH 5/9] Fix: index fresh document data after update archive file
(#7057)
---
src/documents/tasks.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/documents/tasks.py b/src/documents/tasks.py
index 5dd5c5e0f..f3eb258b8 100644
--- a/src/documents/tasks.py
+++ b/src/documents/tasks.py
@@ -285,6 +285,10 @@ def update_document_archive_file(document_id):
shutil.move(parser.get_archive_path(), document.archive_path)
shutil.move(thumbnail, document.thumbnail_path)
+ document.refresh_from_db()
+ logger.info(
+ f"Updating index for document {document_id} ({document.archive_checksum})",
+ )
with index.open_index_writer() as writer:
index.update_document(writer, document)
From 9d34327a6d514a84c74554a42e24f5b070455f88 Mon Sep 17 00:00:00 2001
From: Trenton H <797416+stumpylog@users.noreply.github.com>
Date: Sat, 22 Jun 2024 11:30:06 -0700
Subject: [PATCH 6/9] Resolves the casing warning in newer Docker versions
---
Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index 4d53a0cc4..bb32a9817 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -21,7 +21,7 @@ RUN set -eux \
# Comments:
# - pipenv dependencies are not left in the final image
# - pipenv can't touch the final image somehow
-FROM --platform=$BUILDPLATFORM docker.io/python:3.11-alpine as pipenv-base
+FROM --platform=$BUILDPLATFORM docker.io/python:3.11-alpine AS pipenv-base
WORKDIR /usr/src/pipenv
@@ -37,7 +37,7 @@ RUN set -eux \
# Purpose: The final image
# Comments:
# - Don't leave anything extra in here
-FROM docker.io/python:3.11-slim-bookworm as main-app
+FROM docker.io/python:3.11-slim-bookworm AS main-app
LABEL org.opencontainers.image.authors="paperless-ngx team "
LABEL org.opencontainers.image.documentation="https://docs.paperless-ngx.com/"
From 6ed5d11758fad84cdad0ab5d881b974c5c7f68b6 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sat, 22 Jun 2024 12:57:33 -0700
Subject: [PATCH 7/9] Fix: correct frontend retrieval of trash delay setting
(#7067)
---
src-ui/src/app/data/ui-settings.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src-ui/src/app/data/ui-settings.ts b/src-ui/src/app/data/ui-settings.ts
index e22d33a83..ad88b2e57 100644
--- a/src-ui/src/app/data/ui-settings.ts
+++ b/src-ui/src/app/data/ui-settings.ts
@@ -63,7 +63,7 @@ export const SETTINGS_KEYS = {
'general-settings:document-editing:remove-inbox-tags',
SEARCH_DB_ONLY: 'general-settings:search:db-only',
SEARCH_FULL_TYPE: 'general-settings:search:more-link',
- EMPTY_TRASH_DELAY: 'general-settings:trash:empty-trash-delay',
+ EMPTY_TRASH_DELAY: 'trash_delay',
}
export const SETTINGS: UiSetting[] = [
From 6defe24ae722b0aa50d9293fed4256811f0ee11b Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 23 Jun 2024 12:11:24 -0700
Subject: [PATCH 8/9] Fix: always update document modified property on bulk
edit operations (#7079)
---
src/documents/signals/handlers.py | 5 ++++-
src/documents/tests/test_file_handling.py | 20 ++++++++++++++++++--
2 files changed, 22 insertions(+), 3 deletions(-)
diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py
index 02f08ab31..21aef4cb6 100644
--- a/src/documents/signals/handlers.py
+++ b/src/documents/signals/handlers.py
@@ -418,7 +418,10 @@ def update_filename_and_move_files(sender, instance: Document, **kwargs):
move_archive = False
if not move_original and not move_archive:
- # Don't do anything if filenames did not change.
+ # Just update modified. Also, don't save() here to prevent infinite recursion.
+ Document.objects.filter(pk=instance.pk).update(
+ modified=timezone.now(),
+ )
return
if move_original:
diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py
index dd2c59f07..e13cd866d 100644
--- a/src/documents/tests/test_file_handling.py
+++ b/src/documents/tests/test_file_handling.py
@@ -573,7 +573,19 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
@override_settings(FILENAME_FORMAT="{title}")
@mock.patch("documents.signals.handlers.Document.objects.filter")
- def test_no_update_without_change(self, m):
+ @mock.patch("documents.signals.handlers.shutil.move")
+ def test_no_move_only_save(self, mock_move, mock_filter):
+ """
+ GIVEN:
+ - A document with a filename
+ - The document is saved
+ - The filename is not changed
+ WHEN:
+ - The document is saved
+ THEN:
+ - The document modified date is updated
+ - The document is not moved
+ """
with disable_auditlog():
doc = Document.objects.create(
title="document",
@@ -583,12 +595,16 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
archive_checksum="B",
mime_type="application/pdf",
)
+ original_modified = doc.modified
Path(doc.source_path).touch()
Path(doc.archive_path).touch()
doc.save()
+ doc.refresh_from_db()
- m.assert_not_called()
+ mock_filter.assert_called()
+ self.assertNotEqual(original_modified, doc.modified)
+ mock_move.assert_not_called()
class TestFileHandlingWithArchive(DirectoriesMixin, FileSystemAssertsMixin, TestCase):
From 276abc14041cc60fad0a92d4807bb5b7d3b80510 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 23 Jun 2024 21:57:48 -0700
Subject: [PATCH 9/9] New Crowdin translations by GitHub Action (#7034)
Co-authored-by: Crowdin Bot
---
src-ui/src/locale/messages.ar_AR.xlf | 44 +++++++++++++-------------
src-ui/src/locale/messages.de_DE.xlf | 6 ++--
src-ui/src/locale/messages.no_NO.xlf | 2 +-
src-ui/src/locale/messages.pl_PL.xlf | 42 ++++++++++++------------
src/locale/ar_AR/LC_MESSAGES/django.po | 8 ++---
src/locale/de_DE/LC_MESSAGES/django.po | 2 +-
src/locale/no_NO/LC_MESSAGES/django.po | 2 +-
src/locale/pl_PL/LC_MESSAGES/django.po | 2 +-
8 files changed, 54 insertions(+), 54 deletions(-)
diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf
index d2a36d37a..a901969d7 100644
--- a/src-ui/src/locale/messages.ar_AR.xlf
+++ b/src-ui/src/locale/messages.ar_AR.xlf
@@ -479,7 +479,7 @@
src/app/app.component.ts
198
- يمكن إدارة جميع العلامات والمراسلين وأنواع الوثائق ومسارات التخزين باستخدام هذه الصفحات. ويمكن أيضا إنشاؤها من تعديل عرض المستند.
+ يمكن إدارة جميع الوسوم وجهات التراسل وأنواع المستندات ومسارات التخزين باستخدام هذه الصفحات. ويمكن إنشاؤها أيضاً من تعديل عرض المستند.
Manage e-mail accounts and rules for automatically importing documents.
@@ -1067,7 +1067,7 @@
src/app/components/admin/settings/settings.component.html
187
- إزالة وسم أو وسوم البريد الوارد تلقائياً عند الحفظ
+ إزالة وسم (وسوم) صندوق الوارد تلقائياً عند الحفظ
Bulk editing
@@ -1243,7 +1243,7 @@
src/app/components/admin/settings/settings.component.html
243,245
- تنطبق الإعدادات على حساب المستخدم هذا للعناصر (قواعد البريد، إلخ) التي تم إنشاؤها عبر واجهة المستخدم
+ تطبق الإعدادات لحساب المستخدم هذا للأشياء (الوسوم وقواعد البريد، إلخ) التي تم إنشاؤها عبر واجهة المستخدم
Default Owner
@@ -2879,7 +2879,7 @@
src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html
72
- مراسلون
+ جهات التراسل
Tags
@@ -3683,7 +3683,7 @@
src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts
27
- إنشاء مراسل جديد
+ إنشاء جهة تراسل جديدة
Edit correspondent
@@ -3691,7 +3691,7 @@
src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts
31
- تعديل المراسل
+ تعديل جهة التراسل
Data type
@@ -4091,7 +4091,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html
38
- تعيين مراسل من
+ تعيين جهة تراسل من
Assign correspondent
@@ -4103,7 +4103,7 @@
src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html
163
- تعيين مراسل
+ تعيين جهة تراسل
Assign owner from rule
@@ -4227,7 +4227,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
91
- لا تعيّن مراسل
+ لا تعيّن جهة تراسل
Use mail address
@@ -4251,7 +4251,7 @@
src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts
103
- استخدم المراسل المحدد أدناه
+ استخدم جهة التراسل المحددة أدناه
Create new mail rule
@@ -4355,7 +4355,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts
28
- إنشاء علامة جديدة
+ إنشاء وسم جديد
Edit tag
@@ -4363,7 +4363,7 @@
src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts
32
- تعديل العلامة
+ تحرير الوسم
Email
@@ -5221,7 +5221,7 @@
src/app/components/common/input/tags/tags.component.html
15
- إضافة علامة
+ إضافة وسم
Remove tag
@@ -5925,7 +5925,7 @@
src/app/components/document-list/document-list.component.html
275
- تصفية حسب المراسل
+ تصفية حسب جهة التراسل
Filter by document type
@@ -6340,7 +6340,7 @@
src/app/data/document.ts
89
- مراسل
+ جهة التراسل
Document type
@@ -6904,7 +6904,7 @@
src/app/components/document-list/filter-editor/filter-editor.component.html
53
- تصفية المراسلين
+ تصفية جهات التراسل
Filter document types
@@ -7090,7 +7090,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
434
- تأكيد تعيين المراسل
+ تأكيد تعيين جهة التراسل
This operation will assign the correspondent "" to selected document(s).
@@ -7098,7 +7098,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
436
- هذه العملية ستعين المراسل"" إلى مستند (مستندات) مختارة.
+ ستقوم هذه العملية بتعيين جهة التراسل "" للمستند (المستندات) المحددة .
This operation will remove the correspondent from selected document(s).
@@ -7106,7 +7106,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
438
- هذه العملية ستزيل المراسل من مستند (مستندات) مختارة.
+ هذه العملية ستزيل جهة التراسل من المستند أو المستندات المحددة.
Confirm document type assignment
@@ -7370,7 +7370,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
16
- تبديل تصفية العلامة
+ تبديل لعامل تصفية الوسم
Toggle correspondent filter
@@ -7378,7 +7378,7 @@
src/app/components/document-list/document-card-small/document-card-small.component.html
38
- تبديل تصفية المراسل
+ تبديل لعامل تصفية جهة التراسل
Toggle document type filter
@@ -8502,7 +8502,7 @@
src/app/components/manage/tag-list/tag-list.component.ts
36
- علامة
+ الوسم
tags
diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf
index d72fcdaae..aeb681a24 100644
--- a/src-ui/src/locale/messages.de_DE.xlf
+++ b/src-ui/src/locale/messages.de_DE.xlf
@@ -519,7 +519,7 @@
src/app/app.component.ts
230
- Überprüfen Sie die Einstellungen für diverse Verbesserung der Webanwendung und ändern Sie die Einstellungen für gespeicherte Ansichten.
+ Überprüfen Sie die Einstellungen für diverse Anpassungen der Webanwendung und ändern Sie die Einstellungen für gespeicherte Ansichten.
Thank you! 🙏
@@ -2265,13 +2265,13 @@
Papierkorb
-
+
Manage trashed documents that are pending deletion.
src/app/components/admin/trash/trash.component.html
4
- Dokumente im Papierkorb verwalten, die noch nicht gelöscht wurden.
+ Dokumente im Papierkorb verwalten, die noch nicht endgültig gelöscht wurden.
Restore selected
diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf
index 2dc5eeced..7d968a8aa 100644
--- a/src-ui/src/locale/messages.no_NO.xlf
+++ b/src-ui/src/locale/messages.no_NO.xlf
@@ -2143,7 +2143,7 @@
src/app/components/admin/tasks/tasks.component.html
109
- {VAR_PLURAL, plural, =1 {En oppgave} other { totalt oppgaver}}}"/>
+ {VAR_PLURAL, plural, =1 {En oppgave} other { totalt oppgaver}}
( selected)
diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf
index 1075218d1..7a95f5fad 100644
--- a/src-ui/src/locale/messages.pl_PL.xlf
+++ b/src-ui/src/locale/messages.pl_PL.xlf
@@ -1119,7 +1119,7 @@
src/app/components/admin/settings/settings.component.html
212
- Wyszukiwania całościowe wskazuje na
+ Wyszukiwania globalne wskazuje na
Title and content search
@@ -2263,7 +2263,7 @@
src/app/components/app-frame/app-frame.component.html
274
- Trash
+ Kosz
Manage trashed documents that are pending deletion.
@@ -2271,7 +2271,7 @@
src/app/components/admin/trash/trash.component.html
4
- Manage trashed documents that are pending deletion.
+ Zarządzanie skasowanymi dokumentami, które oczekują na trwałe usunięcie.
Restore selected
@@ -2279,7 +2279,7 @@
src/app/components/admin/trash/trash.component.html
11
- Restore selected
+ Przywróć zaznaczone
Delete selected
@@ -2287,7 +2287,7 @@
src/app/components/admin/trash/trash.component.html
14
- Delete selected
+ Usuń zaznaczone
Empty trash
@@ -2295,7 +2295,7 @@
src/app/components/admin/trash/trash.component.html
17
- Empty trash
+ Opróżnij kosz
Remaining
@@ -2303,7 +2303,7 @@
src/app/components/admin/trash/trash.component.html
36
- Remaining
+ Pozostało
days
@@ -2311,7 +2311,7 @@
src/app/components/admin/trash/trash.component.html
58
- days
+ dni
Restore
@@ -2323,7 +2323,7 @@
src/app/components/admin/trash/trash.component.html
73
- Restore
+ Przywróć
{VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}}
@@ -2331,7 +2331,7 @@
src/app/components/admin/trash/trash.component.html
89
- {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}}
+ {VAR_PLURAL, plural, =1 {Jeden dokument w koszu} other { łącznie dokumentów w koszu}}
Confirm delete
@@ -2359,7 +2359,7 @@
src/app/components/admin/trash/trash.component.ts
54
- This operation will permanently delete this document.
+ Ta operacja spowoduje trwałe usunięcie tego dokumentu.
This operation cannot be undone.
@@ -2407,7 +2407,7 @@
src/app/components/admin/trash/trash.component.ts
63
- Document deleted
+ Dokument został usunięty
This operation will permanently delete the selected documents.
@@ -2415,7 +2415,7 @@
src/app/components/admin/trash/trash.component.ts
76
- This operation will permanently delete the selected documents.
+ Ta operacja spowoduje trwałe usunięcie wybranych dokumentów.
This operation will permanently delete all documents in the trash.
@@ -2423,7 +2423,7 @@
src/app/components/admin/trash/trash.component.ts
77
- This operation will permanently delete all documents in the trash.
+ Ta operacja spowoduje trwałe usunięcie wszystkich dokumentów z kosza.
Document(s) deleted
@@ -2431,7 +2431,7 @@
src/app/components/admin/trash/trash.component.ts
87
- Document(s) deleted
+ Dokument(y) zostały usunięte
Document restored
@@ -2439,7 +2439,7 @@
src/app/components/admin/trash/trash.component.ts
97
- Document restored
+ Dokument został przywrócony
Document(s) restored
@@ -2447,7 +2447,7 @@
src/app/components/admin/trash/trash.component.ts
106
- Document(s) restored
+ Dokument(y) zostały przywrócone
Users & Groups
@@ -6672,7 +6672,7 @@
src/app/components/document-detail/document-detail.component.ts
777
- Do you really want to move the document "" to the trash?
+ Czy naprawdę chcesz przenieść dokument "" do kosza?
Documents can be restored prior to permanent deletion.
@@ -6684,7 +6684,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
714
- Documents can be restored prior to permanent deletion.
+ Dokumenty można przywrócić przed ich trwałym usunięciem.
Move to trash
@@ -6696,7 +6696,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
716
- Move to trash
+ Przenieś do kosza
Error deleting document
@@ -7210,7 +7210,7 @@
src/app/components/document-list/bulk-editor/bulk-editor.component.ts
713
- Move selected document(s) to the trash?
+ Przenieść wybrane dokumenty do kosza?
This operation will permanently recreate the archive files for selected document(s).
diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po
index 577839af5..3a6e2d4d3 100644
--- a/src/locale/ar_AR/LC_MESSAGES/django.po
+++ b/src/locale/ar_AR/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-19 11:07-0700\n"
-"PO-Revision-Date: 2024-06-18 12:10\n"
+"PO-Revision-Date: 2024-06-24 00:27\n"
"Last-Translator: \n"
"Language-Team: Arabic\n"
"Language: ar_SA\n"
@@ -88,7 +88,7 @@ msgstr "علامة علبة الوارد"
#: documents/models.py:106
msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags."
-msgstr "ضع علامة على هذه السمة كعلامة علبة الوارد: سيتم وضع علامة على جميع المستندات المستهلكة حديثا مع علامات صندوق الواردات."
+msgstr "ضع علامة على هذه العلامة كعلامة علبة الوارد : سيتم وضع علامة على جميع المستندات المستهلكة حديثا مع علامات صندوق الواردات."
#: documents/models.py:112
msgid "tag"
@@ -140,7 +140,7 @@ msgstr "بيانات النص الخام من المستند. يستخدم هذ
#: documents/models.py:179
msgid "mime type"
-msgstr "mime type"
+msgstr "نوع الـ mime"
#: documents/models.py:189
msgid "checksum"
@@ -269,7 +269,7 @@ msgstr "بطاقات كبيرة"
#: documents/models.py:403
msgid "Title"
-msgstr "عنوان"
+msgstr "العنوان"
#: documents/models.py:404
msgid "Created"
diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po
index f85364be3..16cc3a5ee 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-05-19 11:07-0700\n"
-"PO-Revision-Date: 2024-06-19 00:25\n"
+"PO-Revision-Date: 2024-06-19 12:10\n"
"Last-Translator: \n"
"Language-Team: German\n"
"Language: de_DE\n"
diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po
index e1f9eda27..ae7a3070c 100644
--- a/src/locale/no_NO/LC_MESSAGES/django.po
+++ b/src/locale/no_NO/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-19 11:07-0700\n"
-"PO-Revision-Date: 2024-05-20 16:41\n"
+"PO-Revision-Date: 2024-06-19 12:10\n"
"Last-Translator: \n"
"Language-Team: Norwegian\n"
"Language: no_NO\n"
diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po
index bf45536e6..e525cdeae 100644
--- a/src/locale/pl_PL/LC_MESSAGES/django.po
+++ b/src/locale/pl_PL/LC_MESSAGES/django.po
@@ -3,7 +3,7 @@ msgstr ""
"Project-Id-Version: paperless-ngx\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-05-19 11:07-0700\n"
-"PO-Revision-Date: 2024-06-10 12:10\n"
+"PO-Revision-Date: 2024-06-20 00:25\n"
"Last-Translator: \n"
"Language-Team: Polish\n"
"Language: pl_PL\n"