From dd8514a84d217938d941121f4167386bc86ffa98 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 16 Apr 2023 19:25:29 -0700 Subject: [PATCH 01/30] Update lock.yml --- .github/workflows/lock.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index e451a150b..584f8bc3f 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -19,6 +19,8 @@ jobs: - uses: dessant/lock-threads@v4 with: issue-inactive-days: '30' + pr-inactive-days: '30' + log-output: true issue-comment: > This issue has been automatically locked since there has not been any recent activity after it was closed. From 930bac3c8b5cdb779a2e406c4ad1ad2494bf5ec1 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Apr 2023 12:43:27 -0700 Subject: [PATCH 02/30] Change lock old threads to once daily --- .github/workflows/lock.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 584f8bc3f..f90087b59 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -2,7 +2,7 @@ name: 'Lock Old Threads' on: schedule: - - cron: '0 * * * *' + - cron: '0 3 * * *' workflow_dispatch: permissions: From f5d6a9f4285b589e2ce87a4fdd9fae5fe430be80 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Apr 2023 13:27:47 -0700 Subject: [PATCH 03/30] Use stale action & merge with lock action --- .../{lock.yml => repo-maintenance.yml} | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) rename .github/workflows/{lock.yml => repo-maintenance.yml} (57%) diff --git a/.github/workflows/lock.yml b/.github/workflows/repo-maintenance.yml similarity index 57% rename from .github/workflows/lock.yml rename to .github/workflows/repo-maintenance.yml index f90087b59..ecd167b58 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/repo-maintenance.yml @@ -1,4 +1,4 @@ -name: 'Lock Old Threads' +name: 'Repository Maintenance' on: schedule: @@ -13,7 +13,23 @@ concurrency: group: lock jobs: - action: + stale: + name: 'Stale' + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + days-before-stale: 30 + days-before-close: 7 + only-labels: 'cant-reproduce' + stale-issue-label: stale + stale-pr-label: stale + stale-issue-message: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions. + lock-threads: + name: 'Lock Old Threads' runs-on: ubuntu-latest steps: - uses: dessant/lock-threads@v4 From b80c2126a3f22e7198adbebfb6938bfd1733ffba Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Apr 2023 19:42:24 -0700 Subject: [PATCH 04/30] Fix multi-select with private items --- .../common/input/select/select.component.ts | 28 ++++++++++++++++--- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/src-ui/src/app/components/common/input/select/select.component.ts b/src-ui/src/app/components/common/input/select/select.component.ts index ddf900bf6..3d81f6f49 100644 --- a/src-ui/src/app/components/common/input/select/select.component.ts +++ b/src-ui/src/app/components/common/input/select/select.component.ts @@ -30,14 +30,34 @@ export class SelectComponent extends AbstractInputComponent { @Input() set items(items) { - if (this.value && items.find((i) => i.id === this.value) === undefined) { - items.push({ - id: this.value, + this._items = items + if (items && this.value) this.checkForPrivateItems(this.value) + } + + writeValue(newValue: any): void { + if (newValue && this._items) { + this.checkForPrivateItems(newValue) + this.items = [...this._items] // we need to explicitly re-set items + } + super.writeValue(newValue) + } + + checkForPrivateItems(value: any) { + if (Array.isArray(value) && value.length > 0) { + value.forEach((id) => this.checkForPrivateItem(id)) + } else { + this.checkForPrivateItem(value) + } + } + + checkForPrivateItem(id) { + if (this._items.find((i) => i.id === id) === undefined) { + this._items.push({ + id: id, name: $localize`Private`, private: true, }) } - this._items = items } get items(): any[] { From 7321ea1603ce0ae670f65e96e96859d84b0158c6 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Apr 2023 19:53:41 -0700 Subject: [PATCH 05/30] Update messages.xlf --- src-ui/messages.xlf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 3f283c760..b0d159d92 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -2070,7 +2070,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html From edf4f98d41574192c4ab9fb45c8908647296b2a8 Mon Sep 17 00:00:00 2001 From: "Paperless-ngx Bot [bot]" <99855517+paperlessngx-bot@users.noreply.github.com> Date: Mon, 17 Apr 2023 19:58:58 -0700 Subject: [PATCH 06/30] New Crowdin updates (#3015) * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Russian) [ci skip] * New translations messages.xlf (Romanian) [ci skip] * New translations messages.xlf (Spanish) [ci skip] * New translations messages.xlf (Belarusian) [ci skip] * New translations messages.xlf (Czech) [ci skip] * New translations messages.xlf (Danish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Hebrew) [ci skip] * New translations messages.xlf (Italian) [ci skip] * New translations messages.xlf (Dutch) [ci skip] * New translations messages.xlf (Norwegian) [ci skip] * New translations messages.xlf (Polish) [ci skip] * New translations messages.xlf (Portuguese) [ci skip] * New translations messages.xlf (Slovenian) [ci skip] * New translations messages.xlf (Swedish) [ci skip] * New translations messages.xlf (Turkish) [ci skip] * New translations messages.xlf (Chinese Simplified) [ci skip] * New translations messages.xlf (Portuguese, Brazilian) [ci skip] * New translations messages.xlf (Croatian) [ci skip] * New translations messages.xlf (Luxembourgish) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations django.po (Spanish) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Russian) [ci skip] * New translations messages.xlf (Romanian) [ci skip] * New translations messages.xlf (Spanish) [ci skip] * New translations messages.xlf (Belarusian) [ci skip] * New translations messages.xlf (Czech) [ci skip] * New translations messages.xlf (Danish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Hebrew) [ci skip] * New translations messages.xlf (Italian) [ci skip] * New translations messages.xlf (Dutch) [ci skip] * New translations messages.xlf (Norwegian) [ci skip] * New translations messages.xlf (Polish) [ci skip] * New translations messages.xlf (Portuguese) [ci skip] * New translations messages.xlf (Slovenian) [ci skip] * New translations messages.xlf (Swedish) [ci skip] * New translations messages.xlf (Turkish) [ci skip] * New translations messages.xlf (Chinese Simplified) [ci skip] * New translations messages.xlf (Portuguese, Brazilian) [ci skip] * New translations messages.xlf (Croatian) [ci skip] * New translations messages.xlf (Luxembourgish) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations django.po (Spanish) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Russian) [ci skip] * New translations messages.xlf (Romanian) [ci skip] * New translations messages.xlf (Spanish) [ci skip] * New translations messages.xlf (Belarusian) [ci skip] * New translations messages.xlf (Czech) [ci skip] * New translations messages.xlf (Danish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Hebrew) [ci skip] * New translations messages.xlf (Italian) [ci skip] * New translations messages.xlf (Dutch) [ci skip] * New translations messages.xlf (Norwegian) [ci skip] * New translations messages.xlf (Polish) [ci skip] * New translations messages.xlf (Portuguese) [ci skip] * New translations messages.xlf (Slovenian) [ci skip] * New translations messages.xlf (Swedish) [ci skip] * New translations messages.xlf (Turkish) [ci skip] * New translations messages.xlf (Chinese Simplified) [ci skip] * New translations messages.xlf (Portuguese, Brazilian) [ci skip] * New translations messages.xlf (Croatian) [ci skip] * New translations messages.xlf (Luxembourgish) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations django.po (German) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations django.po (Czech) [ci skip] * New translations django.po (Indonesian) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] * New translations django.po (Indonesian) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations django.po (Polish) [ci skip] * New translations django.po (Polish) [ci skip] * New translations django.po (Indonesian) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations django.po (French) [ci skip] * New translations django.po (Indonesian) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Russian) [ci skip] * New translations messages.xlf (Romanian) [ci skip] * New translations messages.xlf (Spanish) [ci skip] * New translations messages.xlf (Belarusian) [ci skip] * New translations messages.xlf (Czech) [ci skip] * New translations messages.xlf (Danish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Hebrew) [ci skip] * New translations messages.xlf (Italian) [ci skip] * New translations messages.xlf (Dutch) [ci skip] * New translations messages.xlf (Norwegian) [ci skip] * New translations messages.xlf (Polish) [ci skip] * New translations messages.xlf (Portuguese) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (Slovenian) [ci skip] * New translations messages.xlf (Swedish) [ci skip] * New translations messages.xlf (Turkish) [ci skip] * New translations messages.xlf (Chinese Simplified) [ci skip] * New translations messages.xlf (Portuguese, Brazilian) [ci skip] * New translations messages.xlf (Croatian) [ci skip] * New translations messages.xlf (Luxembourgish) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] --- src-ui/src/locale/messages.ar_AR.xlf | 74 +- src-ui/src/locale/messages.be_BY.xlf | 72 +- src-ui/src/locale/messages.ca_ES.xlf | 5886 ++++++++++++++++++++++++ src-ui/src/locale/messages.cs_CZ.xlf | 74 +- src-ui/src/locale/messages.da_DK.xlf | 74 +- src-ui/src/locale/messages.de_DE.xlf | 148 +- src-ui/src/locale/messages.es_ES.xlf | 110 +- src-ui/src/locale/messages.fi_FI.xlf | 150 +- src-ui/src/locale/messages.fr_FR.xlf | 154 +- src-ui/src/locale/messages.he_IL.xlf | 72 +- src-ui/src/locale/messages.hr_HR.xlf | 72 +- src-ui/src/locale/messages.id_ID.xlf | 5886 ++++++++++++++++++++++++ src-ui/src/locale/messages.it_IT.xlf | 74 +- src-ui/src/locale/messages.lb_LU.xlf | 74 +- src-ui/src/locale/messages.nl_NL.xlf | 74 +- src-ui/src/locale/messages.no_NO.xlf | 72 +- src-ui/src/locale/messages.pl_PL.xlf | 74 +- src-ui/src/locale/messages.pt_BR.xlf | 74 +- src-ui/src/locale/messages.pt_PT.xlf | 74 +- src-ui/src/locale/messages.ro_RO.xlf | 74 +- src-ui/src/locale/messages.ru_RU.xlf | 74 +- src-ui/src/locale/messages.sl_SI.xlf | 72 +- src-ui/src/locale/messages.sr_CS.xlf | 160 +- src-ui/src/locale/messages.sv_SE.xlf | 74 +- src-ui/src/locale/messages.tr_TR.xlf | 72 +- src-ui/src/locale/messages.zh_CN.xlf | 72 +- src/locale/ca_ES/LC_MESSAGES/django.po | 914 ++++ src/locale/cs_CZ/LC_MESSAGES/django.po | 24 +- src/locale/de_DE/LC_MESSAGES/django.po | 12 +- src/locale/es_ES/LC_MESSAGES/django.po | 56 +- src/locale/fr_FR/LC_MESSAGES/django.po | 38 +- src/locale/id_ID/LC_MESSAGES/django.po | 914 ++++ src/locale/pl_PL/LC_MESSAGES/django.po | 30 +- 33 files changed, 14881 insertions(+), 993 deletions(-) create mode 100644 src-ui/src/locale/messages.ca_ES.xlf create mode 100644 src-ui/src/locale/messages.id_ID.xlf create mode 100644 src/locale/ca_ES/LC_MESSAGES/django.po create mode 100644 src/locale/id_ID/LC_MESSAGES/django.po diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 2a07b2721..3672f3047 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 تظهر قائمة المستندات جميع مستنداتك وتسمح بالتصفية والتحرير بالجملة. وهناك ثلاث أنماط مختلفة للعرض: القائمة والبطاقات الصغيرة والبطاقات الكبيرة، وفي الشريط الجانبي قائمة بالمستندات المفتوحة حاليا للتحرير. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 أدوات التصفية تسمح لك بالعثور بسرعة على المستندات باستخدام مختلف عمليات البحث والتواريخ والعلامات وما إلى ذلك. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 يمكن حفظ أي مزيج من التصفيات مثل "عرض" يمكنك عرضه بعد ذلك على لوحة التحكم / أو الشريط الجانبي. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 يمكن إدارة جميع العلامات والمراسلين وأنواع الوثائق ومسارات التخزين باستخدام هذه الصفحات. ويمكن أيضا إنشاؤها من تعديل عرض المستند. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 ملف المهام يظهر لك المستندات المستهلكة، أو تنتظر أن تكون، أو يكون أخفق في أثناء العملية. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 التحقق من إعدادات التعديلات المختلفة على تطبيق الويب، أو تبديل إعدادات العروض المحفوظة أو إعداد التحقق من البريد الإلكتروني. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 شكراً لك! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 هناك <em>أطنان</em> المزيد من الميزات والمعلومات التي لم نغطيها هنا، ولكن يجب يكون هذا كافيا لك للبداية. يرجى مراجعة المستندات أو زيارة المشروع على GitHub لمعرفة المزيد أو للإبلاغ عن المشكلات. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 أخيرا، بالنيابة عن كل مساهم في هذا المشروع المدعوم من المجتمع، شكرا لك على استخدام Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 بَدْء التحميل... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ حفظ & التالي + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 خطأ في استرجاع البيانات الوصفية @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 خطأ في استرجاع الاقتراحات @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 خطأ أثناء حفظ المستند @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 هل تريد حقاً حذف المستند " @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 ستحذف ملفات هذا المستند بشكل دائم. لا يمكن التراجع عن هذه العملية. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 حذف مستند - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - حدث خطأ أثناء حذف الوثيقة: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 هذه العملية ستعيد بشكل دائم OCR لهذا المستند. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 إعادة تشغيل OCR ستبدأ في الخلفية. إغلاق وإعادة فتح أو إعادة تحميل هذا المستند بعد اكتمال العملية لمشاهدة محتوى جديد. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 خطأ في تنفيذ العملية: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 لا تملك صلاحيّات تنفيذ ذلك diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 9a93f0a68..42aa069ea 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 Спіс дакументаў паказвае ўсе вашы дакументы і дазваляе фільтраваць, а таксама масава рэдагаваць. Ёсць тры розныя стылі прагляду: спіс, маленькія карты і вялікія карты. Спіс дакументаў, адкрытых для рэдагавання, паказаны на бакавой панэлі. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Інструменты фільтрацыі дазваляюць хутка знаходзіць дакументы па розных пошуках, датах, тэгах і г.д. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Любую камбінацыю фільтраў можна захаваць у выглядзе 'прагляда', які потым можа адлюстроўвацца на прыборнай панэлі і/або бакавой панэлі. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 З дапамогай гэтых старонак можна кіраваць тэгамі, карэспандэнтамі, тыпамі дакументаў і шляхамі захоўвання. Іх таксама можна стварыць з прагляду рэдагавання дакумента. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Файлавыя задачы паказваюць вам дакументы, якія былі спажыты, чакаюць або пацярпелі збой падчас працэсу. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Дзякуй! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 Ёсць <em>тоны</em> дадатковыя магчымасці і інфармацыя, якую мы тут не разглядалі, але гэта дапаможа вам пачаць. Праверце дакументацыю або наведайце праект на GitHub, каб даведацца больш або паведаміць аб праблемах. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Нарэшце, ад імя кожнага ўдзельніка гэтага праекта, які падтрымліваецца супольнасцю, дзякуй за выкарыстанне Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Пачатак загрузкі... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Захаваць & наступны + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Вы сапраўды хочаце выдаліць дакумент ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Файлы для гэтага дакумента будуць выдалены назаўсёды. Гэтую аперацыю нельга адмяніць. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Выдаліць дакумент - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Памылка выдалення дакумента: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Гэтая аперацыя назаўсёды паўторыць OCR для гэтага дакумента. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Памылка выканання аперацыі: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf new file mode 100644 index 000000000..39ae2770f --- /dev/null +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -0,0 +1,5886 @@ + + + + + + Close + + node_modules/src/ngb-config.ts + 13 + + Close + + + HH + + node_modules/src/ngb-config.ts + 13 + + HH + + + Close + + node_modules/src/ngb-config.ts + 13 + + Close + + + «« + + node_modules/src/ngb-config.ts + 13 + + «« + + + Select month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + Select month + + + Previous month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + Previous month + + + + + + + node_modules/src/ngb-config.ts + 13 + + + + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader + Slide of + + + Hours + + node_modules/src/ngb-config.ts + 13 + + Hours + + + « + + node_modules/src/ngb-config.ts + 13 + + « + + + Previous + + node_modules/src/ngb-config.ts + 13 + + Previous + + + MM + + node_modules/src/ngb-config.ts + 13 + + MM + + + » + + node_modules/src/ngb-config.ts + 13 + + » + + + Select year + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + Select year + + + Next month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + Next month + + + Next + + node_modules/src/ngb-config.ts + 13 + + Next + + + Minutes + + node_modules/src/ngb-config.ts + 13 + + Minutes + + + »» + + node_modules/src/ngb-config.ts + 13 + + »» + + + Increment hours + + node_modules/src/ngb-config.ts + 13 + + Increment hours + + + First + + node_modules/src/ngb-config.ts + 13 + + First + + + Previous + + node_modules/src/ngb-config.ts + 13 + + Previous + + + Decrement hours + + node_modules/src/ngb-config.ts + 13 + + Decrement hours + + + Next + + node_modules/src/ngb-config.ts + 13 + + Next + + + Increment minutes + + node_modules/src/ngb-config.ts + 13 + + Increment minutes + + + Last + + node_modules/src/ngb-config.ts + 13 + + Last + + + Decrement minutes + + node_modules/src/ngb-config.ts + 13 + + Decrement minutes + + + SS + + node_modules/src/ngb-config.ts + 13 + + SS + + + Seconds + + node_modules/src/ngb-config.ts + 13 + + Seconds + + + Increment seconds + + node_modules/src/ngb-config.ts + 13 + + Increment seconds + + + Decrement seconds + + node_modules/src/ngb-config.ts + 13 + + Decrement seconds + + + + + + + node_modules/src/ngb-config.ts + 13 + + + + + + + + node_modules/src/ngb-config.ts + 13 + + + + Drop files to begin upload + + src/app/app.component.html + 7 + + Drop files to begin upload + + + Document added + + src/app/app.component.ts + 90 + + + src/app/app.component.ts + 100 + + Document added + + + Document was added to paperless. + + src/app/app.component.ts + 92 + + + src/app/app.component.ts + 102 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 93 + + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 46 + + Open document + + + Could not add : + + src/app/app.component.ts + 116 + + Could not add : + + + New document detected + + src/app/app.component.ts + 131 + + New document detected + + + Document is being processed by paperless. + + src/app/app.component.ts + 133 + + Document is being processed by paperless. + + + Prev + + src/app/app.component.ts + 138 + + Prev + + + Next + + src/app/app.component.ts + 139 + + + src/app/components/document-detail/document-detail.component.html + 55 + + Next + + + End + + src/app/app.component.ts + 140 + + End + + + The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. + + src/app/app.component.ts + 145 + + The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. + + + Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + + src/app/app.component.ts + 155 + + Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + + + The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. + + src/app/app.component.ts + 165 + + The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. + + + The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. + + src/app/app.component.ts + 178 + + The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. + + + Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. + + src/app/app.component.ts + 189 + + Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. + + + Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + + src/app/app.component.ts + 199 + + Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + + + File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + + src/app/app.component.ts + 209 + + File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + + + Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. + + src/app/app.component.ts + 219 + + Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. + + + Thank you! 🙏 + + src/app/app.component.ts + 229 + + Thank you! 🙏 + + + There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + + src/app/app.component.ts + 231 + + There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + + + Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + src/app/app.component.ts + 233 + + Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + + Initiating upload... + + src/app/app.component.ts + 288 + + Initiating upload... + + + Paperless-ngx + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ngx + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 18 + + Search documents + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 39 + + Logged in as + + + Settings + + src/app/components/app-frame/app-frame.component.html + 45 + + + src/app/components/app-frame/app-frame.component.html + 174 + + + src/app/components/app-frame/app-frame.component.html + 177 + + + src/app/components/manage/settings/settings.component.html + 1 + + + src/app/components/manage/settings/settings.component.html + 192 + + Settings + + + Logout + + src/app/components/app-frame/app-frame.component.html + 50 + + Logout + + + Dashboard + + src/app/components/app-frame/app-frame.component.html + 69 + + + src/app/components/app-frame/app-frame.component.html + 72 + + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Documents + + src/app/components/app-frame/app-frame.component.html + 76 + + + src/app/components/app-frame/app-frame.component.html + 79 + + + src/app/components/document-list/document-list.component.ts + 97 + + + src/app/components/manage/management-list/management-list.component.html + 54 + + + src/app/components/manage/management-list/management-list.component.html + 54 + + + src/app/components/manage/management-list/management-list.component.html + 54 + + + src/app/components/manage/management-list/management-list.component.html + 54 + + Documents + + + Saved views + + src/app/components/app-frame/app-frame.component.html + 85 + + + src/app/components/manage/settings/settings.component.html + 189 + + Saved views + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 101 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 117 + + + src/app/components/app-frame/app-frame.component.html + 120 + + Close all + + + Manage + + src/app/components/app-frame/app-frame.component.html + 127 + + Manage + + + Correspondents + + src/app/components/app-frame/app-frame.component.html + 131 + + + src/app/components/app-frame/app-frame.component.html + 134 + + Correspondents + + + Tags + + src/app/components/app-frame/app-frame.component.html + 138 + + + src/app/components/app-frame/app-frame.component.html + 141 + + + src/app/components/common/input/tags/tags.component.html + 2 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 28 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 27 + + Tags + + + Document types + + src/app/components/app-frame/app-frame.component.html + 145 + + + src/app/components/app-frame/app-frame.component.html + 148 + + Document types + + + Storage paths + + src/app/components/app-frame/app-frame.component.html + 152 + + + src/app/components/app-frame/app-frame.component.html + 155 + + Storage paths + + + File Tasks + + src/app/components/app-frame/app-frame.component.html + 159 + + + src/app/components/manage/tasks/tasks.component.html + 1 + + File Tasks + + + File Tasks + + src/app/components/app-frame/app-frame.component.html + 163 + + File Tasks + + + Logs + + src/app/components/app-frame/app-frame.component.html + 167 + + + src/app/components/app-frame/app-frame.component.html + 170 + + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Info + + src/app/components/app-frame/app-frame.component.html + 183 + + + src/app/components/manage/tasks/tasks.component.html + 43 + + Info + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 187 + + + src/app/components/app-frame/app-frame.component.html + 190 + + Documentation + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 195 + + + src/app/components/app-frame/app-frame.component.html + 198 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 200 + + + src/app/components/app-frame/app-frame.component.html + 204 + + Suggest an idea + + + is available. + + src/app/components/app-frame/app-frame.component.html + 213 + + is available. + + + Click to view. + + src/app/components/app-frame/app-frame.component.html + 213 + + Click to view. + + + Paperless-ngx can automatically check for updates + + src/app/components/app-frame/app-frame.component.html + 217 + + Paperless-ngx can automatically check for updates + + + How does this work? + + src/app/components/app-frame/app-frame.component.html + 224,226 + + How does this work? + + + Update available + + src/app/components/app-frame/app-frame.component.html + 235 + + Update available + + + An error occurred while saving settings. + + src/app/components/app-frame/app-frame.component.ts + 89 + + + src/app/components/manage/settings/settings.component.ts + 593 + + An error occurred while saving settings. + + + An error occurred while saving update checking settings. + + src/app/components/app-frame/app-frame.component.ts + 222 + + An error occurred while saving update checking settings. + + + Clear + + src/app/components/common/clearable-badge/clearable-badge.component.html + 1 + + + src/app/components/common/date-dropdown/date-dropdown.component.html + 24 + + + src/app/components/common/date-dropdown/date-dropdown.component.html + 47 + + Clear + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 20 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 32 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 21 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 324 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 364 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 402 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 440 + + Confirm + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 19 + + After + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 42 + + Before + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 43 + + Last 7 days + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 47 + + Last month + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 51 + + Last 3 months + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 55 + + Last year + + + Name + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 9 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 9 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 8 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 + + + src/app/components/manage/management-list/management-list.component.html + 9 + + + src/app/components/manage/management-list/management-list.component.html + 9 + + + src/app/components/manage/management-list/management-list.component.html + 9 + + + src/app/components/manage/management-list/management-list.component.html + 9 + + + src/app/components/manage/management-list/management-list.component.html + 19 + + + src/app/components/manage/management-list/management-list.component.html + 19 + + + src/app/components/manage/management-list/management-list.component.html + 19 + + + src/app/components/manage/management-list/management-list.component.html + 19 + + + src/app/components/manage/settings/settings.component.html + 204 + + + src/app/components/manage/settings/settings.component.html + 257 + + + src/app/components/manage/settings/settings.component.html + 294 + + + src/app/components/manage/settings/settings.component.html + 345 + + + src/app/components/manage/settings/settings.component.html + 379 + + + src/app/components/manage/tasks/tasks.component.html + 40 + + Name + + + Matching algorithm + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Matching algorithm + + + Matching pattern + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 14 + + Matching pattern + + + Case insensitive + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 15 + + Case insensitive + + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 20 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 22 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 34 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 39 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 21 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 23 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 20 + + + src/app/components/common/select-dialog/select-dialog.component.html + 12 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 6 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 18 + + Cancel + + + Save + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 21 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 23 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 17 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 40 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 22 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/document-detail/document-detail.component.html + 196 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 19 + + + src/app/components/manage/settings/settings.component.html + 415 + + Save + + + Create new correspondent + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Create new correspondent + + + Edit correspondent + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 29 + + Edit correspondent + + + Create new document type + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Create new document type + + + Edit document type + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts + 29 + + Edit document type + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 71 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 75 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 79 + + Could not save element: + + + Permissions + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 30 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 2 + + + src/app/components/document-detail/document-detail.component.html + 182 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 81 + + Permissions + + + Create new user group + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts + 24 + + Create new user group + + + Edit user group + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts + 28 + + Edit user group + + + IMAP Server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 11 + + IMAP Server + + + IMAP Port + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 12 + + IMAP Port + + + IMAP Security + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 13 + + IMAP Security + + + Username + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 10 + + + src/app/components/manage/settings/settings.component.html + 344 + + Username + + + Password + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 17 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 12 + + Password + + + Password is token + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 18 + + Password is token + + + Check if the password above is a token used for authentication + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 18 + + Check if the password above is a token used for authentication + + + Character Set + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 19 + + Character Set + + + Loading... + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 30 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 18 + + + src/app/components/dashboard/dashboard.component.html + 26 + + + src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html + 7 + + + src/app/components/document-list/document-list.component.html + 95 + + + src/app/components/manage/settings/settings.component.html + 230 + + + src/app/components/manage/settings/settings.component.html + 320 + + + src/app/components/manage/settings/settings.component.html + 406 + + + src/app/components/manage/tasks/tasks.component.html + 19 + + + src/app/components/manage/tasks/tasks.component.html + 27 + + Loading... + + + Test + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 32 + + Test + + + No encryption + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 13 + + No encryption + + + SSL + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 14 + + SSL + + + STARTTLS + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 15 + + STARTTLS + + + Create new mail account + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 39 + + Create new mail account + + + Edit mail account + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 43 + + Edit mail account + + + Successfully connected to the mail server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 88 + + Successfully connected to the mail server + + + Unable to connect to the mail server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 89 + + Unable to connect to the mail server + + + Account + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 11 + + + src/app/components/manage/settings/settings.component.html + 295 + + Account + + + Folder + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 12 + + Folder + + + Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 12 + + Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + + + Maximum age (days) + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 13 + + Maximum age (days) + + + Attachment type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 14 + + Attachment type + + + Consumption scope + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 15 + + Consumption scope + + + See docs for .eml processing requirements + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 15 + + See docs for .eml processing requirements + + + Rule order + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 16 + + Rule order + + + Paperless will only process mails that match all of the filters specified below. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 19 + + Paperless will only process mails that match all of the filters specified below. + + + Filter from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 20 + + Filter from + + + Filter to + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 21 + + Filter to + + + Filter subject + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 22 + + Filter subject + + + Filter body + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 23 + + Filter body + + + Filter attachment filename + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 24 + + Filter attachment filename + + + Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 24 + + Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Action + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 27 + + Action + + + Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 27 + + Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. + + + Action parameter + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 28 + + Action parameter + + + Assign title from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 29 + + Assign title from + + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 31 + + Assign document type + + + Assign correspondent from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 32 + + Assign correspondent from + + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 33 + + Assign correspondent + + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/services/toast.service.ts + 35 + + Error + + + Only process attachments + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 26 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 37 + + Only process attachments + + + Process all files, including 'inline' attachments + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 30 + + Process all files, including 'inline' attachments + + + Process message as .eml + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 41 + + Process message as .eml + + + Process message as .eml and attachments separately + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 45 + + Process message as .eml and attachments separately + + + Delete + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 52 + + + src/app/components/common/permissions-select/permissions-select.component.html + 9 + + + src/app/components/document-detail/document-detail.component.html + 11 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 141 + + + src/app/components/manage/management-list/management-list.component.html + 46 + + + src/app/components/manage/management-list/management-list.component.html + 46 + + + src/app/components/manage/management-list/management-list.component.html + 46 + + + src/app/components/manage/management-list/management-list.component.html + 46 + + + src/app/components/manage/management-list/management-list.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.ts + 213 + + + src/app/components/manage/settings/settings.component.html + 222 + + + src/app/components/manage/settings/settings.component.html + 270 + + + src/app/components/manage/settings/settings.component.html + 307 + + + src/app/components/manage/settings/settings.component.html + 359 + + + src/app/components/manage/settings/settings.component.html + 394 + + Delete + + + Move to specified folder + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 56 + + Move to specified folder + + + Mark as read, don't process read mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 60 + + Mark as read, don't process read mails + + + Flag the mail, don't process flagged mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 64 + + Flag the mail, don't process flagged mails + + + Tag the mail with specified tag, don't process tagged mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 68 + + Tag the mail with specified tag, don't process tagged mails + + + Use subject as title + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 75 + + Use subject as title + + + Use attachment filename as title + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 79 + + Use attachment filename as title + + + Do not assign a correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 86 + + Do not assign a correspondent + + + Use mail address + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 90 + + Use mail address + + + Use name (or mail address if not available) + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 94 + + Use name (or mail address if not available) + + + Use correspondent selected below + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 98 + + Use correspondent selected below + + + Create new mail rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 139 + + Create new mail rule + + + Edit mail rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 143 + + Edit mail rule + + + Path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 10 + + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 42 + + Path + + + e.g. + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 26 + + e.g. + + + or use slashes to add directories e.g. + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 28 + + or use slashes to add directories e.g. + + + See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 30 + + See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. + + + Create new storage path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 35 + + Create new storage path + + + Edit storage path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 39 + + Edit storage path + + + Color + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 10 + + + src/app/components/manage/tag-list/tag-list.component.ts + 42 + + Color + + + Inbox tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 12 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 12 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Create new tag + + + Edit tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts + 30 + + Edit tag + + + Email + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 11 + + Email + + + First name + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 13 + + First name + + + Last name + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 14 + + Last name + + + Active + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 19 + + Active + + + Superuser + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 23 + + Superuser + + + (Grants all permissions and can view objects) + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 23 + + (Grants all permissions and can view objects) + + + Groups + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 27 + + + src/app/components/manage/settings/settings.component.html + 346 + + + src/app/components/manage/settings/settings.component.html + 367 + + Groups + + + Create new user account + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 42 + + Create new user account + + + Edit user account + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 46 + + Edit user account + + + All + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 16 + + + src/app/components/common/permissions-select/permissions-select.component.html + 6 + + + src/app/components/common/permissions-select/permissions-select.component.html + 17 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + All + + + Any + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 18 + + Any + + + Include + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 24 + + Include + + + Exclude + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Exclude + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 40 + + Apply + + + Click again to exclude items. + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 46 + + Click again to exclude items. + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 335 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 13 + + Invalid date. + + + Suggestions: + + src/app/components/common/input/date/date.component.html + 16 + + + src/app/components/common/input/select/select.component.html + 32 + + + src/app/components/common/input/tags/tags.component.html + 43 + + Suggestions: + + + Edit Permissions + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 7 + + Edit Permissions + + + Owner: + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 19 + + Owner: + + + Objects without an owner can be viewed and edited by all users + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 25 + + Objects without an owner can be viewed and edited by all users + + + View + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 27 + + + src/app/components/common/permissions-select/permissions-select.component.html + 10 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 56 + + View + + + Users: + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 31 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 50 + + Users: + + + Groups: + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 39 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 58 + + Groups: + + + Edit + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 46 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 49 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 78 + + + src/app/components/manage/management-list/management-list.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 59 + + + src/app/components/manage/management-list/management-list.component.html + 59 + + + src/app/components/manage/management-list/management-list.component.html + 59 + + + src/app/components/manage/management-list/management-list.component.html + 59 + + + src/app/components/manage/settings/settings.component.html + 269 + + + src/app/components/manage/settings/settings.component.html + 306 + + + src/app/components/manage/settings/settings.component.html + 358 + + + src/app/components/manage/settings/settings.component.html + 393 + + Edit + + + Edit permissions also grant viewing permissions + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 64 + + Edit permissions also grant viewing permissions + + + Add item + + src/app/components/common/input/select/select.component.html + 12 + + Used for both types, correspondents, storage paths + Add item + + + Private + + src/app/components/common/input/select/select.component.ts + 57 + + + src/app/components/common/tag/tag.component.html + 7 + + + src/app/components/common/tag/tag.component.html + 8 + + Private + + + Add tag + + src/app/components/common/input/tags/tags.component.html + 12 + + Add tag + + + Set Permissions + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 26 + + Set Permissions + + + Note that permissions set here will override any existing permissions + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 43 + + Note that permissions set here will override any existing permissions + + + Type + + src/app/components/common/permissions-select/permissions-select.component.html + 5 + + Type + + + Add + + src/app/components/common/permissions-select/permissions-select.component.html + 7 + + Add + + + Change + + src/app/components/common/permissions-select/permissions-select.component.html + 8 + + Change + + + + + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + src/app/components/manage/tasks/tasks.component.html + 11 + + + + + Inherited from group + + src/app/components/common/permissions-select/permissions-select.component.ts + 62 + + Inherited from group + + + Select + + src/app/components/common/select-dialog/select-dialog.component.html + 13 + + + src/app/components/common/select-dialog/select-dialog.component.ts + 17 + + + src/app/components/document-list/document-list.component.html + 8 + + Select + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 20 + + Please select an object + + + Hello , welcome to Paperless-ngx + + src/app/components/dashboard/dashboard.component.ts + 36 + + Hello , welcome to Paperless-ngx + + + Welcome to Paperless-ngx + + src/app/components/dashboard/dashboard.component.ts + 38 + + Welcome to Paperless-ngx + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 27 + + Show all + + + Created + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 9 + + + src/app/components/document-list/document-list.component.html + 172 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 63 + + + src/app/components/manage/tasks/tasks.component.html + 41 + + + src/app/services/rest/document.service.ts + 22 + + Created + + + Title + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 10 + + + src/app/components/document-detail/document-detail.component.html + 75 + + + src/app/components/document-list/document-list.component.html + 144 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 172 + + + src/app/services/rest/document.service.ts + 20 + + Title + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Go to inbox + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Go to inbox + + + Documents in inbox + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 5 + + Documents in inbox + + + Go to documents + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 8 + + Go to documents + + + Total documents + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 9 + + Total documents + + + Total characters + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 13 + + Total characters + + + Other + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts + 55 + + Other + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Upload new documents + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Browse files + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 39 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 42 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 45 + + Added: + + + , + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 48 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 269 + + this string is used to separate processing, failed and added on the file upload widget + , + + + Paperless-ngx is running! + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 3 + + Paperless-ngx is running! + + + You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 4 + + You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + + + More detail on how to use and configure Paperless-ngx is always available in the documentation. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + More detail on how to use and configure Paperless-ngx is always available in the documentation. + + + Thanks for being a part of the Paperless-ngx community! + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Thanks for being a part of the Paperless-ngx community! + + + Start the tour + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 9 + + Start the tour + + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + + + Page + + src/app/components/document-detail/document-detail.component.html + 3 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 15 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 5,6 + + of + + + Download + + src/app/components/document-detail/document-detail.component.html + 19 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 105 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 64 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 94 + + Download + + + Download original + + src/app/components/document-detail/document-detail.component.html + 25 + + Download original + + + Redo OCR + + src/app/components/document-detail/document-detail.component.html + 34 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 92 + + Redo OCR + + + More like this + + src/app/components/document-detail/document-detail.component.html + 40 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 44 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 43 + + + src/app/guards/dirty-saved-view.guard.ts + 40 + + Close + + + Previous + + src/app/components/document-detail/document-detail.component.html + 50 + + Previous + + + Details + + src/app/components/document-detail/document-detail.component.html + 72 + + Details + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 76 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 77 + + Date created + + + Correspondent + + src/app/components/document-detail/document-detail.component.html + 79 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 40 + + + src/app/components/document-list/document-list.component.html + 137 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 36 + + + src/app/services/rest/document.service.ts + 19 + + Correspondent + + + Document type + + src/app/components/document-detail/document-detail.component.html + 81 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 51 + + + src/app/components/document-list/document-list.component.html + 158 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 44 + + + src/app/services/rest/document.service.ts + 21 + + Document type + + + Storage path + + src/app/components/document-detail/document-detail.component.html + 83 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 62 + + + src/app/components/document-list/document-list.component.html + 165 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 52 + + Storage path + + + Default + + src/app/components/document-detail/document-detail.component.html + 84 + + Default + + + Content + + src/app/components/document-detail/document-detail.component.html + 91 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 100 + + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 17 + + Metadata + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 106 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 110 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 114 + + Media filename + + + Original filename + + src/app/components/document-detail/document-detail.component.html + 118 + + Original filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 122 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 126 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 130 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 134 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 138 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 144 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 145 + + Archived document metadata + + + Preview + + src/app/components/document-detail/document-detail.component.html + 151 + + Preview + + + Enter Password + + src/app/components/document-detail/document-detail.component.html + 167 + + + src/app/components/document-detail/document-detail.component.html + 215 + + Enter Password + + + Notes + + src/app/components/document-detail/document-detail.component.html + 175,176 + + Notes + + + Discard + + src/app/components/document-detail/document-detail.component.html + 194 + + Discard + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 195 + + Save & next + + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + + + Error retrieving metadata + + src/app/components/document-detail/document-detail.component.ts + 354 + + Error retrieving metadata + + + Error retrieving suggestions + + src/app/components/document-detail/document-detail.component.ts + 374 + + Error retrieving suggestions + + + Document saved successfully. + + src/app/components/document-detail/document-detail.component.ts + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 + + Document saved successfully. + + + Error saving document + + src/app/components/document-detail/document-detail.component.ts + 497 + + + src/app/components/document-detail/document-detail.component.ts + 542 + + Error saving document + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 571 + + + src/app/components/manage/management-list/management-list.component.ts + 209 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 572 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 573 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 575 + + Delete document + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 595,597 + + Error deleting document: + + + Redo OCR confirm + + src/app/components/document-detail/document-detail.component.ts + 618 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 499 + + Redo OCR confirm + + + This operation will permanently redo OCR for this document. + + src/app/components/document-detail/document-detail.component.ts + 619 + + This operation will permanently redo OCR for this document. + + + This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 620 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 462 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 501 + + + src/app/components/manage/settings/settings.component.ts + 688 + + + src/app/components/manage/settings/settings.component.ts + 742 + + + src/app/components/manage/settings/settings.component.ts + 803 + + + src/app/components/manage/settings/settings.component.ts + 862 + + This operation cannot be undone. + + + Proceed + + src/app/components/document-detail/document-detail.component.ts + 622 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 503 + + + src/app/components/manage/settings/settings.component.ts + 690 + + + src/app/components/manage/settings/settings.component.ts + 744 + + + src/app/components/manage/settings/settings.component.ts + 805 + + + src/app/components/manage/settings/settings.component.ts + 864 + + Proceed + + + Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-detail/document-detail.component.ts + 630 + + Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + + Error executing operation: + + src/app/components/document-detail/document-detail.component.ts + 641,643 + + Error executing operation: + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Filter tags + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 29 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 41 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 37 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 52 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 45 + + Filter document types + + + Filter storage paths + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 63 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 53 + + Filter storage paths + + + Actions + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 89 + + + src/app/components/manage/management-list/management-list.component.html + 23 + + + src/app/components/manage/management-list/management-list.component.html + 23 + + + src/app/components/manage/management-list/management-list.component.html + 23 + + + src/app/components/manage/management-list/management-list.component.html + 23 + + + src/app/components/manage/settings/settings.component.html + 221 + + + src/app/components/manage/settings/settings.component.html + 259 + + + src/app/components/manage/settings/settings.component.html + 296 + + + src/app/components/manage/settings/settings.component.html + 347 + + + src/app/components/manage/settings/settings.component.html + 382 + + + src/app/components/manage/tasks/tasks.component.html + 44 + + Actions + + + Include: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 111 + + Include: + + + Archived files + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 115,117 + + Archived files + + + Original files + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 121,123 + + Original files + + + Use formatted filename + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 128,130 + + Use formatted filename + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 185,187 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 261 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 267 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 263 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 271,273 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 288 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 294 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 299,301 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 307 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 312,314 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 316,320 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 357 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 359 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 361 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 395 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 397 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 399 + + This operation will remove the document type from selected document(s). + + + Confirm storage path assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 433 + + Confirm storage path assignment + + + This operation will assign the storage path "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 435 + + This operation will assign the storage path "" to selected document(s). + + + This operation will remove the storage path from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 437 + + This operation will remove the storage path from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 460 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 461 + + This operation will permanently delete selected document(s). + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 464 + + Delete document(s) + + + This operation will permanently redo OCR for selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 500 + + This operation will permanently redo OCR for selected document(s). + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 194 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + + src/app/components/document-list/document-list.component.html + 199 + + Filter by tag + + + View notes + + src/app/components/document-list/document-card-large/document-card-large.component.html + 70 + + View notes + + + Notes + + src/app/components/document-list/document-card-large/document-card-large.component.html + 74 + + Notes + + + Filter by document type + + src/app/components/document-list/document-card-large/document-card-large.component.html + 76 + + + src/app/components/document-list/document-list.component.html + 212 + + Filter by document type + + + Filter by storage path + + src/app/components/document-list/document-card-large/document-card-large.component.html + 83 + + + src/app/components/document-list/document-list.component.html + 217 + + Filter by storage path + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 98,99 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 56,57 + + Created: + + + Added: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 99,100 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 57,58 + + Added: + + + Modified: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 100,101 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 58,59 + + Modified: + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 110 + + Score: + + + Toggle tag filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 14 + + Toggle tag filter + + + Toggle correspondent filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 32 + + Toggle correspondent filter + + + Toggle document type filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 39 + + Toggle document type filter + + + Toggle storage path filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 46 + + Toggle storage path filter + + + Select none + + src/app/components/document-list/document-list.component.html + 11 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 12 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 13 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 38 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + + src/app/components/manage/settings/settings.component.html + 199 + + Views + + + Save "" + + src/app/components/document-list/document-list.component.html + 76 + + Save "" + + + Save as... + + src/app/components/document-list/document-list.component.html + 78 + + Save as... + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 97 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 99 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 99 + + (filtered) + + + Error while loading documents + + src/app/components/document-list/document-list.component.html + 112 + + Error while loading documents + + + Sort by ASN + + src/app/components/document-list/document-list.component.html + 126 + + Sort by ASN + + + ASN + + src/app/components/document-list/document-list.component.html + 131,130 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 177 + + + src/app/services/rest/document.service.ts + 18 + + ASN + + + Sort by correspondent + + src/app/components/document-list/document-list.component.html + 133 + + Sort by correspondent + + + Sort by title + + src/app/components/document-list/document-list.component.html + 140 + + Sort by title + + + Sort by notes + + src/app/components/document-list/document-list.component.html + 147 + + Sort by notes + + + Notes + + src/app/components/document-list/document-list.component.html + 151 + + + src/app/components/manage/settings/settings.component.html + 159 + + + src/app/services/rest/document.service.ts + 25 + + Notes + + + Sort by document type + + src/app/components/document-list/document-list.component.html + 154 + + Sort by document type + + + Sort by storage path + + src/app/components/document-list/document-list.component.html + 161 + + Sort by storage path + + + Sort by created date + + src/app/components/document-list/document-list.component.html + 168 + + Sort by created date + + + Sort by added date + + src/app/components/document-list/document-list.component.html + 175 + + Sort by added date + + + Added + + src/app/components/document-list/document-list.component.html + 179 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 69 + + + src/app/services/rest/document.service.ts + 23 + + Added + + + Edit document + + src/app/components/document-list/document-list.component.html + 198 + + Edit document + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 205 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 246 + + View "" created successfully. + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 82 + + Reset filters + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 108,110 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 112 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 117,119 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 121 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 125,127 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 131 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 135 + + Title: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 138 + + ASN: + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 175 + + Title & content + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 180 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 186 + + More like + + + equals + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 205 + + equals + + + is empty + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 209 + + is empty + + + is not empty + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 213 + + is not empty + + + greater than + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 217 + + greater than + + + less than + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 221 + + less than + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show in sidebar + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 9 + + + src/app/components/manage/settings/settings.component.html + 216 + + Show in sidebar + + + Show on dashboard + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 10 + + + src/app/components/manage/settings/settings.component.html + 212 + + Show on dashboard + + + Filter rules error occurred while saving this view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 12 + + Filter rules error occurred while saving this view + + + The error returned was + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 13 + + The error returned was + + + Enter note + + src/app/components/document-notes/document-notes.component.html + 4 + + Enter note + + + Please enter a note. + + src/app/components/document-notes/document-notes.component.html + 5,7 + + Please enter a note. + + + Add note + + src/app/components/document-notes/document-notes.component.html + 11 + + Add note + + + Delete note + + src/app/components/document-notes/document-notes.component.html + 21 + + + src/app/components/document-notes/document-notes.component.html + 25 + + Delete note + + + Error saving note: + + src/app/components/document-notes/document-notes.component.ts + 65 + + Error saving note: + + + Error deleting note: + + src/app/components/document-notes/document-notes.component.ts + 81 + + Error deleting note: + + + correspondent + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 39 + + correspondent + + + correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 40 + + correspondents + + + Last used + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 45 + + Last used + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 55 + + Do you really want to delete the correspondent ""? + + + document type + + src/app/components/manage/document-type-list/document-type-list.component.ts + 36 + + document type + + + document types + + src/app/components/manage/document-type-list/document-type-list.component.ts + 37 + + document types + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 44 + + Do you really want to delete the document type ""? + + + Create + + src/app/components/manage/management-list/management-list.component.html + 2 + + + src/app/components/manage/management-list/management-list.component.html + 2 + + + src/app/components/manage/management-list/management-list.component.html + 2 + + + src/app/components/manage/management-list/management-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/management-list/management-list.component.html + 8 + + + src/app/components/manage/management-list/management-list.component.html + 8 + + + src/app/components/manage/management-list/management-list.component.html + 8 + + + src/app/components/manage/management-list/management-list.component.html + 8 + + Filter by: + + + Matching + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + Matching + + + Document count + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + Document count + + + Filter Documents + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + Filter Documents + + + {VAR_PLURAL, plural, =1 {One } other { total }} + + src/app/components/manage/management-list/management-list.component.html + 74 + + + src/app/components/manage/management-list/management-list.component.html + 74 + + + src/app/components/manage/management-list/management-list.component.html + 74 + + + src/app/components/manage/management-list/management-list.component.html + 74 + + {VAR_PLURAL, plural, =1 {One } other { total }} + + + Automatic + + src/app/components/manage/management-list/management-list.component.ts + 100 + + + src/app/data/matching-model.ts + 15 + + Automatic + + + None + + src/app/components/manage/management-list/management-list.component.ts + 102 + + + src/app/data/matching-model.ts + 45 + + None + + + Error occurred while creating : . + + src/app/components/manage/management-list/management-list.component.ts + 142 + + + src/app/components/manage/management-list/management-list.component.ts + 153,155 + + Error occurred while creating : . + + + Successfully created . + + src/app/components/manage/management-list/management-list.component.ts + 147 + + Successfully created . + + + Error occurred while saving . + + src/app/components/manage/management-list/management-list.component.ts + 174,176 + + Error occurred while saving . + + + Successfully updated . + + src/app/components/manage/management-list/management-list.component.ts + 181 + + Successfully updated . + + + Error occurred while saving : . + + src/app/components/manage/management-list/management-list.component.ts + 187,189 + + Error occurred while saving : . + + + Do you really want to delete the ? + + src/app/components/manage/management-list/management-list.component.ts + 196 + + Do you really want to delete the ? + + + Associated documents will not be deleted. + + src/app/components/manage/management-list/management-list.component.ts + 211 + + Associated documents will not be deleted. + + + Error while deleting element: + + src/app/components/manage/management-list/management-list.component.ts + 224,226 + + Error while deleting element: + + + Start tour + + src/app/components/manage/settings/settings.component.html + 2 + + Start tour + + + Open Django Admin + + src/app/components/manage/settings/settings.component.html + 4 + + Open Django Admin + + + General + + src/app/components/manage/settings/settings.component.html + 15 + + General + + + Appearance + + src/app/components/manage/settings/settings.component.html + 18 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 22 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 30 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 37 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 50 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 56,57 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 60,61 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 64,65 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 72 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 88 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 92 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 92 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Sidebar + + src/app/components/manage/settings/settings.component.html + 99 + + Sidebar + + + Use 'slim' sidebar (icons only) + + src/app/components/manage/settings/settings.component.html + 103 + + Use 'slim' sidebar (icons only) + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 110 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 113 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 114 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 115 + + Invert thumbnails in dark mode + + + Theme Color + + src/app/components/manage/settings/settings.component.html + 121 + + Theme Color + + + Reset + + src/app/components/manage/settings/settings.component.html + 130 + + Reset + + + Update checking + + src/app/components/manage/settings/settings.component.html + 135 + + Update checking + + + Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + src/app/components/manage/settings/settings.component.html + 140,142 + + Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + + No tracking data is collected by the app in any way. + + src/app/components/manage/settings/settings.component.html + 144,146 + + No tracking data is collected by the app in any way. + + + Enable update checking + + src/app/components/manage/settings/settings.component.html + 146 + + Enable update checking + + + Note that for users of third-party containers e.g. linuxserver.io this notification may be 'ahead' of the current third-party release. + + src/app/components/manage/settings/settings.component.html + 146 + + Note that for users of third-party containers e.g. linuxserver.io this notification may be 'ahead' of the current third-party release. + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 150 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 154 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 154 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 155 + + Apply on close + + + Enable notes + + src/app/components/manage/settings/settings.component.html + 163 + + Enable notes + + + Notifications + + src/app/components/manage/settings/settings.component.html + 171 + + Notifications + + + Document processing + + src/app/components/manage/settings/settings.component.html + 174 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 178 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 179 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 180 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 181 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 181 + + This will suppress all messages about document processing status on the dashboard. + + + Show warning when closing saved views with unsaved changes + + src/app/components/manage/settings/settings.component.html + 195 + + Show warning when closing saved views with unsaved changes + + + Appears on + + src/app/components/manage/settings/settings.component.html + 209 + + Appears on + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 226 + + No saved views defined. + + + Mail + + src/app/components/manage/settings/settings.component.html + 240,239 + + Mail + + + Mail accounts + + src/app/components/manage/settings/settings.component.html + 245 + + Mail accounts + + + Add Account + + src/app/components/manage/settings/settings.component.html + 250 + + Add Account + + + Server + + src/app/components/manage/settings/settings.component.html + 258 + + Server + + + No mail accounts defined. + + src/app/components/manage/settings/settings.component.html + 276 + + No mail accounts defined. + + + Mail rules + + src/app/components/manage/settings/settings.component.html + 282 + + Mail rules + + + Add Rule + + src/app/components/manage/settings/settings.component.html + 287 + + Add Rule + + + No mail rules defined. + + src/app/components/manage/settings/settings.component.html + 313 + + No mail rules defined. + + + Users & Groups + + src/app/components/manage/settings/settings.component.html + 327 + + Users & Groups + + + Users + + src/app/components/manage/settings/settings.component.html + 332 + + Users + + + Add User + + src/app/components/manage/settings/settings.component.html + 337 + + Add User + + + Add Group + + src/app/components/manage/settings/settings.component.html + 372 + + Add Group + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 475 + + Saved view "" deleted. + + + Settings saved + + src/app/components/manage/settings/settings.component.ts + 577 + + Settings saved + + + Settings were saved successfully. + + src/app/components/manage/settings/settings.component.ts + 578 + + Settings were saved successfully. + + + Settings were saved successfully. Reload is required to apply some changes. + + src/app/components/manage/settings/settings.component.ts + 582 + + Settings were saved successfully. Reload is required to apply some changes. + + + Reload now + + src/app/components/manage/settings/settings.component.ts + 583 + + Reload now + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 601 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 608 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 628,630 + + Error while storing settings on server: + + + Password has been changed, you will be logged out momentarily. + + src/app/components/manage/settings/settings.component.ts + 659 + + Password has been changed, you will be logged out momentarily. + + + Saved user "". + + src/app/components/manage/settings/settings.component.ts + 666 + + Saved user "". + + + Error saving user: . + + src/app/components/manage/settings/settings.component.ts + 676 + + Error saving user: . + + + Confirm delete user account + + src/app/components/manage/settings/settings.component.ts + 686 + + Confirm delete user account + + + This operation will permanently delete this user account. + + src/app/components/manage/settings/settings.component.ts + 687 + + This operation will permanently delete this user account. + + + Deleted user + + src/app/components/manage/settings/settings.component.ts + 696 + + Deleted user + + + Error deleting user: . + + src/app/components/manage/settings/settings.component.ts + 704 + + Error deleting user: . + + + Saved group "". + + src/app/components/manage/settings/settings.component.ts + 722 + + Saved group "". + + + Error saving group: . + + src/app/components/manage/settings/settings.component.ts + 730 + + Error saving group: . + + + Confirm delete user group + + src/app/components/manage/settings/settings.component.ts + 740 + + Confirm delete user group + + + This operation will permanently delete this user group. + + src/app/components/manage/settings/settings.component.ts + 741 + + This operation will permanently delete this user group. + + + Deleted group + + src/app/components/manage/settings/settings.component.ts + 750 + + Deleted group + + + Error deleting group: . + + src/app/components/manage/settings/settings.component.ts + 758 + + Error deleting group: . + + + Saved account "". + + src/app/components/manage/settings/settings.component.ts + 781 + + Saved account "". + + + Error saving account: . + + src/app/components/manage/settings/settings.component.ts + 791 + + Error saving account: . + + + Confirm delete mail account + + src/app/components/manage/settings/settings.component.ts + 801 + + Confirm delete mail account + + + This operation will permanently delete this mail account. + + src/app/components/manage/settings/settings.component.ts + 802 + + This operation will permanently delete this mail account. + + + Deleted mail account + + src/app/components/manage/settings/settings.component.ts + 811 + + Deleted mail account + + + Error deleting mail account: . + + src/app/components/manage/settings/settings.component.ts + 820 + + Error deleting mail account: . + + + Saved rule "". + + src/app/components/manage/settings/settings.component.ts + 839 + + Saved rule "". + + + Error saving rule: . + + src/app/components/manage/settings/settings.component.ts + 850 + + Error saving rule: . + + + Confirm delete mail rule + + src/app/components/manage/settings/settings.component.ts + 860 + + Confirm delete mail rule + + + This operation will permanently delete this mail rule. + + src/app/components/manage/settings/settings.component.ts + 861 + + This operation will permanently delete this mail rule. + + + Deleted mail rule + + src/app/components/manage/settings/settings.component.ts + 870 + + Deleted mail rule + + + Error deleting mail rule: . + + src/app/components/manage/settings/settings.component.ts + 879 + + Error deleting mail rule: . + + + storage path + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 36 + + storage path + + + storage paths + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 37 + + storage paths + + + Do you really want to delete the storage path ""? + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 52 + + Do you really want to delete the storage path ""? + + + tag + + src/app/components/manage/tag-list/tag-list.component.ts + 36 + + tag + + + tags + + src/app/components/manage/tag-list/tag-list.component.ts + 37 + + tags + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 53 + + Do you really want to delete the tag ""? + + + Clear selection + + src/app/components/manage/tasks/tasks.component.html + 6 + + Clear selection + + + Refresh + + src/app/components/manage/tasks/tasks.component.html + 20 + + Refresh + + + Results + + src/app/components/manage/tasks/tasks.component.html + 42 + + Results + + + click for full output + + src/app/components/manage/tasks/tasks.component.html + 66 + + click for full output + + + Dismiss + + src/app/components/manage/tasks/tasks.component.html + 81 + + + src/app/components/manage/tasks/tasks.component.ts + 62 + + Dismiss + + + Open Document + + src/app/components/manage/tasks/tasks.component.html + 87 + + Open Document + + + Failed  + + src/app/components/manage/tasks/tasks.component.html + 105 + + Failed  + + + Complete  + + src/app/components/manage/tasks/tasks.component.html + 111 + + Complete  + + + Started  + + src/app/components/manage/tasks/tasks.component.html + 117 + + Started  + + + Queued  + + src/app/components/manage/tasks/tasks.component.html + 123 + + Queued  + + + Dismiss selected + + src/app/components/manage/tasks/tasks.component.ts + 26 + + Dismiss selected + + + Dismiss all + + src/app/components/manage/tasks/tasks.component.ts + 27 + + + src/app/components/manage/tasks/tasks.component.ts + 60 + + Dismiss all + + + Confirm Dismiss All + + src/app/components/manage/tasks/tasks.component.ts + 58 + + Confirm Dismiss All + + + tasks? + + src/app/components/manage/tasks/tasks.component.ts + 60 + + tasks? + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 16 + + Auto: Learn matching automatically + + + Any word + + src/app/data/matching-model.ts + 20 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 21 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 25 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 26 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 30 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 31 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 35 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 36 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 40 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 41 + + Fuzzy: Document contains a word similar to this word + + + None: Disable matching + + src/app/data/matching-model.ts + 46 + + None: Disable matching + + + Warning: You have unsaved changes to your document(s). + + src/app/guards/dirty-doc.guard.ts + 17 + + Warning: You have unsaved changes to your document(s). + + + Unsaved Changes + + src/app/guards/dirty-form.guard.ts + 17 + + + src/app/guards/dirty-saved-view.guard.ts + 32 + + + src/app/services/open-documents.service.ts + 104 + + + src/app/services/open-documents.service.ts + 131 + + Unsaved Changes + + + You have unsaved changes. + + src/app/guards/dirty-form.guard.ts + 18 + + + src/app/services/open-documents.service.ts + 132 + + You have unsaved changes. + + + Are you sure you want to leave? + + src/app/guards/dirty-form.guard.ts + 19 + + Are you sure you want to leave? + + + Leave page + + src/app/guards/dirty-form.guard.ts + 21 + + Leave page + + + You have unsaved changes to the saved view + + src/app/guards/dirty-saved-view.guard.ts + 34 + + You have unsaved changes to the saved view + + + Are you sure you want to close this saved view? + + src/app/guards/dirty-saved-view.guard.ts + 38 + + Are you sure you want to close this saved view? + + + Save and close + + src/app/guards/dirty-saved-view.guard.ts + 42 + + Save and close + + + You don't have permissions to do that + + src/app/guards/permissions.guard.ts + 35 + + You don't have permissions to do that + + + (no title) + + src/app/pipes/document-title.pipe.ts + 11 + + (no title) + + + Yes + + src/app/pipes/yes-no.pipe.ts + 8 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 8 + + No + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + Document with ASN already exists. + + src/app/services/consumer-status.service.ts + 16 + + Document with ASN already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 17 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 19 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 21 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 22 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 23 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 24 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 25 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 26 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 27 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 28 + + Finished. + + + You have unsaved changes to the document + + src/app/services/open-documents.service.ts + 106 + + You have unsaved changes to the document + + + Are you sure you want to close this document? + + src/app/services/open-documents.service.ts + 110 + + Are you sure you want to close this document? + + + Close document + + src/app/services/open-documents.service.ts + 112 + + Close document + + + Are you sure you want to close all documents? + + src/app/services/open-documents.service.ts + 133 + + Are you sure you want to close all documents? + + + Close documents + + src/app/services/open-documents.service.ts + 135 + + Close documents + + + Modified + + src/app/services/rest/document.service.ts + 24 + + Modified + + + Search score + + src/app/services/rest/document.service.ts + 32 + + Score is a value returned by the full text search engine and specifies how well a result matches the given query + Search score + + + English (US) + + src/app/services/settings.service.ts + 159 + + English (US) + + + Arabic + + src/app/services/settings.service.ts + 165 + + Arabic + + + Belarusian + + src/app/services/settings.service.ts + 171 + + Belarusian + + + Czech + + src/app/services/settings.service.ts + 177 + + Czech + + + Danish + + src/app/services/settings.service.ts + 183 + + Danish + + + German + + src/app/services/settings.service.ts + 189 + + German + + + English (GB) + + src/app/services/settings.service.ts + 195 + + English (GB) + + + Spanish + + src/app/services/settings.service.ts + 201 + + Spanish + + + French + + src/app/services/settings.service.ts + 207 + + French + + + Italian + + src/app/services/settings.service.ts + 213 + + Italian + + + Luxembourgish + + src/app/services/settings.service.ts + 219 + + Luxembourgish + + + Dutch + + src/app/services/settings.service.ts + 225 + + Dutch + + + Polish + + src/app/services/settings.service.ts + 231 + + Polish + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 237 + + Portuguese (Brazil) + + + Portuguese + + src/app/services/settings.service.ts + 243 + + Portuguese + + + Romanian + + src/app/services/settings.service.ts + 249 + + Romanian + + + Russian + + src/app/services/settings.service.ts + 255 + + Russian + + + Slovenian + + src/app/services/settings.service.ts + 261 + + Slovenian + + + Serbian + + src/app/services/settings.service.ts + 267 + + Serbian + + + Swedish + + src/app/services/settings.service.ts + 273 + + Swedish + + + Turkish + + src/app/services/settings.service.ts + 279 + + Turkish + + + Chinese Simplified + + src/app/services/settings.service.ts + 285 + + Chinese Simplified + + + ISO 8601 + + src/app/services/settings.service.ts + 302 + + ISO 8601 + + + Successfully completed one-time migratration of settings to the database! + + src/app/services/settings.service.ts + 413 + + Successfully completed one-time migratration of settings to the database! + + + Unable to migrate settings to the database, please try saving manually. + + src/app/services/settings.service.ts + 414 + + Unable to migrate settings to the database, please try saving manually. + + + Information + + src/app/services/toast.service.ts + 43 + + Information + + + Connecting... + + src/app/services/upload-documents.service.ts + 33 + + Connecting... + + + Uploading... + + src/app/services/upload-documents.service.ts + 45 + + Uploading... + + + Upload complete, waiting... + + src/app/services/upload-documents.service.ts + 48 + + Upload complete, waiting... + + + HTTP error: + + src/app/services/upload-documents.service.ts + 64 + + HTTP error: + + + + diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index 2eb1ffd5b..f69a316f7 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Děkujeme! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Initiating upload... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Uložit & další + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Opravdu chcete smazat dokument ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Soubory tohoto dokumentu budou trvale smazány. Tuto operaci nelze vrátit zpět. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Smazat dokument - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Chyba při mazání dokumentu: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index baa15524e..6a0ccfb39 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Thank you! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Uploader... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Gem & næste + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Er du sikker på, at du vil slette dokument ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Filerne for dette dokument vil blive slettet permanent. Denne handling kan ikke fortrydes. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Slet dokument - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Fejl ved sletning af dokument: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index bfa0c17a5..877dd9e17 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -380,7 +380,7 @@ src/app/app.component.ts 145 - Das Dashboard kann zum Anzeigen von gespeicherten Ansichten verwendet werden, wie zum Beispiel einem 'Posteingang'. Diese Einstellungen finden Sie unter Einstellungen > Gespeicherte Ansichten, sobald Sie mindestens eine eigene Ansicht erstellt haben. + Das Dashboard kann zum Anzeigen von gespeicherten Ansichten verwendet werden, wie zum Beispiel einem ‚Posteingang‘. Diese Einstellungen finden Sie unter Einstellungen > Gespeicherte Ansichten, sobald Sie mindestens eine eigene Ansicht erstellt haben. Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. @@ -388,13 +388,13 @@ src/app/app.component.ts 155 - Ziehen Sie hier Dokumente hinein, um mit dem Hochladen zu beginnen oder kopieren Sie Dateien in den 'consume' Ordner. Sie können auch Dokumente überall auf allen anderen Seiten der Web-App ziehen. Wenn Sie dies tun, startet Paperless-ngx seine Algorithmen. + Ziehen Sie hier Dokumente hinein, um mit dem Hochladen zu beginnen oder kopieren Sie Dateien in den ‚consume‘-Ordner. Sie können auch überall Dokumente auf alle anderen Seiten der Web-App ziehen. Wenn Sie dies tun, startet Paperless-ngx seine Algorithmen. The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 Die Dokumentenliste zeigt alle Ihre Dokumente an und ermöglicht das Filtern sowie die Massenbearbeitung von mehreren Dokumenten. Es gibt drei verschiedene Ansichtsstile: Liste, kleine Karten und große Karten. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Mit den Filterwerkzeugen können Sie schnell Dokumente finden, die verschiedene Datumsbereiche, Tags und andere Suchbegriffe enthalten. @@ -410,15 +410,15 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 - Jede Kombination von Filterkriterien kann als 'Ansicht' gespeichert werden, die dann auf dem Dashboard und / oder der Seitenleiste angezeigt werden können. + Jede Kombination von Filterkriterien kann als ‚Ansicht‘ gespeichert werden, die dann auf dem Dashboard und/oder der Seitenleiste angezeigt werden können. Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Schlagwörter, Korrespondenten, Dokumententypen und Speicherpfade können über diese Seiten verwaltet werden. Sie können auch aus der Dokumentbearbeitung erstellt werden. @@ -426,15 +426,15 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 - Die Dateiaufgaben zeigen Ihnen Dokumente, die verarbeitet wurden, auf Verarbeitung warten oder während der Verarbeitung fehlgeschlagen sind. + Die ‚Dateiaufgaben‘ zeigen Ihnen Dokumente an, die verarbeitet worden sind, auf ihre Verarbeitung warten oder deren Verarbeitung fehlgeschlagen ist. Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Überprüfen Sie die Einstellungen für verschiedene Optimierungen der Web-App, ändern Sie Einstellungen für gespeicherte Ansichten oder richten Sie die E-Mail-Abfrage ein. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Vielen Dank! 🙏 @@ -450,23 +450,23 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 - Es gibt noch <em>erheblich</em> mehr Funktionen und Informationen, die nicht in der Tour abgedeckt wurden, nach der Tour sollten Sie jedoch direkt loslegen können. Schauen Sie sich die Dokumentation an oder besuchen Sie das Projekt auf GitHub um mehr zu erfahren oder Probleme zu melden. + Es gibt noch <em>erheblich</em> mehr Funktionen und Informationen, die mit der Tour nicht abgedeckt wurden. Nach der Tour sollten Sie jedoch direkt loslegen können. Schauen Sie sich die Dokumentation an oder besuchen Sie das Projekt auf GitHub, um mehr zu erfahren oder Probleme zu melden. Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 - Im Namen jedes Beitragenden zu diesem von der Gemeinschaft unterstützten Projekt, sagen wir, Danke, dass Sie Paperless-ngx benutzen! + Im Namen eines jeden Beitragenden zu diesem von der Gemeinschaft unterstützten Projekt, sagen wir Danke, dass Sie Paperless-ngx benutzen! Initiating upload... src/app/app.component.ts - 281 + 288 Beginne Upload... @@ -1281,7 +1281,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 11 - IMAP Server + IMAP-Server IMAP Port @@ -1289,7 +1289,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 12 - IMAP Port + IMAP-Port IMAP Security @@ -1297,7 +1297,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 13 - IMAP Sicherheit + IMAP-Sicherheit Username @@ -1333,7 +1333,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Password is token + Kennwort ist Token Check if the password above is a token used for authentication @@ -1341,7 +1341,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Check if the password above is a token used for authentication + Prüfen, ob das obige Kennwort als Token zur Authentifizierung verwendet wird Character Set @@ -1401,7 +1401,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 32 - Test + Testen No encryption @@ -1449,7 +1449,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 88 - Successfully connected to the mail server + Verbindung zum Mailserver hergestellt Unable to connect to the mail server @@ -1457,7 +1457,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 89 - Unable to connect to the mail server + Verbindung zum Mailserver nicht möglich Account @@ -1485,7 +1485,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 12 - Unterordner müssen durch einen Trennzeichen getrennt werden, oft durch einen Punkt ('.') oder einen Schrägstrich ('/'), aber dies variiert je nach Mail-Server. + Unterordner müssen durch ein Trennzeichen getrennt werden, oft durch einen Punkt (‚.‘) oder einen Schrägstrich (‚/‘), dies variiert jedoch je nach Mailserver. Maximum age (days) @@ -1597,7 +1597,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 27 - Die Aktion wird nur ausgeführt, wenn Dokumente über E-Mail konsumiert werden. E-Mails ohne Anhänge bleiben völlig unberührt. + Die Aktion wird nur ausgeführt, wenn Dokumente aus E-Mails verarbeitet werden. E-Mails ohne Anhänge bleiben vollkommen unberührt. Action parameter @@ -1785,7 +1785,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 64 - Als wichtig markieren, verarbeite wichtig markierte E-Mails nicht + Als wichtig markieren, verarbeite als wichtig markierte E-Mails nicht Tag the mail with specified tag, don't process tagged mails @@ -1793,7 +1793,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 68 - Markiere die Mail mit dem angegebenen Tag, verarbeite markierte E-Mails nicht + Markiere die E-Mail mit dem angegebenen Tag, verarbeite markierte E-Mails nicht Use subject as title @@ -1961,7 +1961,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 11 - Email + E-Mail First name @@ -2142,7 +2142,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 19 - Eigentümer: + Besitzer: Objects without an owner can be viewed and edited by all users @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2357,7 +2357,7 @@ src/app/components/common/permissions-select/permissions-select.component.ts 62 - Inherited from group + Von Gruppe geerbt Select @@ -2960,7 +2960,7 @@ src/app/components/document-detail/document-detail.component.html 215 - Passwort eingeben + Kennwort eingeben Notes @@ -2986,11 +2986,19 @@ Speichern & weiter + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + Fehler beim Laden von + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Fehler beim Abrufen der Metadaten @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Fehler beim Abrufen der Vorschläge @@ -3006,19 +3014,23 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 - Document saved successfully. + + src/app/components/document-detail/document-detail.component.ts + 492 + + Dokument erfolgreich gespeichert. Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Fehler beim Speichern des Dokuments @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Möchten Sie das Dokument "" wirklich löschen? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Die Dateien dieses Dokuments werden permanent gelöscht. Diese Aktion kann nicht rückgängig gemacht werden. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Dokument löschen - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Fehler beim Löschen des Dokuments: + Fehler beim Löschen des Dokuments Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Diese Aktion wird die Texterkennung für das Dokument wiederholen. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 OCR-Vorgang wird im Hintergrund neu gestartet. Schließen oder laden Sie dieses Dokument nach Abschluss der Operation neu oder öffnen Sie es erneut, um neue Inhalte anzuzeigen. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Fehler beim Ausführen der Aktion: @@ -3734,7 +3746,7 @@ src/app/components/document-list/document-list.component.html 126 - Sort by ASN + Nach ASN sortieren ASN @@ -3758,7 +3770,7 @@ src/app/components/document-list/document-list.component.html 133 - Sort by correspondent + Nach Korrespondent sortieren Sort by title @@ -3766,7 +3778,7 @@ src/app/components/document-list/document-list.component.html 140 - Sort by title + Nach Titel sortieren Sort by notes @@ -3774,7 +3786,7 @@ src/app/components/document-list/document-list.component.html 147 - Sort by notes + Nach Notizen sortieren Notes @@ -3798,7 +3810,7 @@ src/app/components/document-list/document-list.component.html 154 - Sort by document type + Nach Dokumenttyp sortieren Sort by storage path @@ -3806,7 +3818,7 @@ src/app/components/document-list/document-list.component.html 161 - Sort by storage path + Nach Speicherpfad sortieren Sort by created date @@ -3814,7 +3826,7 @@ src/app/components/document-list/document-list.component.html 168 - Sort by created date + Nach ‚ausgestellt am‘ sortieren Sort by added date @@ -3822,7 +3834,7 @@ src/app/components/document-list/document-list.component.html 175 - Sort by added date + Nach ‚hinzugefügt am‘ sortieren Added @@ -4326,7 +4338,7 @@ src/app/components/manage/management-list/management-list.component.ts 174,176 - Error occurred while saving . + Fehler beim Speichern von . Successfully updated . @@ -4342,7 +4354,7 @@ src/app/components/manage/management-list/management-list.component.ts 187,189 - Error occurred while saving : . + Fehler beim Speichern von : . Do you really want to delete the ? @@ -4566,7 +4578,7 @@ src/app/components/manage/settings/settings.component.html 140,142 - Die Überprüfung auf Updates funktioniert über Anfragen an die öffentliche Github API um zu Ermitteln, ob eine neue Version verfügbar ist. Das eigentliche Update der Anwendung muss weiterhin per Hand durchgeführt werden. + Die Überprüfung auf Updates erfolgt über Anfragen an die öffentliche Github API, um zu ermitteln, ob eine neue Version verfügbar ist. Das eigentliche Update der Anwendung muss weiterhin per Hand durchgeführt werden. No tracking data is collected by the app in any way. @@ -4878,7 +4890,7 @@ src/app/components/manage/settings/settings.component.ts 659 - Das Passwort wurde geändert, Sie werden nun abgemeldet. + Das Kennwort wurde geändert, Sie werden nun abgemeldet. Saved user "". @@ -5030,7 +5042,7 @@ src/app/components/manage/settings/settings.component.ts 839 - Regel " " gespeichert. + Regel „“ gespeichert. Error saving rule: . @@ -5428,9 +5440,9 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 - Sie haben keine Berechtigung das zu tun + Sie haben keine Berechtigung, dies zu tun (no title) diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index d30cf8aa5..589c400d2 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 La lista de documentos muestra todos tus documentos y te permite filtrar y editar en masa. Hay disponibles tres vistas diferentes: lista, tarjetas pequeñas y tarjetas grandes. La lista de los documentos que se encuentran abiertos en un momento dado se muestra en la barra lateral. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 ¡Gracias! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Por último, en nombre de todos los colaboradores de este proyecto apoyado por la comunidad, ¡gracias por utilizar Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Iniciando subida... @@ -1265,7 +1265,7 @@ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts 24 - Create new user group + Crear nuevo grupo de usuario Edit user group @@ -1273,7 +1273,7 @@ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts 28 - Edit user group + Editar grupo de usuario IMAP Server @@ -1341,7 +1341,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Check if the password above is a token used for authentication + Compruebe si la contraseña anterior es un token utilizado para la autenticación Character Set @@ -1401,7 +1401,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 32 - Test + Test No encryption @@ -1509,7 +1509,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 15 - Consumption scope + Ámbito de consumo See docs for .eml processing requirements @@ -1549,7 +1549,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 21 - Filter to + Filtrar a Filter subject @@ -1961,7 +1961,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 11 - Email + E-mail First name @@ -1969,7 +1969,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 - First name + Nombre Last name @@ -1977,7 +1977,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 14 - Last name + Apellido Active @@ -1985,7 +1985,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 19 - Active + Activo Superuser @@ -1993,7 +1993,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 23 - Superuser + Superusuario (Grants all permissions and can view objects) @@ -2001,7 +2001,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 23 - (Grants all permissions and can view objects) + (Otorga todos los permisos y puede ver objetos) Groups @@ -2069,7 +2069,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 24 - Include + Incluir Exclude @@ -2077,7 +2077,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Exclude + Excluir Apply @@ -2134,7 +2134,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 7 - Edit Permissions + Editar Permisos Owner: @@ -2142,7 +2142,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 19 - Owner: + Propietario: Objects without an owner can be viewed and edited by all users @@ -2178,7 +2178,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 50 - Users: + Usuarios: Groups: @@ -2190,7 +2190,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 58 - Groups: + Grupos: Edit @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Guardar y continuar + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 ¿Estás seguro de querer borrar el documento ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Los archivos para este documento serán borrados permanentemente. Esta operación no se puede deshacer. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Borrar documento - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Error borrando el documento: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Esta operación rehará permanentemente el OCR de este documento. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 6a62e9835..d36027e25 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 Asiakirjaluettelo näyttää kaikki asiakirjat ja mahdollistaa suodattamisen ja massamuokkauksen. On olemassa kolme erilaista näkymää: luettelo, pienet kortit ja suuret kortit. Sivupalkissa näytetään luettelo tällä hetkellä avatuista asiakirjoista. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Suodatustyökalujen avulla voit löytää asiakirjoja nopeasti käyttämällä erilaisia hakuja, päivämääriä, tageja jne. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Mikä tahansa suodattimien yhdistelmä voidaan tallentaa 'näkymäksi', joka voidaan näyttää hallintapaneelissa ja / tai sivupalkissa. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tunnisteita, yhteyshenkilöitä, asiakirjatyyppejä ja tallennuspolkuja voidaan hallita näillä sivuilla. Niitä voidaan myös luoda asiakirjan muokkausnäkymästä. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Tiedostotehtävät näyttää asiakirjat, jotka on viety, odottavat tai ovat epäonnistuneet tehtävän aikana. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Tarkista asetukset erilaisille muutoksille web-sovelluksessa, muuta tallennettujen näkymien asetuksia tai määritä sähköpostitilin tarkistus. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Kiitos! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 On <em>muitakin</em> ominaisuuksia ja tietoja, joita ei lue täällä, mutta näillä pääset alkuun. Tutustu dokumentaatioon tai vieraile GitHubissa oppiaksesi lisää tai raportoidaksesi ongelmista. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lopuksi kiitän kaikkia osallistujia, jotka ovat käyttäneet Paperless-ngxia! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Aloittaa latausta... @@ -1333,7 +1333,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Password is token + Salasana on token Check if the password above is a token used for authentication @@ -1341,7 +1341,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Check if the password above is a token used for authentication + Tarkista, onko yllä oleva salasana token, jota käytetään autentikoimiseen Character Set @@ -1401,7 +1401,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 32 - Test + Testaa No encryption @@ -1449,7 +1449,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 88 - Successfully connected to the mail server + Yhteyden muodostaminen sähköpostipalvelimeen onnistui Unable to connect to the mail server @@ -1457,7 +1457,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 89 - Unable to connect to the mail server + Yhdistäminen sähköpostipalvelimeen epäonnistui Account @@ -1549,7 +1549,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 21 - Filter to + Suodata lähettäjä-kenttä Filter subject @@ -2069,7 +2069,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 24 - Include + Sisällytä Exclude @@ -2077,7 +2077,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Exclude + Ohita Apply @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2287,7 +2287,7 @@ src/app/components/common/tag/tag.component.html 8 - Private + Yksityinen Add tag @@ -2357,7 +2357,7 @@ src/app/components/common/permissions-select/permissions-select.component.ts 62 - Inherited from group + Peritty ryhmästä Select @@ -2473,7 +2473,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Go to inbox + Siirry saapuneisiin Documents in inbox @@ -2481,7 +2481,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 5 - Documents in inbox + Asiakirjat saapuneet- kansiossa Go to documents @@ -2489,7 +2489,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 8 - Go to documents + Siirry asiakirjoihin Total documents @@ -2497,7 +2497,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 9 - Total documents + Asiakirjoja yhteensä Total characters @@ -2505,7 +2505,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 13 - Total characters + Merkkejä yhteensä Other @@ -2513,7 +2513,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts 55 - Other + Muu Upload new documents @@ -2968,7 +2968,7 @@ src/app/components/document-detail/document-detail.component.html 175,176 - Notes + Muistiinpanot Discard @@ -2986,11 +2986,19 @@ Tallenna & Lopeta + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + Sisällön lataamisessa tapahtui virhe: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Virhe haettaessa metatietoja @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Virhe haettaessa ehdotuksia @@ -3006,19 +3014,23 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 - Document saved successfully. + + src/app/components/document-detail/document-detail.component.ts + 492 + + Asiakirja tallennettu onnistuneesti. Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Virhe tallennettaessa asiakirjaa @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Haluatko varmasti poistaa asiakirjan ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Tämän asiakirjan tiedostot poistetaan pysyvästi. Tätä toimintoa ei voi peruuttaa. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Poista asiakirja - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Virhe poistettaessa asiakirjaa: + Virhe poistettaessa asiakirjaa: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Tämä toiminto suorittaa OCR:n uudelleen. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 OCR-toiminto alkaa taustalla. Sulje ja avaa uudelleen tämä asiakirja tai lataa se uudelleen, kun toiminto on suoritettu nähdäksesi uuden sisällön. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Virhe suoritettaessa toimintoa: @@ -3526,7 +3538,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 70 - View notes + Näytä muistiinpanot Notes @@ -3534,7 +3546,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 74 - Notes + Muistiinpanot Filter by document type @@ -3734,7 +3746,7 @@ src/app/components/document-list/document-list.component.html 126 - Sort by ASN + Järjestä ASN:n mukaan ASN @@ -3758,7 +3770,7 @@ src/app/components/document-list/document-list.component.html 133 - Sort by correspondent + Suodata yhteyshenkilön mukaan Sort by title @@ -3766,7 +3778,7 @@ src/app/components/document-list/document-list.component.html 140 - Sort by title + Järjestä otsikon mukaan Sort by notes @@ -3774,7 +3786,7 @@ src/app/components/document-list/document-list.component.html 147 - Sort by notes + Järjestä muistiinpanojen mukaan Notes @@ -3790,7 +3802,7 @@ src/app/services/rest/document.service.ts 25 - Notes + Muistiinpanot Sort by document type @@ -3798,7 +3810,7 @@ src/app/components/document-list/document-list.component.html 154 - Sort by document type + Lajittele asiakirjatyypin mukaan Sort by storage path @@ -3806,7 +3818,7 @@ src/app/components/document-list/document-list.component.html 161 - Sort by storage path + Lajittele tallennuspolun mukaan Sort by created date @@ -3814,7 +3826,7 @@ src/app/components/document-list/document-list.component.html 168 - Sort by created date + Lajittele luontipäivän mukaan Sort by added date @@ -3822,7 +3834,7 @@ src/app/components/document-list/document-list.component.html 175 - Sort by added date + Lajittele lisäyspäivän mukaan Added @@ -4054,7 +4066,7 @@ src/app/components/document-notes/document-notes.component.html 4 - Enter note + Syötä muistiinpano Please enter a note. @@ -4062,7 +4074,7 @@ src/app/components/document-notes/document-notes.component.html 5,7 - Please enter a note. + Ole hyvä ja syötä muistiinpano. Add note @@ -4070,7 +4082,7 @@ src/app/components/document-notes/document-notes.component.html 11 - Add note + Lisää muistiinpano Delete note @@ -4082,7 +4094,7 @@ src/app/components/document-notes/document-notes.component.html 25 - Delete note + Poista muistiinpano Error saving note: @@ -4090,7 +4102,7 @@ src/app/components/document-notes/document-notes.component.ts 65 - Error saving note: + Virhe tallennettaessa muistiinpanoa: Error deleting note: @@ -4098,7 +4110,7 @@ src/app/components/document-notes/document-notes.component.ts 81 - Error deleting note: + Virhe poistettaessa muistiinpanoa: correspondent @@ -4326,7 +4338,7 @@ src/app/components/manage/management-list/management-list.component.ts 174,176 - Error occurred while saving . + Virhe tallennettaessa : . Successfully updated . @@ -4342,7 +4354,7 @@ src/app/components/manage/management-list/management-list.component.ts 187,189 - Error occurred while saving : . + Virhe tallennettaessa : . Do you really want to delete the ? @@ -4630,7 +4642,7 @@ src/app/components/manage/settings/settings.component.html 163 - Enable notes + Ota muistiinpanot käyttöön Notifications @@ -4878,7 +4890,7 @@ src/app/components/manage/settings/settings.component.ts 659 - Password has been changed, you will be logged out momentarily. + Salasana on vaihdettu, sinut kirjataan ulos hetken kuluttua. Saved user "". @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 Sinulla ei ole käyttöoikeuksia tähän toimintoon diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index db0920fac..3739f0f8d 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 La liste des documents affiche tous vos documents et permet le filtrage ainsi que l'édition de masse. Il y a trois styles de vue différents : liste, vignettes et liste détaillée. Une liste de documents actuellement ouverts à l'édition est affichée dans la barre latérale. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Les filtres vous permettent de trouver rapidement des documents en utilisant diverses recherches, dates, étiquettes, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Toute combinaison de filtres peut être enregistrée sous la forme d'une « vue » qui peut ensuite être affichée sur le tableau de bord et / ou la barre latérale. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Les étiquettes, correspondants, types de documents et chemins de stockage peuvent tous être gérés à l'aide de ces pages. Ils peuvent également être créés à partir de la vue d'édition du document. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Les tâches de fichiers vous montrent les documents qui ont été consommés, ceux qui sont en attente de l'être, ou ceux qui ont pu échouer au cours du processus. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Vérifiez les paramètres pour en ajuster certains, activer les vues enregistrées ou pour configurer les courriels. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Merci ! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 Il y a <em>des tonnes</em> de fonctionnalités et d'informations supplémentaires que nous n'avons pas couvertes ici, mais cela devrait vous aider à démarrer. Consultez la documentation ou visitez le projet sur GitHub pour en savoir plus ou pour signaler des problèmes. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx ! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Démarrage du téléversement... @@ -1333,7 +1333,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Password is token + Le mot de passe est le jeton d'authentification Check if the password above is a token used for authentication @@ -1341,7 +1341,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Check if the password above is a token used for authentication + Vérifier si le mot de passe ci-dessus est un jeton utilisé pour l'authentification Character Set @@ -1401,7 +1401,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 32 - Test + Test No encryption @@ -1449,7 +1449,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 88 - Successfully connected to the mail server + Connexion réussie au serveur de courrier Unable to connect to the mail server @@ -1457,7 +1457,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 89 - Unable to connect to the mail server + Impossible de se connecter au serveur d'impression Account @@ -1549,7 +1549,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 21 - Filter to + Filtrer pour Filter subject @@ -2069,7 +2069,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 24 - Include + Inclure Exclude @@ -2077,7 +2077,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Exclude + Exclure Apply @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2287,7 +2287,7 @@ src/app/components/common/tag/tag.component.html 8 - Private + Privé Add tag @@ -2357,7 +2357,7 @@ src/app/components/common/permissions-select/permissions-select.component.ts 62 - Inherited from group + Hérité du groupe Select @@ -2473,7 +2473,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Go to inbox + Accéder à la boîte de réception Documents in inbox @@ -2481,7 +2481,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 5 - Documents in inbox + Documents dans la boîte de réception Go to documents @@ -2489,7 +2489,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 8 - Go to documents + Aller aux documents Total documents @@ -2497,7 +2497,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 9 - Total documents + Nombre total de documents Total characters @@ -2505,7 +2505,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 13 - Total characters + Nombre total de caractères Other @@ -2513,7 +2513,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts 55 - Other + Autres Upload new documents @@ -2968,7 +2968,7 @@ src/app/components/document-detail/document-detail.component.html 175,176 - Notes + Notes Discard @@ -2986,11 +2986,19 @@ Enregistrer & suivant + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + Une erreur s'est produite lors du chargement du contenu : + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Erreur lors de la récupération des métadonnées @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Erreur lors de la récupération des suggestions @@ -3006,19 +3014,23 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 - Document saved successfully. + + src/app/components/document-detail/document-detail.component.ts + 492 + + Document enregistré avec succès. Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Erreur lors de la sauvegarde du document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Voulez-vous vraiment supprimer le document "" ? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Les fichiers liés à ce document seront supprimés définitivement. Cette action est irréversible. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Supprimer le document - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Une erreur s'est produite lors de la suppression du document : + Erreur lors de la suppression du document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Cette opération écrasera la ROC pour ce document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 La relance de la ROC va démarrer en arrière-plan. Fermez et réouvrez ou recharger ce document une fois l'opération terminée pour voir le nouveau contenu. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Erreur lors de l'exécution de l'opération : @@ -3526,7 +3538,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 70 - View notes + Afficher les Notes Notes @@ -3534,7 +3546,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 74 - Notes + Notes Filter by document type @@ -3734,7 +3746,7 @@ src/app/components/document-list/document-list.component.html 126 - Sort by ASN + Trier par ASN ASN @@ -3758,7 +3770,7 @@ src/app/components/document-list/document-list.component.html 133 - Sort by correspondent + Trier par correspondant Sort by title @@ -3766,7 +3778,7 @@ src/app/components/document-list/document-list.component.html 140 - Sort by title + Trier par titre Sort by notes @@ -3774,7 +3786,7 @@ src/app/components/document-list/document-list.component.html 147 - Sort by notes + Trier par notes Notes @@ -3790,7 +3802,7 @@ src/app/services/rest/document.service.ts 25 - Notes + Notes Sort by document type @@ -3798,7 +3810,7 @@ src/app/components/document-list/document-list.component.html 154 - Sort by document type + Trier par type de documents Sort by storage path @@ -3806,7 +3818,7 @@ src/app/components/document-list/document-list.component.html 161 - Sort by storage path + Trier par chemin de stockage Sort by created date @@ -3814,7 +3826,7 @@ src/app/components/document-list/document-list.component.html 168 - Sort by created date + Trier par la date de création Sort by added date @@ -3822,7 +3834,7 @@ src/app/components/document-list/document-list.component.html 175 - Sort by added date + Trier par date d'ajout Added @@ -4054,7 +4066,7 @@ src/app/components/document-notes/document-notes.component.html 4 - Enter note + Saisir des notes Please enter a note. @@ -4062,7 +4074,7 @@ src/app/components/document-notes/document-notes.component.html 5,7 - Please enter a note. + Veuillez saisir une note. Add note @@ -4070,7 +4082,7 @@ src/app/components/document-notes/document-notes.component.html 11 - Add note + Ajouter une note Delete note @@ -4082,7 +4094,7 @@ src/app/components/document-notes/document-notes.component.html 25 - Delete note + Supprimer une note Error saving note: @@ -4090,7 +4102,7 @@ src/app/components/document-notes/document-notes.component.ts 65 - Error saving note: + Erreur lors de l'enregistrement de la note: Error deleting note: @@ -4098,7 +4110,7 @@ src/app/components/document-notes/document-notes.component.ts 81 - Error deleting note: + Erreur lors de l'enregistrement de la note: correspondent @@ -4310,7 +4322,7 @@ src/app/components/manage/management-list/management-list.component.ts 153,155 - Error occurred while creating : . + Une erreur s'est produite lors de la création de : . Successfully created . @@ -4326,7 +4338,7 @@ src/app/components/manage/management-list/management-list.component.ts 174,176 - Error occurred while saving . + Une erreur s'est produite lors de la sauvegarde de : . Successfully updated . @@ -4342,7 +4354,7 @@ src/app/components/manage/management-list/management-list.component.ts 187,189 - Error occurred while saving : . + Une erreur s'est produite lors de la sauvegarde de : . Do you really want to delete the ? @@ -4630,7 +4642,7 @@ src/app/components/manage/settings/settings.component.html 163 - Enable notes + Activez les notes Notifications @@ -4878,7 +4890,7 @@ src/app/components/manage/settings/settings.component.ts 659 - Password has been changed, you will be logged out momentarily. + Le mot de passe a été modifié, vous serez déconnecté momentanément. Saved user "". @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 Vous n'avez pas la permission de faire cela diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 2db6e184e..84d7807dd 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Thank you! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 מאתחל העלאה... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ שמור & הבא + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 בטוח שברצנך למחוק את המסמך ? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 הקבצים עבור מסמך זה יימחקו לצמיתות. לא ניתן לבטל פעולה זו. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 מחק מסמך - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - שגיאה במחיקת מסמך: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index 4cb001367..d64177b70 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Thank you! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Pokretanje prijenosa... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Save & next + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Do you really want to delete document ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 The files for this document will be deleted permanently. This operation cannot be undone. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Delete document - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Error deleting document: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf new file mode 100644 index 000000000..7523d5477 --- /dev/null +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -0,0 +1,5886 @@ + + + + + + Close + + node_modules/src/ngb-config.ts + 13 + + Tutup + + + HH + + node_modules/src/ngb-config.ts + 13 + + HH + + + Close + + node_modules/src/ngb-config.ts + 13 + + Tutup + + + «« + + node_modules/src/ngb-config.ts + 13 + + «« + + + Select month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + Pilih bulan + + + Previous month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + Bulan sebelumnya + + + + + + + node_modules/src/ngb-config.ts + 13 + + + + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader + Slide of + + + Hours + + node_modules/src/ngb-config.ts + 13 + + Jam + + + « + + node_modules/src/ngb-config.ts + 13 + + « + + + Previous + + node_modules/src/ngb-config.ts + 13 + + Sebelumnya + + + MM + + node_modules/src/ngb-config.ts + 13 + + MM + + + » + + node_modules/src/ngb-config.ts + 13 + + » + + + Select year + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + Pilih tahun + + + Next month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + Bulan depan + + + Next + + node_modules/src/ngb-config.ts + 13 + + Selanjutnya + + + Minutes + + node_modules/src/ngb-config.ts + 13 + + Menit + + + »» + + node_modules/src/ngb-config.ts + 13 + + »» + + + Increment hours + + node_modules/src/ngb-config.ts + 13 + + Increment hours + + + First + + node_modules/src/ngb-config.ts + 13 + + Pertama + + + Previous + + node_modules/src/ngb-config.ts + 13 + + Sebelumnya + + + Decrement hours + + node_modules/src/ngb-config.ts + 13 + + Decrement hours + + + Next + + node_modules/src/ngb-config.ts + 13 + + Selanjutnya + + + Increment minutes + + node_modules/src/ngb-config.ts + 13 + + Increment minutes + + + Last + + node_modules/src/ngb-config.ts + 13 + + Terahkir + + + Decrement minutes + + node_modules/src/ngb-config.ts + 13 + + Decrement minutes + + + SS + + node_modules/src/ngb-config.ts + 13 + + SS + + + Seconds + + node_modules/src/ngb-config.ts + 13 + + Detik + + + Increment seconds + + node_modules/src/ngb-config.ts + 13 + + Increment seconds + + + Decrement seconds + + node_modules/src/ngb-config.ts + 13 + + Decrement seconds + + + + + + + node_modules/src/ngb-config.ts + 13 + + + + + + + + node_modules/src/ngb-config.ts + 13 + + + + Drop files to begin upload + + src/app/app.component.html + 7 + + Drop files to begin upload + + + Document added + + src/app/app.component.ts + 90 + + + src/app/app.component.ts + 100 + + Dokumen tertambah + + + Document was added to paperless. + + src/app/app.component.ts + 92 + + + src/app/app.component.ts + 102 + + Document was added to paperless. + + + Open document + + src/app/app.component.ts + 93 + + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 46 + + Buka dokumen + + + Could not add : + + src/app/app.component.ts + 116 + + Tidak dapat menambahkan : + + + New document detected + + src/app/app.component.ts + 131 + + Dokumen baru terdeteksi + + + Document is being processed by paperless. + + src/app/app.component.ts + 133 + + Dokumen sedang diproses oleh Paperless. + + + Prev + + src/app/app.component.ts + 138 + + Sebelumnya + + + Next + + src/app/app.component.ts + 139 + + + src/app/components/document-detail/document-detail.component.html + 55 + + Selanjutnya + + + End + + src/app/app.component.ts + 140 + + Akhir + + + The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. + + src/app/app.component.ts + 145 + + The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. + + + Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + + src/app/app.component.ts + 155 + + Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + + + The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. + + src/app/app.component.ts + 165 + + The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. + + + The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. + + src/app/app.component.ts + 178 + + The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. + + + Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. + + src/app/app.component.ts + 189 + + Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. + + + Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + + src/app/app.component.ts + 199 + + Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + + + File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + + src/app/app.component.ts + 209 + + File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + + + Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. + + src/app/app.component.ts + 219 + + Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. + + + Thank you! 🙏 + + src/app/app.component.ts + 229 + + Terima kasih! 🙏 + + + There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + + src/app/app.component.ts + 231 + + There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + + + Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + src/app/app.component.ts + 233 + + Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + + Initiating upload... + + src/app/app.component.ts + 288 + + Mulai mengunggah... + + + Paperless-ngx + + src/app/components/app-frame/app-frame.component.html + 11 + + app title + Paperless-ngx + + + Search documents + + src/app/components/app-frame/app-frame.component.html + 18 + + Telusuri dokumen + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 39 + + Logged in as + + + Settings + + src/app/components/app-frame/app-frame.component.html + 45 + + + src/app/components/app-frame/app-frame.component.html + 174 + + + src/app/components/app-frame/app-frame.component.html + 177 + + + src/app/components/manage/settings/settings.component.html + 1 + + + src/app/components/manage/settings/settings.component.html + 192 + + Settings + + + Logout + + src/app/components/app-frame/app-frame.component.html + 50 + + Keluar + + + Dashboard + + src/app/components/app-frame/app-frame.component.html + 69 + + + src/app/components/app-frame/app-frame.component.html + 72 + + + src/app/components/dashboard/dashboard.component.html + 1 + + Dasbor + + + Documents + + src/app/components/app-frame/app-frame.component.html + 76 + + + src/app/components/app-frame/app-frame.component.html + 79 + + + src/app/components/document-list/document-list.component.ts + 97 + + + src/app/components/manage/management-list/management-list.component.html + 54 + + + src/app/components/manage/management-list/management-list.component.html + 54 + + + src/app/components/manage/management-list/management-list.component.html + 54 + + + src/app/components/manage/management-list/management-list.component.html + 54 + + Dokumen + + + Saved views + + src/app/components/app-frame/app-frame.component.html + 85 + + + src/app/components/manage/settings/settings.component.html + 189 + + Saved views + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 101 + + Buka dokumen + + + Close all + + src/app/components/app-frame/app-frame.component.html + 117 + + + src/app/components/app-frame/app-frame.component.html + 120 + + Tutup semua + + + Manage + + src/app/components/app-frame/app-frame.component.html + 127 + + Manage + + + Correspondents + + src/app/components/app-frame/app-frame.component.html + 131 + + + src/app/components/app-frame/app-frame.component.html + 134 + + Koresponden + + + Tags + + src/app/components/app-frame/app-frame.component.html + 138 + + + src/app/components/app-frame/app-frame.component.html + 141 + + + src/app/components/common/input/tags/tags.component.html + 2 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 28 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 27 + + Tags + + + Document types + + src/app/components/app-frame/app-frame.component.html + 145 + + + src/app/components/app-frame/app-frame.component.html + 148 + + Jenis dokumen + + + Storage paths + + src/app/components/app-frame/app-frame.component.html + 152 + + + src/app/components/app-frame/app-frame.component.html + 155 + + Storage paths + + + File Tasks + + src/app/components/app-frame/app-frame.component.html + 159 + + + src/app/components/manage/tasks/tasks.component.html + 1 + + File Tasks + + + File Tasks + + src/app/components/app-frame/app-frame.component.html + 163 + + File Tasks + + + Logs + + src/app/components/app-frame/app-frame.component.html + 167 + + + src/app/components/app-frame/app-frame.component.html + 170 + + + src/app/components/manage/logs/logs.component.html + 1 + + Logs + + + Info + + src/app/components/app-frame/app-frame.component.html + 183 + + + src/app/components/manage/tasks/tasks.component.html + 43 + + Informasi + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 187 + + + src/app/components/app-frame/app-frame.component.html + 190 + + Dokumentasi + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 195 + + + src/app/components/app-frame/app-frame.component.html + 198 + + GitHub + + + Suggest an idea + + src/app/components/app-frame/app-frame.component.html + 200 + + + src/app/components/app-frame/app-frame.component.html + 204 + + Sarankan ide + + + is available. + + src/app/components/app-frame/app-frame.component.html + 213 + + telah tersedia. + + + Click to view. + + src/app/components/app-frame/app-frame.component.html + 213 + + Ketuk untuk melihat. + + + Paperless-ngx can automatically check for updates + + src/app/components/app-frame/app-frame.component.html + 217 + + Paperless-ngx can automatically check for updates + + + How does this work? + + src/app/components/app-frame/app-frame.component.html + 224,226 + + Bagaimana ini dapat bekerja? + + + Update available + + src/app/components/app-frame/app-frame.component.html + 235 + + Pembaruan tersedia + + + An error occurred while saving settings. + + src/app/components/app-frame/app-frame.component.ts + 89 + + + src/app/components/manage/settings/settings.component.ts + 593 + + An error occurred while saving settings. + + + An error occurred while saving update checking settings. + + src/app/components/app-frame/app-frame.component.ts + 222 + + An error occurred while saving update checking settings. + + + Clear + + src/app/components/common/clearable-badge/clearable-badge.component.html + 1 + + + src/app/components/common/date-dropdown/date-dropdown.component.html + 24 + + + src/app/components/common/date-dropdown/date-dropdown.component.html + 47 + + Clear + + + Cancel + + src/app/components/common/confirm-dialog/confirm-dialog.component.html + 12 + + Cancel + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 20 + + Konfirmasi + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 32 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 21 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 324 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 364 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 402 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 440 + + Confirm + + + After + + src/app/components/common/date-dropdown/date-dropdown.component.html + 19 + + Setelah + + + Before + + src/app/components/common/date-dropdown/date-dropdown.component.html + 42 + + Sebelum + + + Last 7 days + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 43 + + 7 hari terahkir + + + Last month + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 47 + + Bulan lalu + + + Last 3 months + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 51 + + 3 bulan terakhir + + + Last year + + src/app/components/common/date-dropdown/date-dropdown.component.ts + 55 + + Tahun lalu + + + Name + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 9 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 9 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 8 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 + + + src/app/components/manage/management-list/management-list.component.html + 9 + + + src/app/components/manage/management-list/management-list.component.html + 9 + + + src/app/components/manage/management-list/management-list.component.html + 9 + + + src/app/components/manage/management-list/management-list.component.html + 9 + + + src/app/components/manage/management-list/management-list.component.html + 19 + + + src/app/components/manage/management-list/management-list.component.html + 19 + + + src/app/components/manage/management-list/management-list.component.html + 19 + + + src/app/components/manage/management-list/management-list.component.html + 19 + + + src/app/components/manage/settings/settings.component.html + 204 + + + src/app/components/manage/settings/settings.component.html + 257 + + + src/app/components/manage/settings/settings.component.html + 294 + + + src/app/components/manage/settings/settings.component.html + 345 + + + src/app/components/manage/settings/settings.component.html + 379 + + + src/app/components/manage/tasks/tasks.component.html + 40 + + Name + + + Matching algorithm + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 10 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + Matching algorithm + + + Matching pattern + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 14 + + Matching pattern + + + Case insensitive + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 15 + + Case insensitive + + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 20 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 22 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 34 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 39 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 21 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 23 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 20 + + + src/app/components/common/select-dialog/select-dialog.component.html + 12 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 6 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 18 + + Batalkan + + + Save + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 21 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 23 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 17 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 40 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 22 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/document-detail/document-detail.component.html + 196 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 19 + + + src/app/components/manage/settings/settings.component.html + 415 + + Simpan + + + Create new correspondent + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 25 + + Create new correspondent + + + Edit correspondent + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 29 + + Edit correspondent + + + Create new document type + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts + 25 + + Create new document type + + + Edit document type + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts + 29 + + Ubah jenis dokumen + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 71 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 75 + + Edit item + + + Could not save element: + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 79 + + Could not save element: + + + Permissions + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 30 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 2 + + + src/app/components/document-detail/document-detail.component.html + 182 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 81 + + Permissions + + + Create new user group + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts + 24 + + Create new user group + + + Edit user group + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts + 28 + + Edit user group + + + IMAP Server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 11 + + IMAP Server + + + IMAP Port + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 12 + + IMAP Port + + + IMAP Security + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 13 + + IMAP Security + + + Username + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 10 + + + src/app/components/manage/settings/settings.component.html + 344 + + Username + + + Password + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 17 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 12 + + Kata sandi + + + Password is token + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 18 + + Password is token + + + Check if the password above is a token used for authentication + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 18 + + Check if the password above is a token used for authentication + + + Character Set + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 19 + + Character Set + + + Loading... + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 30 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 18 + + + src/app/components/dashboard/dashboard.component.html + 26 + + + src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html + 7 + + + src/app/components/document-list/document-list.component.html + 95 + + + src/app/components/manage/settings/settings.component.html + 230 + + + src/app/components/manage/settings/settings.component.html + 320 + + + src/app/components/manage/settings/settings.component.html + 406 + + + src/app/components/manage/tasks/tasks.component.html + 19 + + + src/app/components/manage/tasks/tasks.component.html + 27 + + Memuat... + + + Test + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 32 + + Tes + + + No encryption + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 13 + + Tanpa enkripsi + + + SSL + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 14 + + SSL + + + STARTTLS + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 15 + + STARTTLS + + + Create new mail account + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 39 + + Create new mail account + + + Edit mail account + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 43 + + Edit mail account + + + Successfully connected to the mail server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 88 + + Successfully connected to the mail server + + + Unable to connect to the mail server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 89 + + Unable to connect to the mail server + + + Account + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 11 + + + src/app/components/manage/settings/settings.component.html + 295 + + Akun + + + Folder + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 12 + + Direktori + + + Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 12 + + Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + + + Maximum age (days) + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 13 + + Umur maksimal (hari) + + + Attachment type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 14 + + Attachment type + + + Consumption scope + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 15 + + Consumption scope + + + See docs for .eml processing requirements + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 15 + + See docs for .eml processing requirements + + + Rule order + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 16 + + Urutan peraturan + + + Paperless will only process mails that match all of the filters specified below. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 19 + + Paperless will only process mails that match all of the filters specified below. + + + Filter from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 20 + + Filter from + + + Filter to + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 21 + + Filter to + + + Filter subject + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 22 + + Filter subject + + + Filter body + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 23 + + Filter body + + + Filter attachment filename + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 24 + + Filter attachment filename + + + Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 24 + + Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Action + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 27 + + Aksi + + + Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 27 + + Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. + + + Action parameter + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 28 + + Action parameter + + + Assign title from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 29 + + Assign title from + + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 31 + + Assign document type + + + Assign correspondent from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 32 + + Assign correspondent from + + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 33 + + Assign correspondent + + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/services/toast.service.ts + 35 + + Kesalahan + + + Only process attachments + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 26 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 37 + + Hanya memproses lampiran + + + Process all files, including 'inline' attachments + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 30 + + Process all files, including 'inline' attachments + + + Process message as .eml + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 41 + + Proses pesan sebagai .eml + + + Process message as .eml and attachments separately + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 45 + + Process message as .eml and attachments separately + + + Delete + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 52 + + + src/app/components/common/permissions-select/permissions-select.component.html + 9 + + + src/app/components/document-detail/document-detail.component.html + 11 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 141 + + + src/app/components/manage/management-list/management-list.component.html + 46 + + + src/app/components/manage/management-list/management-list.component.html + 46 + + + src/app/components/manage/management-list/management-list.component.html + 46 + + + src/app/components/manage/management-list/management-list.component.html + 46 + + + src/app/components/manage/management-list/management-list.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.ts + 213 + + + src/app/components/manage/settings/settings.component.html + 222 + + + src/app/components/manage/settings/settings.component.html + 270 + + + src/app/components/manage/settings/settings.component.html + 307 + + + src/app/components/manage/settings/settings.component.html + 359 + + + src/app/components/manage/settings/settings.component.html + 394 + + Hapus + + + Move to specified folder + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 56 + + Move to specified folder + + + Mark as read, don't process read mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 60 + + Mark as read, don't process read mails + + + Flag the mail, don't process flagged mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 64 + + Flag the mail, don't process flagged mails + + + Tag the mail with specified tag, don't process tagged mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 68 + + Tag the mail with specified tag, don't process tagged mails + + + Use subject as title + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 75 + + Gunakan subjek sebagai judul + + + Use attachment filename as title + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 79 + + Use attachment filename as title + + + Do not assign a correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 86 + + Do not assign a correspondent + + + Use mail address + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 90 + + Use mail address + + + Use name (or mail address if not available) + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 94 + + Use name (or mail address if not available) + + + Use correspondent selected below + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 98 + + Use correspondent selected below + + + Create new mail rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 139 + + Buat aturan surat baru + + + Edit mail rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 143 + + Ubah peraturan surat + + + Path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 10 + + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 42 + + Path + + + e.g. + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 26 + + contoh + + + or use slashes to add directories e.g. + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 28 + + or use slashes to add directories e.g. + + + See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 30 + + See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. + + + Create new storage path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 35 + + Create new storage path + + + Edit storage path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 39 + + Edit storage path + + + Color + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 10 + + + src/app/components/manage/tag-list/tag-list.component.ts + 42 + + Warna + + + Inbox tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 12 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 12 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts + 26 + + Create new tag + + + Edit tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts + 30 + + Edit tag + + + Email + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 11 + + Surat elektronik + + + First name + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 13 + + Nama depan + + + Last name + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 14 + + Nama akhir + + + Active + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 19 + + Aktif + + + Superuser + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 23 + + Superuser + + + (Grants all permissions and can view objects) + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 23 + + (Grants all permissions and can view objects) + + + Groups + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 27 + + + src/app/components/manage/settings/settings.component.html + 346 + + + src/app/components/manage/settings/settings.component.html + 367 + + Grup + + + Create new user account + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 42 + + Buat akun pengguna baru + + + Edit user account + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 46 + + Ubah akun pengguna + + + All + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 16 + + + src/app/components/common/permissions-select/permissions-select.component.html + 6 + + + src/app/components/common/permissions-select/permissions-select.component.html + 17 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + Semua + + + Any + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 18 + + Setiap + + + Include + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 24 + + Include + + + Exclude + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 26 + + Exclude + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 40 + + Terapkan + + + Click again to exclude items. + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 46 + + Click again to exclude items. + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 335 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 13 + + Invalid date. + + + Suggestions: + + src/app/components/common/input/date/date.component.html + 16 + + + src/app/components/common/input/select/select.component.html + 32 + + + src/app/components/common/input/tags/tags.component.html + 43 + + Suggestions: + + + Edit Permissions + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 7 + + Edit Permissions + + + Owner: + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 19 + + Pemilik: + + + Objects without an owner can be viewed and edited by all users + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 25 + + Objects without an owner can be viewed and edited by all users + + + View + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 27 + + + src/app/components/common/permissions-select/permissions-select.component.html + 10 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 56 + + View + + + Users: + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 31 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 50 + + Users: + + + Groups: + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 39 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 58 + + Groups: + + + Edit + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 46 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 49 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 78 + + + src/app/components/manage/management-list/management-list.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 59 + + + src/app/components/manage/management-list/management-list.component.html + 59 + + + src/app/components/manage/management-list/management-list.component.html + 59 + + + src/app/components/manage/management-list/management-list.component.html + 59 + + + src/app/components/manage/settings/settings.component.html + 269 + + + src/app/components/manage/settings/settings.component.html + 306 + + + src/app/components/manage/settings/settings.component.html + 358 + + + src/app/components/manage/settings/settings.component.html + 393 + + Edit + + + Edit permissions also grant viewing permissions + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 64 + + Edit permissions also grant viewing permissions + + + Add item + + src/app/components/common/input/select/select.component.html + 12 + + Used for both types, correspondents, storage paths + Add item + + + Private + + src/app/components/common/input/select/select.component.ts + 57 + + + src/app/components/common/tag/tag.component.html + 7 + + + src/app/components/common/tag/tag.component.html + 8 + + Private + + + Add tag + + src/app/components/common/input/tags/tags.component.html + 12 + + Add tag + + + Set Permissions + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 26 + + Set Permissions + + + Note that permissions set here will override any existing permissions + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 43 + + Note that permissions set here will override any existing permissions + + + Type + + src/app/components/common/permissions-select/permissions-select.component.html + 5 + + Type + + + Add + + src/app/components/common/permissions-select/permissions-select.component.html + 7 + + Add + + + Change + + src/app/components/common/permissions-select/permissions-select.component.html + 8 + + Change + + + + + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + src/app/components/manage/tasks/tasks.component.html + 11 + + + + + Inherited from group + + src/app/components/common/permissions-select/permissions-select.component.ts + 62 + + Inherited from group + + + Select + + src/app/components/common/select-dialog/select-dialog.component.html + 13 + + + src/app/components/common/select-dialog/select-dialog.component.ts + 17 + + + src/app/components/document-list/document-list.component.html + 8 + + Pilih + + + Please select an object + + src/app/components/common/select-dialog/select-dialog.component.ts + 20 + + Please select an object + + + Hello , welcome to Paperless-ngx + + src/app/components/dashboard/dashboard.component.ts + 36 + + Hello , welcome to Paperless-ngx + + + Welcome to Paperless-ngx + + src/app/components/dashboard/dashboard.component.ts + 38 + + Welcome to Paperless-ngx + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 3 + + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 27 + + Tampilkan semua + + + Created + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 9 + + + src/app/components/document-list/document-list.component.html + 172 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 63 + + + src/app/components/manage/tasks/tasks.component.html + 41 + + + src/app/services/rest/document.service.ts + 22 + + Created + + + Title + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 10 + + + src/app/components/document-detail/document-detail.component.html + 75 + + + src/app/components/document-list/document-list.component.html + 144 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 172 + + + src/app/services/rest/document.service.ts + 20 + + Judul + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistik + + + Go to inbox + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 4 + + Go to inbox + + + Documents in inbox + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 5 + + Documents in inbox + + + Go to documents + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 8 + + Go to documents + + + Total documents + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 9 + + Total dokumen + + + Total characters + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 13 + + Total huruf + + + Other + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts + 55 + + Lainnya + + + Upload new documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 1 + + Unggah dokumen baru + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 4 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + Drop documents here or + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Drop documents here or + + + Browse files + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 13 + + Cari berkas + + + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 25 + + This is shown as a summary line when there are more than 5 document in the processing pipeline. + {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 39 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 42 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 45 + + Added: + + + , + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 48 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 269 + + this string is used to separate processing, failed and added on the file upload widget + , + + + Paperless-ngx is running! + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 3 + + Paperless-ngx sedang berjalan! + + + You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 4 + + You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + + + More detail on how to use and configure Paperless-ngx is always available in the documentation. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 5 + + More detail on how to use and configure Paperless-ngx is always available in the documentation. + + + Thanks for being a part of the Paperless-ngx community! + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Thanks for being a part of the Paperless-ngx community! + + + Start the tour + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 9 + + Mulai tur + + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + + + Page + + src/app/components/document-detail/document-detail.component.html + 3 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 15 + + Halaman + + + of + + src/app/components/document-detail/document-detail.component.html + 5,6 + + of + + + Download + + src/app/components/document-detail/document-detail.component.html + 19 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 105 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 64 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 94 + + Unduh + + + Download original + + src/app/components/document-detail/document-detail.component.html + 25 + + Download original + + + Redo OCR + + src/app/components/document-detail/document-detail.component.html + 34 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 92 + + Redo OCR + + + More like this + + src/app/components/document-detail/document-detail.component.html + 40 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 44 + + More like this + + + Close + + src/app/components/document-detail/document-detail.component.html + 43 + + + src/app/guards/dirty-saved-view.guard.ts + 40 + + Tutup + + + Previous + + src/app/components/document-detail/document-detail.component.html + 50 + + Sebelumnya + + + Details + + src/app/components/document-detail/document-detail.component.html + 72 + + Rincian + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 76 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 77 + + Tanggal dibuat + + + Correspondent + + src/app/components/document-detail/document-detail.component.html + 79 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 40 + + + src/app/components/document-list/document-list.component.html + 137 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 36 + + + src/app/services/rest/document.service.ts + 19 + + Correspondent + + + Document type + + src/app/components/document-detail/document-detail.component.html + 81 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 51 + + + src/app/components/document-list/document-list.component.html + 158 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 44 + + + src/app/services/rest/document.service.ts + 21 + + Document type + + + Storage path + + src/app/components/document-detail/document-detail.component.html + 83 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 62 + + + src/app/components/document-list/document-list.component.html + 165 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 52 + + Storage path + + + Default + + src/app/components/document-detail/document-detail.component.html + 84 + + Bawaan + + + Content + + src/app/components/document-detail/document-detail.component.html + 91 + + Konten + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 100 + + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 17 + + Metadata + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 106 + + Tanggal dimodifikasi + + + Date added + + src/app/components/document-detail/document-detail.component.html + 110 + + Tanggal ditambahkan + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 114 + + Media filename + + + Original filename + + src/app/components/document-detail/document-detail.component.html + 118 + + Original filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 122 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 126 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 130 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 134 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 138 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 144 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 145 + + Archived document metadata + + + Preview + + src/app/components/document-detail/document-detail.component.html + 151 + + Preview + + + Enter Password + + src/app/components/document-detail/document-detail.component.html + 167 + + + src/app/components/document-detail/document-detail.component.html + 215 + + Enter Password + + + Notes + + src/app/components/document-detail/document-detail.component.html + 175,176 + + Notes + + + Discard + + src/app/components/document-detail/document-detail.component.html + 194 + + Discard + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 195 + + Save & next + + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + + + Error retrieving metadata + + src/app/components/document-detail/document-detail.component.ts + 354 + + Error retrieving metadata + + + Error retrieving suggestions + + src/app/components/document-detail/document-detail.component.ts + 374 + + Error retrieving suggestions + + + Document saved successfully. + + src/app/components/document-detail/document-detail.component.ts + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 + + Document saved successfully. + + + Error saving document + + src/app/components/document-detail/document-detail.component.ts + 497 + + + src/app/components/document-detail/document-detail.component.ts + 542 + + Error saving document + + + Confirm delete + + src/app/components/document-detail/document-detail.component.ts + 571 + + + src/app/components/manage/management-list/management-list.component.ts + 209 + + Confirm delete + + + Do you really want to delete document ""? + + src/app/components/document-detail/document-detail.component.ts + 572 + + Do you really want to delete document ""? + + + The files for this document will be deleted permanently. This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 573 + + The files for this document will be deleted permanently. This operation cannot be undone. + + + Delete document + + src/app/components/document-detail/document-detail.component.ts + 575 + + Hapus dokumen + + + Error deleting document: + + src/app/components/document-detail/document-detail.component.ts + 595,597 + + Error deleting document: + + + Redo OCR confirm + + src/app/components/document-detail/document-detail.component.ts + 618 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 499 + + Redo OCR confirm + + + This operation will permanently redo OCR for this document. + + src/app/components/document-detail/document-detail.component.ts + 619 + + This operation will permanently redo OCR for this document. + + + This operation cannot be undone. + + src/app/components/document-detail/document-detail.component.ts + 620 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 462 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 501 + + + src/app/components/manage/settings/settings.component.ts + 688 + + + src/app/components/manage/settings/settings.component.ts + 742 + + + src/app/components/manage/settings/settings.component.ts + 803 + + + src/app/components/manage/settings/settings.component.ts + 862 + + This operation cannot be undone. + + + Proceed + + src/app/components/document-detail/document-detail.component.ts + 622 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 503 + + + src/app/components/manage/settings/settings.component.ts + 690 + + + src/app/components/manage/settings/settings.component.ts + 744 + + + src/app/components/manage/settings/settings.component.ts + 805 + + + src/app/components/manage/settings/settings.component.ts + 864 + + Proceed + + + Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-detail/document-detail.component.ts + 630 + + Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + + Error executing operation: + + src/app/components/document-detail/document-detail.component.ts + 641,643 + + Error executing operation: + + + Select: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 10 + + Select: + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 27 + + Edit: + + + Filter tags + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 29 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 28 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 41 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 37 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 52 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 45 + + Filter document types + + + Filter storage paths + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 63 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 53 + + Filter storage paths + + + Actions + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 89 + + + src/app/components/manage/management-list/management-list.component.html + 23 + + + src/app/components/manage/management-list/management-list.component.html + 23 + + + src/app/components/manage/management-list/management-list.component.html + 23 + + + src/app/components/manage/management-list/management-list.component.html + 23 + + + src/app/components/manage/settings/settings.component.html + 221 + + + src/app/components/manage/settings/settings.component.html + 259 + + + src/app/components/manage/settings/settings.component.html + 296 + + + src/app/components/manage/settings/settings.component.html + 347 + + + src/app/components/manage/settings/settings.component.html + 382 + + + src/app/components/manage/tasks/tasks.component.html + 44 + + Aksi + + + Include: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 111 + + Include: + + + Archived files + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 115,117 + + Archived files + + + Original files + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 121,123 + + Original files + + + Use formatted filename + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 128,130 + + Use formatted filename + + + Error executing bulk operation: + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 185,187 + + Error executing bulk operation: + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 261 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 267 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 263 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 271,273 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 288 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 294 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 299,301 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 307 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 312,314 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 316,320 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 357 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 359 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 361 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 395 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 397 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 399 + + This operation will remove the document type from selected document(s). + + + Confirm storage path assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 433 + + Confirm storage path assignment + + + This operation will assign the storage path "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 435 + + This operation will assign the storage path "" to selected document(s). + + + This operation will remove the storage path from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 437 + + This operation will remove the storage path from selected document(s). + + + Delete confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 460 + + Delete confirm + + + This operation will permanently delete selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 461 + + This operation will permanently delete selected document(s). + + + Delete document(s) + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 464 + + Delete document(s) + + + This operation will permanently redo OCR for selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 500 + + This operation will permanently redo OCR for selected document(s). + + + Filter by correspondent + + src/app/components/document-list/document-card-large/document-card-large.component.html + 20 + + + src/app/components/document-list/document-list.component.html + 194 + + Filter by correspondent + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 24 + + + src/app/components/document-list/document-list.component.html + 199 + + Filter by tag + + + View notes + + src/app/components/document-list/document-card-large/document-card-large.component.html + 70 + + View notes + + + Notes + + src/app/components/document-list/document-card-large/document-card-large.component.html + 74 + + Notes + + + Filter by document type + + src/app/components/document-list/document-card-large/document-card-large.component.html + 76 + + + src/app/components/document-list/document-list.component.html + 212 + + Filter by document type + + + Filter by storage path + + src/app/components/document-list/document-card-large/document-card-large.component.html + 83 + + + src/app/components/document-list/document-list.component.html + 217 + + Filter by storage path + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 98,99 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 56,57 + + Created: + + + Added: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 99,100 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 57,58 + + Added: + + + Modified: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 100,101 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 58,59 + + Modified: + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 110 + + Score: + + + Toggle tag filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 14 + + Toggle tag filter + + + Toggle correspondent filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 32 + + Toggle correspondent filter + + + Toggle document type filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 39 + + Toggle document type filter + + + Toggle storage path filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 46 + + Toggle storage path filter + + + Select none + + src/app/components/document-list/document-list.component.html + 11 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 12 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 13 + + Select all + + + Sort + + src/app/components/document-list/document-list.component.html + 38 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 64 + + + src/app/components/manage/settings/settings.component.html + 199 + + Views + + + Save "" + + src/app/components/document-list/document-list.component.html + 76 + + Save "" + + + Save as... + + src/app/components/document-list/document-list.component.html + 78 + + Save as... + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 97 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 99 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 99 + + (filtered) + + + Error while loading documents + + src/app/components/document-list/document-list.component.html + 112 + + Error while loading documents + + + Sort by ASN + + src/app/components/document-list/document-list.component.html + 126 + + Sort by ASN + + + ASN + + src/app/components/document-list/document-list.component.html + 131,130 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 177 + + + src/app/services/rest/document.service.ts + 18 + + ASN + + + Sort by correspondent + + src/app/components/document-list/document-list.component.html + 133 + + Sort by correspondent + + + Sort by title + + src/app/components/document-list/document-list.component.html + 140 + + Sort by title + + + Sort by notes + + src/app/components/document-list/document-list.component.html + 147 + + Sort by notes + + + Notes + + src/app/components/document-list/document-list.component.html + 151 + + + src/app/components/manage/settings/settings.component.html + 159 + + + src/app/services/rest/document.service.ts + 25 + + Notes + + + Sort by document type + + src/app/components/document-list/document-list.component.html + 154 + + Sort by document type + + + Sort by storage path + + src/app/components/document-list/document-list.component.html + 161 + + Sort by storage path + + + Sort by created date + + src/app/components/document-list/document-list.component.html + 168 + + Sort by created date + + + Sort by added date + + src/app/components/document-list/document-list.component.html + 175 + + Sort by added date + + + Added + + src/app/components/document-list/document-list.component.html + 179 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 69 + + + src/app/services/rest/document.service.ts + 23 + + Added + + + Edit document + + src/app/components/document-list/document-list.component.html + 198 + + Edit document + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 205 + + View "" saved successfully. + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 246 + + View "" created successfully. + + + Reset filters + + src/app/components/document-list/filter-editor/filter-editor.component.html + 82 + + Reset filters + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 108,110 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 112 + + Without correspondent + + + Type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 117,119 + + Type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 121 + + Without document type + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 125,127 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 131 + + Without any tag + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 135 + + Title: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 138 + + ASN: + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 175 + + Title & content + + + Advanced search + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 180 + + Advanced search + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 186 + + More like + + + equals + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 205 + + equals + + + is empty + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 209 + + is empty + + + is not empty + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 213 + + is not empty + + + greater than + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 217 + + greater than + + + less than + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 221 + + less than + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show in sidebar + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 9 + + + src/app/components/manage/settings/settings.component.html + 216 + + Show in sidebar + + + Show on dashboard + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 10 + + + src/app/components/manage/settings/settings.component.html + 212 + + Show on dashboard + + + Filter rules error occurred while saving this view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 12 + + Filter rules error occurred while saving this view + + + The error returned was + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 13 + + The error returned was + + + Enter note + + src/app/components/document-notes/document-notes.component.html + 4 + + Enter note + + + Please enter a note. + + src/app/components/document-notes/document-notes.component.html + 5,7 + + Please enter a note. + + + Add note + + src/app/components/document-notes/document-notes.component.html + 11 + + Add note + + + Delete note + + src/app/components/document-notes/document-notes.component.html + 21 + + + src/app/components/document-notes/document-notes.component.html + 25 + + Delete note + + + Error saving note: + + src/app/components/document-notes/document-notes.component.ts + 65 + + Error saving note: + + + Error deleting note: + + src/app/components/document-notes/document-notes.component.ts + 81 + + Error deleting note: + + + correspondent + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 39 + + correspondent + + + correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 40 + + correspondents + + + Last used + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 45 + + Last used + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 55 + + Do you really want to delete the correspondent ""? + + + document type + + src/app/components/manage/document-type-list/document-type-list.component.ts + 36 + + document type + + + document types + + src/app/components/manage/document-type-list/document-type-list.component.ts + 37 + + document types + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 44 + + Do you really want to delete the document type ""? + + + Create + + src/app/components/manage/management-list/management-list.component.html + 2 + + + src/app/components/manage/management-list/management-list.component.html + 2 + + + src/app/components/manage/management-list/management-list.component.html + 2 + + + src/app/components/manage/management-list/management-list.component.html + 2 + + Create + + + Filter by: + + src/app/components/manage/management-list/management-list.component.html + 8 + + + src/app/components/manage/management-list/management-list.component.html + 8 + + + src/app/components/manage/management-list/management-list.component.html + 8 + + + src/app/components/manage/management-list/management-list.component.html + 8 + + Filter by: + + + Matching + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + Matching + + + Document count + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + Document count + + + Filter Documents + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + Filter Documents + + + {VAR_PLURAL, plural, =1 {One } other { total }} + + src/app/components/manage/management-list/management-list.component.html + 74 + + + src/app/components/manage/management-list/management-list.component.html + 74 + + + src/app/components/manage/management-list/management-list.component.html + 74 + + + src/app/components/manage/management-list/management-list.component.html + 74 + + {VAR_PLURAL, plural, =1 {One } other { total }} + + + Automatic + + src/app/components/manage/management-list/management-list.component.ts + 100 + + + src/app/data/matching-model.ts + 15 + + Automatic + + + None + + src/app/components/manage/management-list/management-list.component.ts + 102 + + + src/app/data/matching-model.ts + 45 + + None + + + Error occurred while creating : . + + src/app/components/manage/management-list/management-list.component.ts + 142 + + + src/app/components/manage/management-list/management-list.component.ts + 153,155 + + Error occurred while creating : . + + + Successfully created . + + src/app/components/manage/management-list/management-list.component.ts + 147 + + Successfully created . + + + Error occurred while saving . + + src/app/components/manage/management-list/management-list.component.ts + 174,176 + + Error occurred while saving . + + + Successfully updated . + + src/app/components/manage/management-list/management-list.component.ts + 181 + + Successfully updated . + + + Error occurred while saving : . + + src/app/components/manage/management-list/management-list.component.ts + 187,189 + + Error occurred while saving : . + + + Do you really want to delete the ? + + src/app/components/manage/management-list/management-list.component.ts + 196 + + Do you really want to delete the ? + + + Associated documents will not be deleted. + + src/app/components/manage/management-list/management-list.component.ts + 211 + + Associated documents will not be deleted. + + + Error while deleting element: + + src/app/components/manage/management-list/management-list.component.ts + 224,226 + + Error while deleting element: + + + Start tour + + src/app/components/manage/settings/settings.component.html + 2 + + Start tour + + + Open Django Admin + + src/app/components/manage/settings/settings.component.html + 4 + + Open Django Admin + + + General + + src/app/components/manage/settings/settings.component.html + 15 + + General + + + Appearance + + src/app/components/manage/settings/settings.component.html + 18 + + Appearance + + + Display language + + src/app/components/manage/settings/settings.component.html + 22 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/manage/settings/settings.component.html + 30 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/manage/settings/settings.component.html + 37 + + Date display + + + Date format + + src/app/components/manage/settings/settings.component.html + 50 + + Date format + + + Short: + + src/app/components/manage/settings/settings.component.html + 56,57 + + Short: + + + Medium: + + src/app/components/manage/settings/settings.component.html + 60,61 + + Medium: + + + Long: + + src/app/components/manage/settings/settings.component.html + 64,65 + + Long: + + + Items per page + + src/app/components/manage/settings/settings.component.html + 72 + + Items per page + + + Document editor + + src/app/components/manage/settings/settings.component.html + 88 + + Document editor + + + Use PDF viewer provided by the browser + + src/app/components/manage/settings/settings.component.html + 92 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/manage/settings/settings.component.html + 92 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Sidebar + + src/app/components/manage/settings/settings.component.html + 99 + + Sidebar + + + Use 'slim' sidebar (icons only) + + src/app/components/manage/settings/settings.component.html + 103 + + Use 'slim' sidebar (icons only) + + + Dark mode + + src/app/components/manage/settings/settings.component.html + 110 + + Dark mode + + + Use system settings + + src/app/components/manage/settings/settings.component.html + 113 + + Use system settings + + + Enable dark mode + + src/app/components/manage/settings/settings.component.html + 114 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/manage/settings/settings.component.html + 115 + + Invert thumbnails in dark mode + + + Theme Color + + src/app/components/manage/settings/settings.component.html + 121 + + Theme Color + + + Reset + + src/app/components/manage/settings/settings.component.html + 130 + + Reset + + + Update checking + + src/app/components/manage/settings/settings.component.html + 135 + + Update checking + + + Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + src/app/components/manage/settings/settings.component.html + 140,142 + + Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + + No tracking data is collected by the app in any way. + + src/app/components/manage/settings/settings.component.html + 144,146 + + No tracking data is collected by the app in any way. + + + Enable update checking + + src/app/components/manage/settings/settings.component.html + 146 + + Enable update checking + + + Note that for users of third-party containers e.g. linuxserver.io this notification may be 'ahead' of the current third-party release. + + src/app/components/manage/settings/settings.component.html + 146 + + Note that for users of third-party containers e.g. linuxserver.io this notification may be 'ahead' of the current third-party release. + + + Bulk editing + + src/app/components/manage/settings/settings.component.html + 150 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/manage/settings/settings.component.html + 154 + + Show confirmation dialogs + + + Deleting documents will always ask for confirmation. + + src/app/components/manage/settings/settings.component.html + 154 + + Deleting documents will always ask for confirmation. + + + Apply on close + + src/app/components/manage/settings/settings.component.html + 155 + + Apply on close + + + Enable notes + + src/app/components/manage/settings/settings.component.html + 163 + + Enable notes + + + Notifications + + src/app/components/manage/settings/settings.component.html + 171 + + Notifications + + + Document processing + + src/app/components/manage/settings/settings.component.html + 174 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/manage/settings/settings.component.html + 178 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/manage/settings/settings.component.html + 179 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/manage/settings/settings.component.html + 180 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/manage/settings/settings.component.html + 181 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/manage/settings/settings.component.html + 181 + + This will suppress all messages about document processing status on the dashboard. + + + Show warning when closing saved views with unsaved changes + + src/app/components/manage/settings/settings.component.html + 195 + + Show warning when closing saved views with unsaved changes + + + Appears on + + src/app/components/manage/settings/settings.component.html + 209 + + Appears on + + + No saved views defined. + + src/app/components/manage/settings/settings.component.html + 226 + + No saved views defined. + + + Mail + + src/app/components/manage/settings/settings.component.html + 240,239 + + Mail + + + Mail accounts + + src/app/components/manage/settings/settings.component.html + 245 + + Mail accounts + + + Add Account + + src/app/components/manage/settings/settings.component.html + 250 + + Add Account + + + Server + + src/app/components/manage/settings/settings.component.html + 258 + + Server + + + No mail accounts defined. + + src/app/components/manage/settings/settings.component.html + 276 + + No mail accounts defined. + + + Mail rules + + src/app/components/manage/settings/settings.component.html + 282 + + Mail rules + + + Add Rule + + src/app/components/manage/settings/settings.component.html + 287 + + Add Rule + + + No mail rules defined. + + src/app/components/manage/settings/settings.component.html + 313 + + No mail rules defined. + + + Users & Groups + + src/app/components/manage/settings/settings.component.html + 327 + + Users & Groups + + + Users + + src/app/components/manage/settings/settings.component.html + 332 + + Users + + + Add User + + src/app/components/manage/settings/settings.component.html + 337 + + Add User + + + Add Group + + src/app/components/manage/settings/settings.component.html + 372 + + Add Group + + + Saved view "" deleted. + + src/app/components/manage/settings/settings.component.ts + 475 + + Saved view "" deleted. + + + Settings saved + + src/app/components/manage/settings/settings.component.ts + 577 + + Settings saved + + + Settings were saved successfully. + + src/app/components/manage/settings/settings.component.ts + 578 + + Settings were saved successfully. + + + Settings were saved successfully. Reload is required to apply some changes. + + src/app/components/manage/settings/settings.component.ts + 582 + + Settings were saved successfully. Reload is required to apply some changes. + + + Reload now + + src/app/components/manage/settings/settings.component.ts + 583 + + Reload now + + + Use system language + + src/app/components/manage/settings/settings.component.ts + 601 + + Use system language + + + Use date format of display language + + src/app/components/manage/settings/settings.component.ts + 608 + + Use date format of display language + + + Error while storing settings on server: + + src/app/components/manage/settings/settings.component.ts + 628,630 + + Error while storing settings on server: + + + Password has been changed, you will be logged out momentarily. + + src/app/components/manage/settings/settings.component.ts + 659 + + Password has been changed, you will be logged out momentarily. + + + Saved user "". + + src/app/components/manage/settings/settings.component.ts + 666 + + Saved user "". + + + Error saving user: . + + src/app/components/manage/settings/settings.component.ts + 676 + + Error saving user: . + + + Confirm delete user account + + src/app/components/manage/settings/settings.component.ts + 686 + + Confirm delete user account + + + This operation will permanently delete this user account. + + src/app/components/manage/settings/settings.component.ts + 687 + + This operation will permanently delete this user account. + + + Deleted user + + src/app/components/manage/settings/settings.component.ts + 696 + + Deleted user + + + Error deleting user: . + + src/app/components/manage/settings/settings.component.ts + 704 + + Error deleting user: . + + + Saved group "". + + src/app/components/manage/settings/settings.component.ts + 722 + + Saved group "". + + + Error saving group: . + + src/app/components/manage/settings/settings.component.ts + 730 + + Error saving group: . + + + Confirm delete user group + + src/app/components/manage/settings/settings.component.ts + 740 + + Confirm delete user group + + + This operation will permanently delete this user group. + + src/app/components/manage/settings/settings.component.ts + 741 + + This operation will permanently delete this user group. + + + Deleted group + + src/app/components/manage/settings/settings.component.ts + 750 + + Deleted group + + + Error deleting group: . + + src/app/components/manage/settings/settings.component.ts + 758 + + Error deleting group: . + + + Saved account "". + + src/app/components/manage/settings/settings.component.ts + 781 + + Saved account "". + + + Error saving account: . + + src/app/components/manage/settings/settings.component.ts + 791 + + Error saving account: . + + + Confirm delete mail account + + src/app/components/manage/settings/settings.component.ts + 801 + + Confirm delete mail account + + + This operation will permanently delete this mail account. + + src/app/components/manage/settings/settings.component.ts + 802 + + This operation will permanently delete this mail account. + + + Deleted mail account + + src/app/components/manage/settings/settings.component.ts + 811 + + Deleted mail account + + + Error deleting mail account: . + + src/app/components/manage/settings/settings.component.ts + 820 + + Error deleting mail account: . + + + Saved rule "". + + src/app/components/manage/settings/settings.component.ts + 839 + + Saved rule "". + + + Error saving rule: . + + src/app/components/manage/settings/settings.component.ts + 850 + + Error saving rule: . + + + Confirm delete mail rule + + src/app/components/manage/settings/settings.component.ts + 860 + + Confirm delete mail rule + + + This operation will permanently delete this mail rule. + + src/app/components/manage/settings/settings.component.ts + 861 + + This operation will permanently delete this mail rule. + + + Deleted mail rule + + src/app/components/manage/settings/settings.component.ts + 870 + + Deleted mail rule + + + Error deleting mail rule: . + + src/app/components/manage/settings/settings.component.ts + 879 + + Error deleting mail rule: . + + + storage path + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 36 + + storage path + + + storage paths + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 37 + + storage paths + + + Do you really want to delete the storage path ""? + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 52 + + Do you really want to delete the storage path ""? + + + tag + + src/app/components/manage/tag-list/tag-list.component.ts + 36 + + tag + + + tags + + src/app/components/manage/tag-list/tag-list.component.ts + 37 + + tags + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 53 + + Do you really want to delete the tag ""? + + + Clear selection + + src/app/components/manage/tasks/tasks.component.html + 6 + + Clear selection + + + Refresh + + src/app/components/manage/tasks/tasks.component.html + 20 + + Refresh + + + Results + + src/app/components/manage/tasks/tasks.component.html + 42 + + Results + + + click for full output + + src/app/components/manage/tasks/tasks.component.html + 66 + + click for full output + + + Dismiss + + src/app/components/manage/tasks/tasks.component.html + 81 + + + src/app/components/manage/tasks/tasks.component.ts + 62 + + Dismiss + + + Open Document + + src/app/components/manage/tasks/tasks.component.html + 87 + + Open Document + + + Failed  + + src/app/components/manage/tasks/tasks.component.html + 105 + + Failed  + + + Complete  + + src/app/components/manage/tasks/tasks.component.html + 111 + + Complete  + + + Started  + + src/app/components/manage/tasks/tasks.component.html + 117 + + Started  + + + Queued  + + src/app/components/manage/tasks/tasks.component.html + 123 + + Queued  + + + Dismiss selected + + src/app/components/manage/tasks/tasks.component.ts + 26 + + Dismiss selected + + + Dismiss all + + src/app/components/manage/tasks/tasks.component.ts + 27 + + + src/app/components/manage/tasks/tasks.component.ts + 60 + + Dismiss all + + + Confirm Dismiss All + + src/app/components/manage/tasks/tasks.component.ts + 58 + + Confirm Dismiss All + + + tasks? + + src/app/components/manage/tasks/tasks.component.ts + 60 + + tasks? + + + 404 Not Found + + src/app/components/not-found/not-found.component.html + 7 + + 404 Not Found + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 16 + + Auto: Learn matching automatically + + + Any word + + src/app/data/matching-model.ts + 20 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 21 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 25 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 26 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 30 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 31 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 35 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 36 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 40 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 41 + + Fuzzy: Document contains a word similar to this word + + + None: Disable matching + + src/app/data/matching-model.ts + 46 + + None: Disable matching + + + Warning: You have unsaved changes to your document(s). + + src/app/guards/dirty-doc.guard.ts + 17 + + Warning: You have unsaved changes to your document(s). + + + Unsaved Changes + + src/app/guards/dirty-form.guard.ts + 17 + + + src/app/guards/dirty-saved-view.guard.ts + 32 + + + src/app/services/open-documents.service.ts + 104 + + + src/app/services/open-documents.service.ts + 131 + + Unsaved Changes + + + You have unsaved changes. + + src/app/guards/dirty-form.guard.ts + 18 + + + src/app/services/open-documents.service.ts + 132 + + You have unsaved changes. + + + Are you sure you want to leave? + + src/app/guards/dirty-form.guard.ts + 19 + + Are you sure you want to leave? + + + Leave page + + src/app/guards/dirty-form.guard.ts + 21 + + Leave page + + + You have unsaved changes to the saved view + + src/app/guards/dirty-saved-view.guard.ts + 34 + + You have unsaved changes to the saved view + + + Are you sure you want to close this saved view? + + src/app/guards/dirty-saved-view.guard.ts + 38 + + Are you sure you want to close this saved view? + + + Save and close + + src/app/guards/dirty-saved-view.guard.ts + 42 + + Save and close + + + You don't have permissions to do that + + src/app/guards/permissions.guard.ts + 35 + + You don't have permissions to do that + + + (no title) + + src/app/pipes/document-title.pipe.ts + 11 + + (no title) + + + Yes + + src/app/pipes/yes-no.pipe.ts + 8 + + Yes + + + No + + src/app/pipes/yes-no.pipe.ts + 8 + + No + + + Document already exists. + + src/app/services/consumer-status.service.ts + 15 + + Document already exists. + + + Document with ASN already exists. + + src/app/services/consumer-status.service.ts + 16 + + Document with ASN already exists. + + + File not found. + + src/app/services/consumer-status.service.ts + 17 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/consumer-status.service.ts + 18 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/consumer-status.service.ts + 19 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/consumer-status.service.ts + 20 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/consumer-status.service.ts + 21 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/consumer-status.service.ts + 22 + + Received new file. + + + File type not supported. + + src/app/services/consumer-status.service.ts + 23 + + File type not supported. + + + Processing document... + + src/app/services/consumer-status.service.ts + 24 + + Processing document... + + + Generating thumbnail... + + src/app/services/consumer-status.service.ts + 25 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/consumer-status.service.ts + 26 + + Retrieving date from document... + + + Saving document... + + src/app/services/consumer-status.service.ts + 27 + + Saving document... + + + Finished. + + src/app/services/consumer-status.service.ts + 28 + + Finished. + + + You have unsaved changes to the document + + src/app/services/open-documents.service.ts + 106 + + You have unsaved changes to the document + + + Are you sure you want to close this document? + + src/app/services/open-documents.service.ts + 110 + + Are you sure you want to close this document? + + + Close document + + src/app/services/open-documents.service.ts + 112 + + Close document + + + Are you sure you want to close all documents? + + src/app/services/open-documents.service.ts + 133 + + Are you sure you want to close all documents? + + + Close documents + + src/app/services/open-documents.service.ts + 135 + + Close documents + + + Modified + + src/app/services/rest/document.service.ts + 24 + + Modified + + + Search score + + src/app/services/rest/document.service.ts + 32 + + Score is a value returned by the full text search engine and specifies how well a result matches the given query + Search score + + + English (US) + + src/app/services/settings.service.ts + 159 + + English (US) + + + Arabic + + src/app/services/settings.service.ts + 165 + + Arabic + + + Belarusian + + src/app/services/settings.service.ts + 171 + + Belarusian + + + Czech + + src/app/services/settings.service.ts + 177 + + Czech + + + Danish + + src/app/services/settings.service.ts + 183 + + Danish + + + German + + src/app/services/settings.service.ts + 189 + + German + + + English (GB) + + src/app/services/settings.service.ts + 195 + + English (GB) + + + Spanish + + src/app/services/settings.service.ts + 201 + + Spanish + + + French + + src/app/services/settings.service.ts + 207 + + French + + + Italian + + src/app/services/settings.service.ts + 213 + + Italian + + + Luxembourgish + + src/app/services/settings.service.ts + 219 + + Luxembourgish + + + Dutch + + src/app/services/settings.service.ts + 225 + + Dutch + + + Polish + + src/app/services/settings.service.ts + 231 + + Polish + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 237 + + Portuguese (Brazil) + + + Portuguese + + src/app/services/settings.service.ts + 243 + + Portuguese + + + Romanian + + src/app/services/settings.service.ts + 249 + + Romanian + + + Russian + + src/app/services/settings.service.ts + 255 + + Russian + + + Slovenian + + src/app/services/settings.service.ts + 261 + + Slovenian + + + Serbian + + src/app/services/settings.service.ts + 267 + + Serbian + + + Swedish + + src/app/services/settings.service.ts + 273 + + Swedish + + + Turkish + + src/app/services/settings.service.ts + 279 + + Turkish + + + Chinese Simplified + + src/app/services/settings.service.ts + 285 + + Chinese Simplified + + + ISO 8601 + + src/app/services/settings.service.ts + 302 + + ISO 8601 + + + Successfully completed one-time migratration of settings to the database! + + src/app/services/settings.service.ts + 413 + + Successfully completed one-time migratration of settings to the database! + + + Unable to migrate settings to the database, please try saving manually. + + src/app/services/settings.service.ts + 414 + + Unable to migrate settings to the database, please try saving manually. + + + Information + + src/app/services/toast.service.ts + 43 + + Information + + + Connecting... + + src/app/services/upload-documents.service.ts + 33 + + Connecting... + + + Uploading... + + src/app/services/upload-documents.service.ts + 45 + + Uploading... + + + Upload complete, waiting... + + src/app/services/upload-documents.service.ts + 48 + + Upload complete, waiting... + + + HTTP error: + + src/app/services/upload-documents.service.ts + 64 + + HTTP error: + + + + diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 2ef23d290..4e3fd5035 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 L'elenco dei documenti mostra tutti i tuoi documenti e consente di filtrarli e modificarli in blocco. Ci sono tre stili di visualizzazione diversi: elenco, carte piccole e carte grandi. Un elenco di documenti attualmente aperti per la modifica è mostrato nella barra laterale. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Gli strumenti di filtraggio ti consentono di trovare rapidamente documenti utilizzando vari termini di ricerca, date, tag, ecc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Qualsiasi combinazione di filtri può essere salvata come 'vista' che può essere visualizzata sulla dashboard e/o nella barra laterale. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tag, corrispondenti, tipi di documenti e percorsi di archiviazione possono essere gestiti utilizzando queste pagine. Possono anche essere creati dalla vista di modifica dei documenti. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Le Attività File mostrano i documenti che sono stati consumati, sono in attesa di esserlo, o possano aver portato a un fallimento durante l'Attività. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Controlla le impostazioni per svariate modifiche all'app web, per attivare o disattivare le impostazioni per le viste salvate o impostare il filtraggio delle email. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Grazie! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 Ci sono <em>tonnellate</em> di caratteristiche e informazioni che non abbiamo coperto qui, ma questo dovrebbe essere abbastanza per cominciare. Consulta la documentazione o visita il progetto su GitHub per saperne di più o per segnalare problemi. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Infine, a nome di ogni collaboratore di questo progetto supportato dalla comunità, grazie per utilizzare Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Avvio caricamento... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Salva e vai al prossimo + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Errore nel recupero dei metadati @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Errore nel recupero dei suggerimenti @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Errore nel salvare il documento @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Vuoi eliminare il documento ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 I file di questo documento saranno eliminati permanentemente. Questa operazione è irreversibile. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Elimina documento - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Errore nell'eliminazione del documento: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Questa operazione effettuerà la rilettura OCR di questo documento. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Errore nell'esecuzione dell'operazione: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 Non hai permessi per farlo diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index b10804f02..0694ed0e8 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Merci! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Upload fänkt un... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Späicheren a weider + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Wëllt Dir d'Dokument "" wierklech läschen? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 D'Fichiere fir dëst Dokument gi permanent geläscht. Dës Operatioun kann net réckgängeg gemaach ginn. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Dokument läschen - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Feeler beim Läsche vum Dokument: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 826f7df40..96a6f293d 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 De documentenlijst toont al uw documenten en maakt zowel filteren als bulkbewerkingen mogelijk. Er zijn drie verschillende weergavestijlen: lijst, kleine kaarten en grote kaarten. In de zijbalk wordt een lijst weergegeven met documenten die momenteel zijn geopend voor bewerking. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Met de filtertools kunt u snel documenten vinden met behulp van verschillende zoekopdrachten, datums, labels, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Een combinatie van filters kan worden opgeslagen als een 'weergave' die vervolgens op het dashboard en/of de zijbalk kan worden getoond. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Labels, correspondenten, documenttypen en opslagpaden kunnen allemaal worden beheerd met behulp van deze pagina's. Ze kunnen ook worden aangemaakt vanuit de weergave voor documentbewerkingen. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Bestandstaken toont documenten die zijn verwerkt, wachten daarop, of zijn mislukt tijdens het proces. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Bekijk de instellingen voor verschillende aanpassingen aan de webapp, wijzig instellingen voor opgeslagen weergaven of stel e-mailcontrole in. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Bedankt! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 Er zijn nog <em>veel</em> meer functies en informatie die we hier niet hebben behandeld, maar dit zou je op weg moeten helpen. Bekijk de documentatie of bezoek het project op GitHub voor meer informatie of om problemen te melden. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Ten slotte, namens elke bijdrager aan dit community ondersteund project, bedankt voor het gebruik van Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Upload starten... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Opslaan & volgende + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Fout bij ophalen metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Fout bij ophalen suggesties @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Fout bij opslaan document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Wilt u het document echt verwijderen ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 De bestanden voor dit document worden definitief verwijderd. Deze bewerking kan niet ongedaan worden gemaakt. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Verwijder document - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Fout bij het verwijderen van het document: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Met deze bewerking wordt OCR permanent opnieuw uitgevoerd voor dit document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Opnieuw uitvoeren van OCR-bewerking begint op de achtergrond. Sluit en heropen of herlaad dit document nadat de bewerking is voltooid om nieuwe inhoud te zien. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Fout tijdens uitvoeren bewerking: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 Je hebt geen rechten om dat te doen diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index d9c47751a..06fc877a3 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 Dokumentlisten viser alle dokumentene dine og tillater filtrering i tillegg til masseredigering. Det finnes tre forskjellige visningsstiler: liste, små kort og store kort. En liste over dokumenter som er åpnet for redigering vises i sidepanelet. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Tusen takk! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Starter opplasting... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Lagre & Avslutt + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Ønsker du virkelig å slette dokumentet ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Filene til dokumentet vil bli slettet permanent. Denne operasjonen kan ikke angres. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Slett dokument - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Feil ved sletting av dokument: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Denne operasjonen vil permanent gjenta OCR for dette dokumentet. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 93ea09f4e..718dbd13a 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tagi, korespondenci, typy dokumentów i ścieżki przechowywania danych mogą być zarządzane za pomocą tych stron. Mogą być również tworzone z widoku edycji dokumentu. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Sprawdź ustawienia dla różnych ulepszeń aplikacji webowej, zmień ustawienia dla zapisanych widoków lub skonfiguruj sprawdzanie skrzynki pocztowej. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Dziękujemy! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Rozpoczęcie wysyłania... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Zapisz & następny + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Czy na pewno chcesz usunąć dokument""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Pliki tego dokumentu zostaną trwale usunięte. Tej operacji nie można cofnąć. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Usuń dokument - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Błąd podczas usuwania dokumentu: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index e7a4fe1b5..cec939649 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Obrigado! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Iniciando o upload... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Salvar & próximo + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Erro ao recuperar metadados @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Erro ao recuperar sugestões @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Erro ao salvar documento @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Você realmente deseja excluir o documento ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Os arquivos desse documento serão excluídos permanentemente. Essa operação não pode ser revertida. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Excluir documento - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Erro ao excluir documento: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Esta operação irá refazer o OCR permanentemente para este documento. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 Você não tem permissão para fazer isso diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index bdd6233ad..e113715b5 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Obrigado! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 A iniciar o carregamento... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Guardar & próximo + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Tem a certeza que quer apagar o documento ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Os ficheiros deste documento serão excluídos permanentemente. Esta operação não pode ser revertida. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Apagar documento - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Erro ao apagar documento: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 653ea179e..a94a3e0f4 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Thank you! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Initiating upload... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Salvează și continuă + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Sunteţi sigur că doriţi să ştergeţi documentul ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Fișierele pentru acest document vor fi șterse permanent. Operațiunea este ireversibila. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Șterge document - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Eroare la ștergerea documentului: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 74a247ac6..30123ce09 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 Список документов отображает все ваши документы и позволяет фильтровать их, а также производить массовое редактирование. Есть три различных стиля просмотра: список, маленькие карты и большие карты. Список открытых для редактирования документов показан в боковой панели. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Инструменты фильтрации позволяют быстро находить документы, используя различные поисковые запросы, даты, теги и прочее. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Любая комбинация фильтров может быть сохранена как «представление», которое затем может быть отображено на панели инструментов и/или в боковой панели. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Теги, корреспонденты, типы документов и пути хранения можно редактировать с помощью этих страниц. Они также могут быть созданы из страницы редактирования документа. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Файловые задачи показывают документы, которые были импортированы, ожидают или были импортированы с ошибкой. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Просматривайте различные настройки приложения, настраивайте представления или электронную почту. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Спасибо! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 Есть <em>множество</em> других функций и возможностей, которые мы не рассмотрели, но этого должно быть достаточно для начала. Посмотрите документацию или посетите проект на GitHub, чтобы узнать больше или сообщить о проблемах. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Наконец, от имени каждого участника этого поддерживаемого сообществом проекта, благодарим вас за использование Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Начинается загрузка... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Сохранить & следующий + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Ошибка при получении метаданных @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Ошибка при получении предложений @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Ошибка при сохранении документа @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Вы действительно хотите удалить документ ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Файлы из этого документа будут удалены незамедлительно. Это операцию нельзя отменить. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Удалить документ - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Ошибка удаления документа: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Это действие перезапишет результаты распознавания текста для этого документа. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Операция повторного распознавания начнется в фоновом режиме. Закройте и повторно откройте или перезагрузите этот документ после завершения операции, чтобы увидеть новое содержимое. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Ошибка выполнения операции: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 У вас нет разрешения на выполнение этого действия diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index f0046f378..f4fd98558 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Thank you! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Začetek nalaganja... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Shrani & naslednjo + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Ali res želite izbrisati dokument ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Datoteke za ta dokument bodo trajno izbrisane. Te operacije ni mogoče razveljaviti. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Izbriši dokument - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Napaka pri brisanju dokumenta: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Ta izbira bo permanentno izvedla ponovni OCR na tem dokumentu. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Napaka pri izvajanju operacije: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 51287ddbb..3f468f40c 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 Lista dokumenata prikazuje sve vaše dokumente i omogućava filtriranje kao i grupno uređivanje. Postoje tri različita stila prikaza: lista, male kartice i velike kartice. Na bočnoj traci je prikazana lista dokumenata koji su trenutno otvoreni za uređivanje. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Alati za filtriranje vam omogućavaju da brzo pronađete dokumente koristeći različite pretrage, datume, oznake itd. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Bilo koja kombinacija filtera se može sačuvati kao 'pogled' koji se zatim može prikazati na kontrolnoj tabli i/ili bočnoj traci. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Oznake, korespodenti, tipovi dokumenata i putanje skladištenja svi se mogu se uređivati pomoću ovih stranica. Takođe se mogu kreirati iz prikaza za uređivanje dokumenta. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Obrada dokumenata vam prikazuje dokumenta koja su obrađena, čekaju da budu obrađena ili možda nisu uspešno obrađena. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Proverite podešavanja za različita podešavanja veb aplikacije, uključili podešavanja za sačuvane poglede ili podesite proveru elektronske pošte. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Hvala vam! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 Ima <em>tona</em> više funkcija i informacija koje ovde nismo pokrili, ali ovo bi trebalo da vas pokrene. Pogledajte dokumentaciju ili posetite projekat na GitHub-u da biste saznali više ili prijavili probleme. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Na kraju, u ime svih koji doprinose ovom projektu koji podržava zajednica, hvala vam što koristite Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Pokretanje otpremanja... @@ -1333,7 +1333,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Password is token + Lozinka je token Check if the password above is a token used for authentication @@ -1341,7 +1341,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Check if the password above is a token used for authentication + Proverite da li je gornja lozinka token koji se koristi za autentifikaciju Character Set @@ -1401,7 +1401,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 32 - Test + Test No encryption @@ -1449,7 +1449,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 88 - Successfully connected to the mail server + Uspešno povezano na mejl server Unable to connect to the mail server @@ -1457,7 +1457,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 89 - Unable to connect to the mail server + Nije moguće povezivanje sa mejl serverom Account @@ -1549,7 +1549,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 21 - Filter to + Filtriraj po Filter subject @@ -2069,7 +2069,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 24 - Include + Uključi Exclude @@ -2077,7 +2077,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Exclude + Isključi Apply @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2287,7 +2287,7 @@ src/app/components/common/tag/tag.component.html 8 - Private + Privatno Add tag @@ -2357,7 +2357,7 @@ src/app/components/common/permissions-select/permissions-select.component.ts 62 - Inherited from group + Nasleđeno iz grupe Select @@ -2473,7 +2473,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Go to inbox + Idi u prijemno sanduče Documents in inbox @@ -2481,7 +2481,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 5 - Documents in inbox + Dokumenta u prijemnom sandučetu Go to documents @@ -2489,7 +2489,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 8 - Go to documents + Idi u dokumenta Total documents @@ -2497,7 +2497,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 9 - Total documents + Ukupno dokumenata Total characters @@ -2505,7 +2505,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 13 - Total characters + Ukupno karaktera Other @@ -2513,7 +2513,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts 55 - Other + Ostalo Upload new documents @@ -2968,7 +2968,7 @@ src/app/components/document-detail/document-detail.component.html 175,176 - Notes + Beleške Discard @@ -2986,11 +2986,19 @@ Sačuvaj & sledeći + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + Greške se pojavila prilikom učitavanja sadržaja: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Greška pri preuzimanju metapodataka @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Greška pri preuzimanju predloga @@ -3006,19 +3014,23 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 - Document saved successfully. + + src/app/components/document-detail/document-detail.component.ts + 492 + + Dokument je uspešno sačuvan. Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Greška prilikom čuvanja dokumenta @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Da li stvarno želite da obrišite dokument ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Fajlovi za ovaj dokument će biti trajno obrisani. Ova operacija se ne može opozvati. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Obriši dokument - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Greška prilikom brisanja dokumenta: + Greška prilikom brisanja dokumenta: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 Ova će operacija trajno ponoviti OCR za ovaj dokument. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Ponovna OCR operacija će početi u pozadini. Zatvorite i ponovo otvorite ili ponovo učitajte ovaj dokument nakon što se operacija završi da biste videli novi sadržaj. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Greška pri izvršavanju operacije: @@ -3526,7 +3538,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 70 - View notes + Pregled beleški Notes @@ -3534,7 +3546,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 74 - Notes + Beleške Filter by document type @@ -3734,7 +3746,7 @@ src/app/components/document-list/document-list.component.html 126 - Sort by ASN + Sortiraj po ASN ASN @@ -3758,7 +3770,7 @@ src/app/components/document-list/document-list.component.html 133 - Sort by correspondent + Sortiraj po korespodentu Sort by title @@ -3766,7 +3778,7 @@ src/app/components/document-list/document-list.component.html 140 - Sort by title + Sortiraj po naslovu Sort by notes @@ -3774,7 +3786,7 @@ src/app/components/document-list/document-list.component.html 147 - Sort by notes + Sortiraj po beleškama Notes @@ -3790,7 +3802,7 @@ src/app/services/rest/document.service.ts 25 - Notes + Beleške Sort by document type @@ -3798,7 +3810,7 @@ src/app/components/document-list/document-list.component.html 154 - Sort by document type + Sortiraj po tipu dokumenata Sort by storage path @@ -3806,7 +3818,7 @@ src/app/components/document-list/document-list.component.html 161 - Sort by storage path + Sortiraj po putanji skladišta Sort by created date @@ -3814,7 +3826,7 @@ src/app/components/document-list/document-list.component.html 168 - Sort by created date + Sortiraj po datumu kreiranja Sort by added date @@ -3822,7 +3834,7 @@ src/app/components/document-list/document-list.component.html 175 - Sort by added date + Sortiraj po datumu dodavanja Added @@ -4054,7 +4066,7 @@ src/app/components/document-notes/document-notes.component.html 4 - Enter note + Unesi belešku Please enter a note. @@ -4062,7 +4074,7 @@ src/app/components/document-notes/document-notes.component.html 5,7 - Please enter a note. + Molimo unesite belešku. Add note @@ -4070,7 +4082,7 @@ src/app/components/document-notes/document-notes.component.html 11 - Add note + Dodaj belešku Delete note @@ -4082,7 +4094,7 @@ src/app/components/document-notes/document-notes.component.html 25 - Delete note + Obriši belešku Error saving note: @@ -4090,7 +4102,7 @@ src/app/components/document-notes/document-notes.component.ts 65 - Error saving note: + Greška prilikom čuvanja beleške: Error deleting note: @@ -4098,7 +4110,7 @@ src/app/components/document-notes/document-notes.component.ts 81 - Error deleting note: + Greška prilikom brisanje beleške: correspondent @@ -4298,7 +4310,7 @@ src/app/data/matching-model.ts 45 - None + Nijedan Error occurred while creating : . @@ -4310,7 +4322,7 @@ src/app/components/manage/management-list/management-list.component.ts 153,155 - Error occurred while creating : . + Došlo je do greške pri kreiranju : . Successfully created . @@ -4326,7 +4338,7 @@ src/app/components/manage/management-list/management-list.component.ts 174,176 - Error occurred while saving . + Došlo je do greške pri čuvanju . Successfully updated . @@ -4342,7 +4354,7 @@ src/app/components/manage/management-list/management-list.component.ts 187,189 - Error occurred while saving : . + Došlo je do greške pri čuvanju : . Do you really want to delete the ? @@ -4630,7 +4642,7 @@ src/app/components/manage/settings/settings.component.html 163 - Enable notes + Omogući beleške Notifications @@ -4878,7 +4890,7 @@ src/app/components/manage/settings/settings.component.ts 659 - Password has been changed, you will be logged out momentarily. + Lozinka je promenjena, bićete odjavljeni trenutno. Saved user "". @@ -4910,7 +4922,7 @@ src/app/components/manage/settings/settings.component.ts 687 - This operation will permanently delete this user account. + Ova operacija će trajno obrisati ovaj korisnički nalog. Deleted user @@ -4958,7 +4970,7 @@ src/app/components/manage/settings/settings.component.ts 741 - This operation will permanently delete this user group. + Ova operacija će trajno obrisati ovu korisničku grupu. Deleted group @@ -5342,7 +5354,7 @@ src/app/data/matching-model.ts 46 - None: Disable matching + Nijedan: Onemogućite podudaranje Warning: You have unsaved changes to your document(s). @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 Nemate dozvole da uradite to diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 8b769f8c7..dba138e52 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 Dokumentlistan visar alla dina dokument och möjliggör filtrering samt massredigering. Det finns tre olika vystilar: lista, små kort och stora kort. En lista med dokument som för närvarande är öppna för redigering visas i sidofältet. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Med filtreringsverktygen kan du snabbt hitta dokument med hjälp av olika sökningar, datum, taggar osv. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 En kombination av filter kan sparas som en "vy" som sedan kan visas på instrumentpanelen och/eller i sidofältet. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Taggar, korrespondenter, dokumenttyper och lagringsplatser kan alla hanteras med hjälp av dessa sidor. De kan också skapas från dokumentredigeringsvyn. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Filuppgifter visar dokument som har behandlats, väntar på att bli behandlade, eller där fel uppstått vid behandling. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Kolla in inställningarna för olika inställningar till webbappen, växla inställningar för sparade vyer eller konfigurering av e-postkontroll. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Tack! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 Det finns <em>massor</em> av funktioner och information som vi inte täckte här, men detta bör ge dig hjälp på traven. Läs dokumentationen eller besök projektet på GitHub om du vill lära dig mer eller rapportera problem. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Till sist, från alla oss som bidragit till detta gemenskapsstödda projekt, tack för att du använder Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Initiating upload... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Spara & nästa + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 Vill du verkligen ta bort dokumentet ""? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Filerna för detta dokument kommer att raderas permanent. Den här åtgärden kan inte ångras. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Ta bort dokument - - Error deleting document: + + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - Fel vid borttagning av dokument: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index 250d3f3c5..4e9aae447 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Thank you! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 Initiating upload... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ Kaydet & sonraki + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 "" olan belgeyi gerçekten silmek istiyormusunuz? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 Bu belgeye ait dosyalar kalıcı olarak siliniecektir. Bu işlem geri alınamaz. @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 Belgeyi sil - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - belgeyi silerken hata + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index d8ac036cc..6cd843b52 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -394,7 +394,7 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -402,7 +402,7 @@ The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -410,7 +410,7 @@ Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -418,7 +418,7 @@ Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -426,7 +426,7 @@ File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -434,7 +434,7 @@ Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -442,7 +442,7 @@ Thank you! 🙏 src/app/app.component.ts - 222 + 229 Thank you! 🙏 @@ -450,7 +450,7 @@ There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -458,7 +458,7 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -466,7 +466,7 @@ Initiating upload... src/app/app.component.ts - 281 + 288 正在初始化上传... @@ -2277,7 +2277,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2986,11 +2986,19 @@ 保存 & 下一个 + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 226,228 + + An error occurred loading content: + Error retrieving metadata src/app/components/document-detail/document-detail.component.ts - 341 + 354 Error retrieving metadata @@ -2998,7 +3006,7 @@ Error retrieving suggestions src/app/components/document-detail/document-detail.component.ts - 361 + 374 Error retrieving suggestions @@ -3006,7 +3014,11 @@ Document saved successfully. src/app/components/document-detail/document-detail.component.ts - 478 + 484 + + + src/app/components/document-detail/document-detail.component.ts + 492 Document saved successfully. @@ -3014,11 +3026,11 @@ Error saving document src/app/components/document-detail/document-detail.component.ts - 483 + 497 src/app/components/document-detail/document-detail.component.ts - 528 + 542 Error saving document @@ -3026,7 +3038,7 @@ Confirm delete src/app/components/document-detail/document-detail.component.ts - 557 + 571 src/app/components/manage/management-list/management-list.component.ts @@ -3038,7 +3050,7 @@ Do you really want to delete document ""? src/app/components/document-detail/document-detail.component.ts - 558 + 572 您真的想要删除文档 “” 吗? @@ -3046,7 +3058,7 @@ The files for this document will be deleted permanently. This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 559 + 573 此文档的文件将被永久删除。此操作无法撤消。 @@ -3054,23 +3066,23 @@ Delete document src/app/components/document-detail/document-detail.component.ts - 561 + 575 删除文档 - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 577 + 595,597 - 删除文档时出错: + Error deleting document: Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 597 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3082,7 +3094,7 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 598 + 619 This operation will permanently redo OCR for this document. @@ -3090,7 +3102,7 @@ This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 599 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3122,7 +3134,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 601 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -3150,7 +3162,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 609 + 630 Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3158,7 +3170,7 @@ Error executing operation: src/app/components/document-detail/document-detail.component.ts - 620,622 + 641,643 Error executing operation: @@ -5428,7 +5440,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 You don't have permissions to do that diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po new file mode 100644 index 000000000..94832f7a0 --- /dev/null +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -0,0 +1,914 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ngx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-03-03 19:15+0000\n" +"PO-Revision-Date: 2023-04-15 16:17\n" +"Last-Translator: \n" +"Language-Team: Catalan\n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: paperless-ngx\n" +"X-Crowdin-Project-ID: 500308\n" +"X-Crowdin-Language: ca\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 14\n" + +#: documents/apps.py:9 +msgid "Documents" +msgstr "Documents" + +#: documents/models.py:36 +msgid "None" +msgstr "Cap" + +#: documents/models.py:37 +msgid "Any word" +msgstr "Qualsevol paraula" + +#: documents/models.py:38 +msgid "All words" +msgstr "Totes paraules" + +#: documents/models.py:39 +msgid "Exact match" +msgstr "Coincidència exacte" + +#: documents/models.py:40 +msgid "Regular expression" +msgstr "Expressió Regular" + +#: documents/models.py:41 +msgid "Fuzzy word" +msgstr "Paraula difusa" + +#: documents/models.py:42 +msgid "Automatic" +msgstr "Automàtic" + +#: documents/models.py:45 documents/models.py:394 paperless_mail/models.py:17 +#: paperless_mail/models.py:89 +msgid "name" +msgstr "nom" + +#: documents/models.py:47 +msgid "match" +msgstr "coincidència" + +#: documents/models.py:50 +msgid "matching algorithm" +msgstr "algoritme coincident" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "no distingeix entre majúscules i minúscules" + +#: documents/models.py:71 +msgid "owner" +msgstr "propietari" + +#: documents/models.py:81 documents/models.py:136 +msgid "correspondent" +msgstr "corresponsal" + +#: documents/models.py:82 +msgid "correspondents" +msgstr "corresponsals" + +#: documents/models.py:87 +msgid "color" +msgstr "color" + +#: documents/models.py:90 +msgid "is inbox tag" +msgstr "etiqueta entrada" + +#: documents/models.py:93 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "Marca aquesta etiqueta com a etiqueta de safata d'entrada: tots els documents consumits s'etiquetaran amb etiquetes d'entrada." + +#: documents/models.py:99 +msgid "tag" +msgstr "etiqueta" + +#: documents/models.py:100 documents/models.py:174 +msgid "tags" +msgstr "etiquetes" + +#: documents/models.py:105 documents/models.py:156 +msgid "document type" +msgstr "tipus document" + +#: documents/models.py:106 +msgid "document types" +msgstr "tipus document" + +#: documents/models.py:111 +msgid "path" +msgstr "camí" + +#: documents/models.py:117 documents/models.py:145 +msgid "storage path" +msgstr "ruta emmagatzematge" + +#: documents/models.py:118 +msgid "storage paths" +msgstr "rutes emmagatzematge" + +#: documents/models.py:126 +msgid "Unencrypted" +msgstr "No Encriptat" + +#: documents/models.py:127 +msgid "Encrypted with GNU Privacy Guard" +msgstr "Xifrat amb GNU Privacy Guard" + +#: documents/models.py:148 +msgid "title" +msgstr "títol" + +#: documents/models.py:160 documents/models.py:624 +msgid "content" +msgstr "contingut" + +#: documents/models.py:163 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "Les dades en brut del document només és text. Aquest camp s'utilitza principalment per a la cerca." + +#: documents/models.py:168 +msgid "mime type" +msgstr "topus mimètic" + +#: documents/models.py:178 +msgid "checksum" +msgstr "checksum" + +#: documents/models.py:182 +msgid "The checksum of the original document." +msgstr "Checksum del document original." + +#: documents/models.py:186 +msgid "archive checksum" +msgstr "arxiva checksum" + +#: documents/models.py:191 +msgid "The checksum of the archived document." +msgstr "El checksum del document arxivat." + +#: documents/models.py:194 documents/models.py:376 documents/models.py:630 +msgid "created" +msgstr "creat" + +#: documents/models.py:197 +msgid "modified" +msgstr "modificat" + +#: documents/models.py:204 +msgid "storage type" +msgstr "tipus emmagatzematge" + +#: documents/models.py:212 +msgid "added" +msgstr "afegit" + +#: documents/models.py:219 +msgid "filename" +msgstr "nom arxiu" + +#: documents/models.py:225 +msgid "Current filename in storage" +msgstr "Nom arxiu a emmagatzematge" + +#: documents/models.py:229 +msgid "archive filename" +msgstr "nom arxiu arxivat" + +#: documents/models.py:235 +msgid "Current archive filename in storage" +msgstr "Nom arxiu arxivat a emmagatzematge" + +#: documents/models.py:239 +msgid "original filename" +msgstr "nom arxiu original" + +#: documents/models.py:245 +msgid "The original name of the file when it was uploaded" +msgstr "El nom original del fitxer quan es va pujar" + +#: documents/models.py:252 +msgid "archive serial number" +msgstr "número de sèrie de l'arxiu" + +#: documents/models.py:262 +msgid "The position of this document in your physical document archive." +msgstr "Posició d'aquest document al vostre arxiu físic de documents." + +#: documents/models.py:268 documents/models.py:641 +msgid "document" +msgstr "document" + +#: documents/models.py:269 +msgid "documents" +msgstr "documents" + +#: documents/models.py:359 +msgid "debug" +msgstr "depura" + +#: documents/models.py:360 +msgid "information" +msgstr "informació" + +#: documents/models.py:361 +msgid "warning" +msgstr "alerta" + +#: documents/models.py:362 paperless_mail/models.py:276 +msgid "error" +msgstr "error" + +#: documents/models.py:363 +msgid "critical" +msgstr "crític" + +#: documents/models.py:366 +msgid "group" +msgstr "grup" + +#: documents/models.py:368 +msgid "message" +msgstr "missatge" + +#: documents/models.py:371 +msgid "level" +msgstr "nivell" + +#: documents/models.py:380 +msgid "log" +msgstr "log" + +#: documents/models.py:381 +msgid "logs" +msgstr "logs" + +#: documents/models.py:391 documents/models.py:446 +msgid "saved view" +msgstr "vista guardada" + +#: documents/models.py:392 +msgid "saved views" +msgstr "vistes guardades" + +#: documents/models.py:397 +msgid "show on dashboard" +msgstr "mostra al panell" + +#: documents/models.py:400 +msgid "show in sidebar" +msgstr "mostra barra lateral" + +#: documents/models.py:404 +msgid "sort field" +msgstr "camp ordenació" + +#: documents/models.py:409 +msgid "sort reverse" +msgstr "ordenament invers" + +#: documents/models.py:414 +msgid "title contains" +msgstr "títol conté" + +#: documents/models.py:415 +msgid "content contains" +msgstr "contingut conté" + +#: documents/models.py:416 +msgid "ASN is" +msgstr "ASN és" + +#: documents/models.py:417 +msgid "correspondent is" +msgstr "corresponsal és" + +#: documents/models.py:418 +msgid "document type is" +msgstr "tipus document és" + +#: documents/models.py:419 +msgid "is in inbox" +msgstr "està safata entrada" + +#: documents/models.py:420 +msgid "has tag" +msgstr "té etiqueta" + +#: documents/models.py:421 +msgid "has any tag" +msgstr "qualsevol etiqueta" + +#: documents/models.py:422 +msgid "created before" +msgstr "creat abans" + +#: documents/models.py:423 +msgid "created after" +msgstr "creat després" + +#: documents/models.py:424 +msgid "created year is" +msgstr "any creació és" + +#: documents/models.py:425 +msgid "created month is" +msgstr "" + +#: documents/models.py:426 +msgid "created day is" +msgstr "" + +#: documents/models.py:427 +msgid "added before" +msgstr "" + +#: documents/models.py:428 +msgid "added after" +msgstr "" + +#: documents/models.py:429 +msgid "modified before" +msgstr "" + +#: documents/models.py:430 +msgid "modified after" +msgstr "" + +#: documents/models.py:431 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:432 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:433 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:434 +msgid "fulltext query" +msgstr "" + +#: documents/models.py:435 +msgid "more like this" +msgstr "" + +#: documents/models.py:436 +msgid "has tags in" +msgstr "" + +#: documents/models.py:437 +msgid "ASN greater than" +msgstr "" + +#: documents/models.py:438 +msgid "ASN less than" +msgstr "" + +#: documents/models.py:439 +msgid "storage path is" +msgstr "" + +#: documents/models.py:449 +msgid "rule type" +msgstr "" + +#: documents/models.py:451 +msgid "value" +msgstr "" + +#: documents/models.py:454 +msgid "filter rule" +msgstr "" + +#: documents/models.py:455 +msgid "filter rules" +msgstr "" + +#: documents/models.py:563 +msgid "Task ID" +msgstr "" + +#: documents/models.py:564 +msgid "Celery ID for the Task that was run" +msgstr "" + +#: documents/models.py:569 +msgid "Acknowledged" +msgstr "" + +#: documents/models.py:570 +msgid "If the task is acknowledged via the frontend or API" +msgstr "" + +#: documents/models.py:576 +msgid "Task Filename" +msgstr "" + +#: documents/models.py:577 +msgid "Name of the file which the Task was run for" +msgstr "" + +#: documents/models.py:583 +msgid "Task Name" +msgstr "" + +#: documents/models.py:584 +msgid "Name of the Task which was run" +msgstr "" + +#: documents/models.py:591 +msgid "Task State" +msgstr "" + +#: documents/models.py:592 +msgid "Current state of the task being run" +msgstr "" + +#: documents/models.py:597 +msgid "Created DateTime" +msgstr "" + +#: documents/models.py:598 +msgid "Datetime field when the task result was created in UTC" +msgstr "" + +#: documents/models.py:603 +msgid "Started DateTime" +msgstr "" + +#: documents/models.py:604 +msgid "Datetime field when the task was started in UTC" +msgstr "" + +#: documents/models.py:609 +msgid "Completed DateTime" +msgstr "" + +#: documents/models.py:610 +msgid "Datetime field when the task was completed in UTC" +msgstr "" + +#: documents/models.py:615 +msgid "Result Data" +msgstr "" + +#: documents/models.py:617 +msgid "The data returned by the task" +msgstr "" + +#: documents/models.py:626 +msgid "Comment for the document" +msgstr "" + +#: documents/models.py:650 +msgid "user" +msgstr "" + +#: documents/models.py:655 +msgid "comment" +msgstr "" + +#: documents/models.py:656 +msgid "comments" +msgstr "" + +#: documents/serialisers.py:80 +#, python-format +msgid "Invalid regular expression: %(error)s" +msgstr "" + +#: documents/serialisers.py:320 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:700 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/serialisers.py:794 +msgid "Invalid variable detected." +msgstr "" + +#: documents/templates/index.html:78 +msgid "Paperless-ngx is loading..." +msgstr "" + +#: documents/templates/index.html:79 +msgid "Still here?! Hmm, something might be wrong." +msgstr "" + +#: documents/templates/index.html:79 +msgid "Here's a link to the docs." +msgstr "" + +#: documents/templates/registration/logged_out.html:14 +msgid "Paperless-ngx signed out" +msgstr "" + +#: documents/templates/registration/logged_out.html:59 +msgid "You have been successfully logged out. Bye!" +msgstr "" + +#: documents/templates/registration/logged_out.html:60 +msgid "Sign in again" +msgstr "Entra de nou" + +#: documents/templates/registration/login.html:15 +msgid "Paperless-ngx sign in" +msgstr "Paperless-ngx sign in" + +#: documents/templates/registration/login.html:61 +msgid "Please sign in." +msgstr "Siusplau valida't." + +#: documents/templates/registration/login.html:64 +msgid "Your username and password didn't match. Please try again." +msgstr "Nom usuari / contrasenya no coincideixen. Siusplau torna a provar." + +#: documents/templates/registration/login.html:67 +msgid "Username" +msgstr "Nom usuari" + +#: documents/templates/registration/login.html:68 +msgid "Password" +msgstr "Contrasenya" + +#: documents/templates/registration/login.html:73 +msgid "Sign in" +msgstr "Validació" + +#: paperless/apps.py:9 +msgid "Paperless" +msgstr "Paperless" + +#: paperless/settings.py:521 +msgid "English (US)" +msgstr "English (US)" + +#: paperless/settings.py:522 +msgid "Arabic" +msgstr "Àrab" + +#: paperless/settings.py:523 +msgid "Belarusian" +msgstr "Bielorús" + +#: paperless/settings.py:524 +msgid "Czech" +msgstr "Txec" + +#: paperless/settings.py:525 +msgid "Danish" +msgstr "Danès" + +#: paperless/settings.py:526 +msgid "German" +msgstr "Alemany" + +#: paperless/settings.py:527 +msgid "English (GB)" +msgstr "Anglès (GB)" + +#: paperless/settings.py:528 +msgid "Spanish" +msgstr "Espanyol" + +#: paperless/settings.py:529 +msgid "French" +msgstr "Francès" + +#: paperless/settings.py:530 +msgid "Italian" +msgstr "Italià" + +#: paperless/settings.py:531 +msgid "Luxembourgish" +msgstr "Luxemburguès" + +#: paperless/settings.py:532 +msgid "Dutch" +msgstr "Holandès" + +#: paperless/settings.py:533 +msgid "Polish" +msgstr "Polac" + +#: paperless/settings.py:534 +msgid "Portuguese (Brazil)" +msgstr "Portuguès (BZ)" + +#: paperless/settings.py:535 +msgid "Portuguese" +msgstr "Portuguès" + +#: paperless/settings.py:536 +msgid "Romanian" +msgstr "Romanès" + +#: paperless/settings.py:537 +msgid "Russian" +msgstr "Rus" + +#: paperless/settings.py:538 +msgid "Slovenian" +msgstr "Eslovè" + +#: paperless/settings.py:539 +msgid "Serbian" +msgstr "Serbi" + +#: paperless/settings.py:540 +msgid "Swedish" +msgstr "Suec" + +#: paperless/settings.py:541 +msgid "Turkish" +msgstr "Turc" + +#: paperless/settings.py:542 +msgid "Chinese Simplified" +msgstr "Xinès Simplificat" + +#: paperless/urls.py:169 +msgid "Paperless-ngx administration" +msgstr "Administració Paperless-ngx" + +#: paperless_mail/admin.py:30 +msgid "Authentication" +msgstr "Autentificació" + +#: paperless_mail/admin.py:31 +msgid "Advanced settings" +msgstr "Opcions avançades" + +#: paperless_mail/admin.py:48 +msgid "Filter" +msgstr "Filtre" + +#: paperless_mail/admin.py:51 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "Només es processaran els correus que coincideixin amb TOTS els filtres indicats." + +#: paperless_mail/admin.py:66 +msgid "Actions" +msgstr "Accions" + +#: paperless_mail/admin.py:69 +msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail." +msgstr "Acció aplicada al correu. Aquesta acció només es realitza quan el cos del correu o els fitxers adjunts s'han consumit." + +#: paperless_mail/admin.py:77 +msgid "Metadata" +msgstr "Matadades" + +#: paperless_mail/admin.py:80 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "Assigna metadades als documents consumits d'aquesta regla automàticament. Si no assigneu etiquetes, tipus o corresponsals aquí, es processaran totes les regles de concordança que hàgiu definit." + +#: paperless_mail/apps.py:10 +msgid "Paperless mail" +msgstr "Paperless mail" + +#: paperless_mail/models.py:9 +msgid "mail account" +msgstr "compte correu" + +#: paperless_mail/models.py:10 +msgid "mail accounts" +msgstr "comptes correu" + +#: paperless_mail/models.py:13 +msgid "No encryption" +msgstr "Sense encriptació" + +#: paperless_mail/models.py:14 +msgid "Use SSL" +msgstr "SSL" + +#: paperless_mail/models.py:15 +msgid "Use STARTTLS" +msgstr "STARTTLS" + +#: paperless_mail/models.py:19 +msgid "IMAP server" +msgstr "Servidor IMAP" + +#: paperless_mail/models.py:22 +msgid "IMAP port" +msgstr "port IMAP" + +#: paperless_mail/models.py:26 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "Normalment 143 sense encriptació i STARTTLS i 993 per a SSL." + +#: paperless_mail/models.py:32 +msgid "IMAP security" +msgstr "Seguretat IMAP" + +#: paperless_mail/models.py:37 +msgid "username" +msgstr "nom usuari" + +#: paperless_mail/models.py:39 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:42 +msgid "character set" +msgstr "" + +#: paperless_mail/models.py:46 +msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'." +msgstr "" + +#: paperless_mail/models.py:57 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:58 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:61 paperless_mail/models.py:69 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:62 +msgid "Process full Mail (with embedded attachments in file) as .eml" +msgstr "" + +#: paperless_mail/models.py:64 +msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" +msgstr "" + +#: paperless_mail/models.py:70 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:73 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:74 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:75 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:76 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:77 +msgid "Tag the mail with specified tag, don't process tagged mails" +msgstr "" + +#: paperless_mail/models.py:80 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:81 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:84 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:85 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:86 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:87 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:91 +msgid "order" +msgstr "" + +#: paperless_mail/models.py:97 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:101 paperless_mail/models.py:231 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." +msgstr "" + +#: paperless_mail/models.py:111 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:117 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:123 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:130 +msgid "filter attachment filename" +msgstr "" + +#: paperless_mail/models.py:135 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:142 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:144 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:148 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:152 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:158 +msgid "consumption scope" +msgstr "" + +#: paperless_mail/models.py:164 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:170 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:175 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." +msgstr "" + +#: paperless_mail/models.py:183 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:191 +msgid "assign this tag" +msgstr "" + +#: paperless_mail/models.py:199 +msgid "assign this document type" +msgstr "" + +#: paperless_mail/models.py:203 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:213 +msgid "assign this correspondent" +msgstr "" + +#: paperless_mail/models.py:239 +msgid "uid" +msgstr "" + +#: paperless_mail/models.py:247 +msgid "subject" +msgstr "" + +#: paperless_mail/models.py:255 +msgid "received" +msgstr "" + +#: paperless_mail/models.py:262 +msgid "processed" +msgstr "" + +#: paperless_mail/models.py:268 +msgid "status" +msgstr "" + diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po index e284a2ec6..3ac6f5f91 100644 --- a/src/locale/cs_CZ/LC_MESSAGES/django.po +++ b/src/locale/cs_CZ/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-03-03 19:15+0000\n" -"PO-Revision-Date: 2023-03-03 20:41\n" +"PO-Revision-Date: 2023-04-13 08:33\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -23,7 +23,7 @@ msgstr "Dokumenty" #: documents/models.py:36 msgid "None" -msgstr "" +msgstr "Žádný" #: documents/models.py:37 msgid "Any word" @@ -68,7 +68,7 @@ msgstr "je ignorováno" #: documents/models.py:71 msgid "owner" -msgstr "" +msgstr "vlastník" #: documents/models.py:81 documents/models.py:136 msgid "correspondent" @@ -416,7 +416,7 @@ msgstr "Pokud je úloha potvrzena prostřednictvím webu nebo API" #: documents/models.py:576 msgid "Task Filename" -msgstr "" +msgstr "Název souboru úlohy" #: documents/models.py:577 msgid "Name of the file which the Task was run for" @@ -554,7 +554,7 @@ msgstr "Přihlásit se" #: paperless/apps.py:9 msgid "Paperless" -msgstr "" +msgstr "Paperless" #: paperless/settings.py:521 msgid "English (US)" @@ -562,7 +562,7 @@ msgstr "Angličtina (US)" #: paperless/settings.py:522 msgid "Arabic" -msgstr "" +msgstr "Arabština" #: paperless/settings.py:523 msgid "Belarusian" @@ -858,7 +858,7 @@ msgstr "Vložené přílohy zahrnují vložené obrázky, takže je nejlepší t #: paperless_mail/models.py:158 msgid "consumption scope" -msgstr "" +msgstr "rozsah spotřeby" #: paperless_mail/models.py:164 msgid "action" @@ -894,21 +894,21 @@ msgstr "přiřadit tohoto korespondenta" #: paperless_mail/models.py:239 msgid "uid" -msgstr "" +msgstr "uid" #: paperless_mail/models.py:247 msgid "subject" -msgstr "" +msgstr "předmět" #: paperless_mail/models.py:255 msgid "received" -msgstr "" +msgstr "přijato" #: paperless_mail/models.py:262 msgid "processed" -msgstr "" +msgstr "zpracováno" #: paperless_mail/models.py:268 msgid "status" -msgstr "" +msgstr "stav" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index c1e828b6f..98f6eb480 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: 2023-03-03 19:15+0000\n" -"PO-Revision-Date: 2023-03-22 22:41\n" +"PO-Revision-Date: 2023-04-11 08:14\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -192,11 +192,11 @@ msgstr "Aktueller Dateiname im Archiv" #: documents/models.py:239 msgid "original filename" -msgstr "Original-Dateiname" +msgstr "Ursprünglicher Dateiname" #: documents/models.py:245 msgid "The original name of the file when it was uploaded" -msgstr "Der Originalname der Datei beim Hochladen" +msgstr "Ursprünglicher Dateiname beim Hochladen" #: documents/models.py:252 msgid "archive serial number" @@ -400,7 +400,7 @@ msgstr "Filterregeln" #: documents/models.py:563 msgid "Task ID" -msgstr "Aufgaben ID" +msgstr "Aufgaben-ID" #: documents/models.py:564 msgid "Celery ID for the Task that was run" @@ -456,7 +456,7 @@ msgstr "Zeitpunkt, als die Aufgabe erstellt wurde (in UTC)" #: documents/models.py:609 msgid "Completed DateTime" -msgstr "Abgeschlossen Zeitpunkt" +msgstr "Abschlusszeitpunkt" #: documents/models.py:610 msgid "Datetime field when the task was completed in UTC" @@ -858,7 +858,7 @@ msgstr "'Inline'-Anhänge schließen eingebettete Bilder mit ein, daher sollte d #: paperless_mail/models.py:158 msgid "consumption scope" -msgstr "Konsumumfang" +msgstr "Verarbeitungsumfang" #: paperless_mail/models.py:164 msgid "action" diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po index d1406eba2..0d3e0bc15 100644 --- a/src/locale/es_ES/LC_MESSAGES/django.po +++ b/src/locale/es_ES/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-03-03 19:15+0000\n" -"PO-Revision-Date: 2023-03-03 20:41\n" +"PO-Revision-Date: 2023-04-05 00:21\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -23,7 +23,7 @@ msgstr "Documentos" #: documents/models.py:36 msgid "None" -msgstr "" +msgstr "Nada" #: documents/models.py:37 msgid "Any word" @@ -68,7 +68,7 @@ msgstr "es insensible" #: documents/models.py:71 msgid "owner" -msgstr "" +msgstr "propietario" #: documents/models.py:81 documents/models.py:136 msgid "correspondent" @@ -372,15 +372,15 @@ msgstr "tiene etiquetas en" #: documents/models.py:437 msgid "ASN greater than" -msgstr "" +msgstr "ASN mayor que" #: documents/models.py:438 msgid "ASN less than" -msgstr "" +msgstr "ASN menor que" #: documents/models.py:439 msgid "storage path is" -msgstr "" +msgstr "la ruta de almacenamiento es" #: documents/models.py:449 msgid "rule type" @@ -408,19 +408,19 @@ msgstr "ID de Celery de la tarea ejecutada" #: documents/models.py:569 msgid "Acknowledged" -msgstr "" +msgstr "Reconocido" #: documents/models.py:570 msgid "If the task is acknowledged via the frontend or API" -msgstr "" +msgstr "Si la tarea es reconocida a través del frontend o API" #: documents/models.py:576 msgid "Task Filename" -msgstr "" +msgstr "Nombre del archivo de tarea" #: documents/models.py:577 msgid "Name of the file which the Task was run for" -msgstr "" +msgstr "Nombre del archivo para el que se ejecutó la tarea" #: documents/models.py:583 msgid "Task Name" @@ -444,7 +444,7 @@ msgstr "Fecha y hora de creación" #: documents/models.py:598 msgid "Datetime field when the task result was created in UTC" -msgstr "" +msgstr "Campo de fecha cuando el resultado de la tarea fue creado en UTC" #: documents/models.py:603 msgid "Started DateTime" @@ -452,23 +452,23 @@ msgstr "Fecha y hora de inicio" #: documents/models.py:604 msgid "Datetime field when the task was started in UTC" -msgstr "" +msgstr "Campo de fecha cuando la tarea fue iniciada en UTC" #: documents/models.py:609 msgid "Completed DateTime" -msgstr "" +msgstr "Fecha de finalización" #: documents/models.py:610 msgid "Datetime field when the task was completed in UTC" -msgstr "" +msgstr "Fecha-hora cuando la tarea se completó en UTC" #: documents/models.py:615 msgid "Result Data" -msgstr "" +msgstr "Datos de resultado" #: documents/models.py:617 msgid "The data returned by the task" -msgstr "" +msgstr "Datos devueltos por la tarea" #: documents/models.py:626 msgid "Comment for the document" @@ -554,7 +554,7 @@ msgstr "Iniciar sesión" #: paperless/apps.py:9 msgid "Paperless" -msgstr "" +msgstr "Paperless" #: paperless/settings.py:521 msgid "English (US)" @@ -562,7 +562,7 @@ msgstr "Inglés (US)" #: paperless/settings.py:522 msgid "Arabic" -msgstr "" +msgstr "Árabe" #: paperless/settings.py:523 msgid "Belarusian" @@ -670,7 +670,7 @@ msgstr "Acciones" #: paperless_mail/admin.py:69 msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail." -msgstr "" +msgstr "La acción aplicada al correo. Esta acción sólo se realiza cuando el cuerpo del correo o los archivos adjuntos fueron consumidos del correo." #: paperless_mail/admin.py:77 msgid "Metadata" @@ -750,11 +750,11 @@ msgstr "Solo procesar ficheros adjuntos." #: paperless_mail/models.py:62 msgid "Process full Mail (with embedded attachments in file) as .eml" -msgstr "" +msgstr "Procesar correo completo (con adjuntos en el archivo) como .eml" #: paperless_mail/models.py:64 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" -msgstr "" +msgstr "Procesar correo completo (con adjuntos incrustados en el archivo) como .eml + archivos adjuntos de proceso como documentos separados" #: paperless_mail/models.py:70 msgid "Process all files, including 'inline' attachments." @@ -778,7 +778,7 @@ msgstr "Marcar el correo, no procesar correos marcados" #: paperless_mail/models.py:77 msgid "Tag the mail with specified tag, don't process tagged mails" -msgstr "" +msgstr "Etiqueta el correo con la etiqueta especificada, no procesar correos etiquetados" #: paperless_mail/models.py:80 msgid "Use subject as title" @@ -858,7 +858,7 @@ msgstr "Adjuntos incrustados incluyen imágenes, por lo que es mejor combina res #: paperless_mail/models.py:158 msgid "consumption scope" -msgstr "" +msgstr "ámbito de consumo" #: paperless_mail/models.py:164 msgid "action" @@ -894,21 +894,21 @@ msgstr "asignar este interlocutor" #: paperless_mail/models.py:239 msgid "uid" -msgstr "" +msgstr "uid" #: paperless_mail/models.py:247 msgid "subject" -msgstr "" +msgstr "asunto" #: paperless_mail/models.py:255 msgid "received" -msgstr "" +msgstr "recibido" #: paperless_mail/models.py:262 msgid "processed" -msgstr "" +msgstr "procesado" #: paperless_mail/models.py:268 msgid "status" -msgstr "" +msgstr "estado" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index 90ec7371e..1dfe9ca86 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: 2023-03-03 19:15+0000\n" -"PO-Revision-Date: 2023-03-07 04:36\n" +"PO-Revision-Date: 2023-04-17 05:24\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -372,15 +372,15 @@ msgstr "porte une étiquette parmi" #: documents/models.py:437 msgid "ASN greater than" -msgstr "est supérieur à" +msgstr "ASN supérieur à" #: documents/models.py:438 msgid "ASN less than" -msgstr "est inférieur à" +msgstr "ASN inférieur à" #: documents/models.py:439 msgid "storage path is" -msgstr "chemin d'accès au stockage" +msgstr "chemin de stockage est" #: documents/models.py:449 msgid "rule type" @@ -408,7 +408,7 @@ msgstr "Identifiant Celery pour la tâche qui a été exécutée" #: documents/models.py:569 msgid "Acknowledged" -msgstr "Prise en compte" +msgstr "Confirmer" #: documents/models.py:570 msgid "If the task is acknowledged via the frontend or API" @@ -428,7 +428,7 @@ msgstr "Nom de la tâche" #: documents/models.py:584 msgid "Name of the Task which was run" -msgstr "Nom de la tâche exécutée" +msgstr "Nom de la tâche qui a été exécuté" #: documents/models.py:591 msgid "Task State" @@ -436,7 +436,7 @@ msgstr "État de la tâche" #: documents/models.py:592 msgid "Current state of the task being run" -msgstr "Etat actuel de la tâche en cours d'exécution" +msgstr "État actuel de la tâche en cours d'exécution" #: documents/models.py:597 msgid "Created DateTime" @@ -444,7 +444,7 @@ msgstr "Date de création" #: documents/models.py:598 msgid "Datetime field when the task result was created in UTC" -msgstr "Champ de date lorsque le résultat de la tâche a été créé (UTC)" +msgstr "Champ de date lorsque le résultat de la tâche a été créé en UTC" #: documents/models.py:603 msgid "Started DateTime" @@ -452,7 +452,7 @@ msgstr "Date de début" #: documents/models.py:604 msgid "Datetime field when the task was started in UTC" -msgstr "Champ de date lorsque la tâche a été créé (UTC)" +msgstr "Champ de date lorsque le résultat de la tâche a été créé en UTC" #: documents/models.py:609 msgid "Completed DateTime" @@ -460,11 +460,11 @@ msgstr "Date de fin" #: documents/models.py:610 msgid "Datetime field when the task was completed in UTC" -msgstr "Champ de date lorsque la tâche a été terminée (UTC)" +msgstr "Champ de date lorsque le résultat de la tâche a été créé en UTC" #: documents/models.py:615 msgid "Result Data" -msgstr "Données de résultat" +msgstr "Données du résultat" #: documents/models.py:617 msgid "The data returned by the task" @@ -502,7 +502,7 @@ msgstr "Type de fichier %(type)s non pris en charge" #: documents/serialisers.py:794 msgid "Invalid variable detected." -msgstr "Variable non valide détectée." +msgstr "Variable invalide détectée." #: documents/templates/index.html:78 msgid "Paperless-ngx is loading..." @@ -514,7 +514,7 @@ msgstr "Toujours ici ? Hum, quelque chose a dû mal se passer." #: documents/templates/index.html:79 msgid "Here's a link to the docs." -msgstr "Lien vers la documentation." +msgstr "Voici un lien vers la documentation." #: documents/templates/registration/logged_out.html:14 msgid "Paperless-ngx signed out" @@ -554,7 +554,7 @@ msgstr "S'identifier" #: paperless/apps.py:9 msgid "Paperless" -msgstr "" +msgstr "Paperless" #: paperless/settings.py:521 msgid "English (US)" @@ -670,7 +670,7 @@ msgstr "Actions" #: paperless_mail/admin.py:69 msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail." -msgstr "" +msgstr "L'action appliquée au courrier. Cette action n'est effectuée que lorsque le corps du courrier ou les pièces jointes ont été consommés par le courrier." #: paperless_mail/admin.py:77 msgid "Metadata" @@ -750,11 +750,11 @@ msgstr "Ne traiter que les pièces jointes." #: paperless_mail/models.py:62 msgid "Process full Mail (with embedded attachments in file) as .eml" -msgstr "" +msgstr "Traiter le courrier complet (avec des pièces jointes intégrées dans le fichier) en tant que .eml" #: paperless_mail/models.py:64 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" -msgstr "" +msgstr "Traiter le courrier complet (avec des pièces jointes intégrées dans le fichier) en .eml + traiter les pièces jointes en tant que documents séparés" #: paperless_mail/models.py:70 msgid "Process all files, including 'inline' attachments." @@ -778,7 +778,7 @@ msgstr "Marquer le courriel, ne pas traiter les courriels marqués" #: paperless_mail/models.py:77 msgid "Tag the mail with specified tag, don't process tagged mails" -msgstr "Affecter l’étiquette spécifée au courrier, ne pas traiter les courriels étiquetés" +msgstr "Affecter l’étiquette spécifiée au courrier, ne pas traiter les courriels étiquetés" #: paperless_mail/models.py:80 msgid "Use subject as title" @@ -858,7 +858,7 @@ msgstr "Les pièces jointes en ligne comprennent les images intégrées, il est #: paperless_mail/models.py:158 msgid "consumption scope" -msgstr "périmètre de consommation" +msgstr "portée de la consommation" #: paperless_mail/models.py:164 msgid "action" diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po new file mode 100644 index 000000000..bad62087f --- /dev/null +++ b/src/locale/id_ID/LC_MESSAGES/django.po @@ -0,0 +1,914 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ngx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-03-03 19:15+0000\n" +"PO-Revision-Date: 2023-04-17 05:24\n" +"Last-Translator: \n" +"Language-Team: Indonesian\n" +"Language: id_ID\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: paperless-ngx\n" +"X-Crowdin-Project-ID: 500308\n" +"X-Crowdin-Language: id\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 14\n" + +#: documents/apps.py:9 +msgid "Documents" +msgstr "Dokumen" + +#: documents/models.py:36 +msgid "None" +msgstr "Tidak ada" + +#: documents/models.py:37 +msgid "Any word" +msgstr "Kata apapun" + +#: documents/models.py:38 +msgid "All words" +msgstr "Semua kata" + +#: documents/models.py:39 +msgid "Exact match" +msgstr "Sama persis" + +#: documents/models.py:40 +msgid "Regular expression" +msgstr "Ekspresi reguler" + +#: documents/models.py:41 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:42 +msgid "Automatic" +msgstr "Otomatis" + +#: documents/models.py:45 documents/models.py:394 paperless_mail/models.py:17 +#: paperless_mail/models.py:89 +msgid "name" +msgstr "nama" + +#: documents/models.py:47 +msgid "match" +msgstr "cocok" + +#: documents/models.py:50 +msgid "matching algorithm" +msgstr "mencocokkan algoritma" + +#: documents/models.py:55 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:71 +msgid "owner" +msgstr "pemilik" + +#: documents/models.py:81 documents/models.py:136 +msgid "correspondent" +msgstr "koresponden" + +#: documents/models.py:82 +msgid "correspondents" +msgstr "koresponden" + +#: documents/models.py:87 +msgid "color" +msgstr "warna" + +#: documents/models.py:90 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:93 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:99 +msgid "tag" +msgstr "" + +#: documents/models.py:100 documents/models.py:174 +msgid "tags" +msgstr "" + +#: documents/models.py:105 documents/models.py:156 +msgid "document type" +msgstr "jenis dokumen" + +#: documents/models.py:106 +msgid "document types" +msgstr "jenis dokumen" + +#: documents/models.py:111 +msgid "path" +msgstr "lokasi" + +#: documents/models.py:117 documents/models.py:145 +msgid "storage path" +msgstr "lokasi penyimpanan" + +#: documents/models.py:118 +msgid "storage paths" +msgstr "lokasi penyimpanan" + +#: documents/models.py:126 +msgid "Unencrypted" +msgstr "Tidak terenkripsi" + +#: documents/models.py:127 +msgid "Encrypted with GNU Privacy Guard" +msgstr "Terenkripsi dengan GNU Privacy Guard" + +#: documents/models.py:148 +msgid "title" +msgstr "judul" + +#: documents/models.py:160 documents/models.py:624 +msgid "content" +msgstr "konten" + +#: documents/models.py:163 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:168 +msgid "mime type" +msgstr "" + +#: documents/models.py:178 +msgid "checksum" +msgstr "" + +#: documents/models.py:182 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:186 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:191 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:194 documents/models.py:376 documents/models.py:630 +msgid "created" +msgstr "dibuat" + +#: documents/models.py:197 +msgid "modified" +msgstr "dimodifikasi" + +#: documents/models.py:204 +msgid "storage type" +msgstr "jenis penyimpanan" + +#: documents/models.py:212 +msgid "added" +msgstr "menambahkan" + +#: documents/models.py:219 +msgid "filename" +msgstr "nama berkas" + +#: documents/models.py:225 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:229 +msgid "archive filename" +msgstr "" + +#: documents/models.py:235 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:239 +msgid "original filename" +msgstr "nama file asli" + +#: documents/models.py:245 +msgid "The original name of the file when it was uploaded" +msgstr "Nama awal file pada saat diunggah" + +#: documents/models.py:252 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:262 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:268 documents/models.py:641 +msgid "document" +msgstr "dokumen" + +#: documents/models.py:269 +msgid "documents" +msgstr "" + +#: documents/models.py:359 +msgid "debug" +msgstr "" + +#: documents/models.py:360 +msgid "information" +msgstr "informasi" + +#: documents/models.py:361 +msgid "warning" +msgstr "" + +#: documents/models.py:362 paperless_mail/models.py:276 +msgid "error" +msgstr "kesalahan" + +#: documents/models.py:363 +msgid "critical" +msgstr "" + +#: documents/models.py:366 +msgid "group" +msgstr "grup" + +#: documents/models.py:368 +msgid "message" +msgstr "pesan" + +#: documents/models.py:371 +msgid "level" +msgstr "" + +#: documents/models.py:380 +msgid "log" +msgstr "" + +#: documents/models.py:381 +msgid "logs" +msgstr "" + +#: documents/models.py:391 documents/models.py:446 +msgid "saved view" +msgstr "" + +#: documents/models.py:392 +msgid "saved views" +msgstr "" + +#: documents/models.py:397 +msgid "show on dashboard" +msgstr "tampilkan di dasbor" + +#: documents/models.py:400 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:404 +msgid "sort field" +msgstr "" + +#: documents/models.py:409 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:414 +msgid "title contains" +msgstr "" + +#: documents/models.py:415 +msgid "content contains" +msgstr "" + +#: documents/models.py:416 +msgid "ASN is" +msgstr "" + +#: documents/models.py:417 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:418 +msgid "document type is" +msgstr "" + +#: documents/models.py:419 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:420 +msgid "has tag" +msgstr "" + +#: documents/models.py:421 +msgid "has any tag" +msgstr "" + +#: documents/models.py:422 +msgid "created before" +msgstr "" + +#: documents/models.py:423 +msgid "created after" +msgstr "" + +#: documents/models.py:424 +msgid "created year is" +msgstr "" + +#: documents/models.py:425 +msgid "created month is" +msgstr "" + +#: documents/models.py:426 +msgid "created day is" +msgstr "" + +#: documents/models.py:427 +msgid "added before" +msgstr "" + +#: documents/models.py:428 +msgid "added after" +msgstr "" + +#: documents/models.py:429 +msgid "modified before" +msgstr "" + +#: documents/models.py:430 +msgid "modified after" +msgstr "" + +#: documents/models.py:431 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:432 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:433 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:434 +msgid "fulltext query" +msgstr "" + +#: documents/models.py:435 +msgid "more like this" +msgstr "lebih seperti ini" + +#: documents/models.py:436 +msgid "has tags in" +msgstr "" + +#: documents/models.py:437 +msgid "ASN greater than" +msgstr "" + +#: documents/models.py:438 +msgid "ASN less than" +msgstr "" + +#: documents/models.py:439 +msgid "storage path is" +msgstr "" + +#: documents/models.py:449 +msgid "rule type" +msgstr "" + +#: documents/models.py:451 +msgid "value" +msgstr "nilai" + +#: documents/models.py:454 +msgid "filter rule" +msgstr "" + +#: documents/models.py:455 +msgid "filter rules" +msgstr "" + +#: documents/models.py:563 +msgid "Task ID" +msgstr "" + +#: documents/models.py:564 +msgid "Celery ID for the Task that was run" +msgstr "" + +#: documents/models.py:569 +msgid "Acknowledged" +msgstr "" + +#: documents/models.py:570 +msgid "If the task is acknowledged via the frontend or API" +msgstr "" + +#: documents/models.py:576 +msgid "Task Filename" +msgstr "Nama File Tugas" + +#: documents/models.py:577 +msgid "Name of the file which the Task was run for" +msgstr "" + +#: documents/models.py:583 +msgid "Task Name" +msgstr "Nama Tugas" + +#: documents/models.py:584 +msgid "Name of the Task which was run" +msgstr "" + +#: documents/models.py:591 +msgid "Task State" +msgstr "" + +#: documents/models.py:592 +msgid "Current state of the task being run" +msgstr "" + +#: documents/models.py:597 +msgid "Created DateTime" +msgstr "" + +#: documents/models.py:598 +msgid "Datetime field when the task result was created in UTC" +msgstr "" + +#: documents/models.py:603 +msgid "Started DateTime" +msgstr "" + +#: documents/models.py:604 +msgid "Datetime field when the task was started in UTC" +msgstr "" + +#: documents/models.py:609 +msgid "Completed DateTime" +msgstr "" + +#: documents/models.py:610 +msgid "Datetime field when the task was completed in UTC" +msgstr "" + +#: documents/models.py:615 +msgid "Result Data" +msgstr "" + +#: documents/models.py:617 +msgid "The data returned by the task" +msgstr "" + +#: documents/models.py:626 +msgid "Comment for the document" +msgstr "" + +#: documents/models.py:650 +msgid "user" +msgstr "" + +#: documents/models.py:655 +msgid "comment" +msgstr "" + +#: documents/models.py:656 +msgid "comments" +msgstr "" + +#: documents/serialisers.py:80 +#, python-format +msgid "Invalid regular expression: %(error)s" +msgstr "" + +#: documents/serialisers.py:320 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:700 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/serialisers.py:794 +msgid "Invalid variable detected." +msgstr "" + +#: documents/templates/index.html:78 +msgid "Paperless-ngx is loading..." +msgstr "" + +#: documents/templates/index.html:79 +msgid "Still here?! Hmm, something might be wrong." +msgstr "" + +#: documents/templates/index.html:79 +msgid "Here's a link to the docs." +msgstr "" + +#: documents/templates/registration/logged_out.html:14 +msgid "Paperless-ngx signed out" +msgstr "" + +#: documents/templates/registration/logged_out.html:59 +msgid "You have been successfully logged out. Bye!" +msgstr "" + +#: documents/templates/registration/logged_out.html:60 +msgid "Sign in again" +msgstr "" + +#: documents/templates/registration/login.html:15 +msgid "Paperless-ngx sign in" +msgstr "" + +#: documents/templates/registration/login.html:61 +msgid "Please sign in." +msgstr "" + +#: documents/templates/registration/login.html:64 +msgid "Your username and password didn't match. Please try again." +msgstr "" + +#: documents/templates/registration/login.html:67 +msgid "Username" +msgstr "" + +#: documents/templates/registration/login.html:68 +msgid "Password" +msgstr "" + +#: documents/templates/registration/login.html:73 +msgid "Sign in" +msgstr "" + +#: paperless/apps.py:9 +msgid "Paperless" +msgstr "" + +#: paperless/settings.py:521 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:522 +msgid "Arabic" +msgstr "" + +#: paperless/settings.py:523 +msgid "Belarusian" +msgstr "" + +#: paperless/settings.py:524 +msgid "Czech" +msgstr "" + +#: paperless/settings.py:525 +msgid "Danish" +msgstr "" + +#: paperless/settings.py:526 +msgid "German" +msgstr "" + +#: paperless/settings.py:527 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:528 +msgid "Spanish" +msgstr "" + +#: paperless/settings.py:529 +msgid "French" +msgstr "" + +#: paperless/settings.py:530 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:531 +msgid "Luxembourgish" +msgstr "" + +#: paperless/settings.py:532 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:533 +msgid "Polish" +msgstr "" + +#: paperless/settings.py:534 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:535 +msgid "Portuguese" +msgstr "" + +#: paperless/settings.py:536 +msgid "Romanian" +msgstr "" + +#: paperless/settings.py:537 +msgid "Russian" +msgstr "" + +#: paperless/settings.py:538 +msgid "Slovenian" +msgstr "" + +#: paperless/settings.py:539 +msgid "Serbian" +msgstr "" + +#: paperless/settings.py:540 +msgid "Swedish" +msgstr "" + +#: paperless/settings.py:541 +msgid "Turkish" +msgstr "" + +#: paperless/settings.py:542 +msgid "Chinese Simplified" +msgstr "" + +#: paperless/urls.py:169 +msgid "Paperless-ngx administration" +msgstr "" + +#: paperless_mail/admin.py:30 +msgid "Authentication" +msgstr "" + +#: paperless_mail/admin.py:31 +msgid "Advanced settings" +msgstr "" + +#: paperless_mail/admin.py:48 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:51 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:66 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:69 +msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail." +msgstr "" + +#: paperless_mail/admin.py:77 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:80 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:10 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:9 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:10 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:13 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:14 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:15 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:22 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:26 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:32 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:37 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:39 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:42 +msgid "character set" +msgstr "" + +#: paperless_mail/models.py:46 +msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'." +msgstr "" + +#: paperless_mail/models.py:57 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:58 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:61 paperless_mail/models.py:69 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:62 +msgid "Process full Mail (with embedded attachments in file) as .eml" +msgstr "" + +#: paperless_mail/models.py:64 +msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" +msgstr "" + +#: paperless_mail/models.py:70 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:73 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:74 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:75 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:76 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:77 +msgid "Tag the mail with specified tag, don't process tagged mails" +msgstr "" + +#: paperless_mail/models.py:80 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:81 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:84 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:85 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:86 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:87 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:91 +msgid "order" +msgstr "" + +#: paperless_mail/models.py:97 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:101 paperless_mail/models.py:231 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." +msgstr "" + +#: paperless_mail/models.py:111 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:117 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:123 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:130 +msgid "filter attachment filename" +msgstr "" + +#: paperless_mail/models.py:135 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:142 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:144 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:148 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:152 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:158 +msgid "consumption scope" +msgstr "" + +#: paperless_mail/models.py:164 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:170 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:175 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." +msgstr "" + +#: paperless_mail/models.py:183 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:191 +msgid "assign this tag" +msgstr "" + +#: paperless_mail/models.py:199 +msgid "assign this document type" +msgstr "" + +#: paperless_mail/models.py:203 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:213 +msgid "assign this correspondent" +msgstr "" + +#: paperless_mail/models.py:239 +msgid "uid" +msgstr "" + +#: paperless_mail/models.py:247 +msgid "subject" +msgstr "" + +#: paperless_mail/models.py:255 +msgid "received" +msgstr "" + +#: paperless_mail/models.py:262 +msgid "processed" +msgstr "" + +#: paperless_mail/models.py:268 +msgid "status" +msgstr "" + diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index 863107a21..73aea2eff 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: 2023-03-03 19:15+0000\n" -"PO-Revision-Date: 2023-03-03 20:41\n" +"PO-Revision-Date: 2023-04-13 23:41\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -23,7 +23,7 @@ msgstr "Dokumenty" #: documents/models.py:36 msgid "None" -msgstr "" +msgstr "Brak" #: documents/models.py:37 msgid "Any word" @@ -68,7 +68,7 @@ msgstr "bez rozróżniania wielkości znaków" #: documents/models.py:71 msgid "owner" -msgstr "" +msgstr "właściciel" #: documents/models.py:81 documents/models.py:136 msgid "correspondent" @@ -416,11 +416,11 @@ msgstr "Jeśli zadanie jest potwierdzone przez frontend lub API" #: documents/models.py:576 msgid "Task Filename" -msgstr "" +msgstr "Nazwa Pliku Zadania" #: documents/models.py:577 msgid "Name of the file which the Task was run for" -msgstr "" +msgstr "Nazwa pliku, na którym zostało wykonane Zadanie" #: documents/models.py:583 msgid "Task Name" @@ -428,7 +428,7 @@ msgstr "Nazwa zadania" #: documents/models.py:584 msgid "Name of the Task which was run" -msgstr "" +msgstr "Nazwa uruchomionego Zadania" #: documents/models.py:591 msgid "Task State" @@ -436,11 +436,11 @@ msgstr "Stan zadania" #: documents/models.py:592 msgid "Current state of the task being run" -msgstr "" +msgstr "Aktualny stan zadania" #: documents/models.py:597 msgid "Created DateTime" -msgstr "" +msgstr "Data i czas utworzenia" #: documents/models.py:598 msgid "Datetime field when the task result was created in UTC" @@ -554,7 +554,7 @@ msgstr "Zaloguj się" #: paperless/apps.py:9 msgid "Paperless" -msgstr "" +msgstr "Paperless" #: paperless/settings.py:521 msgid "English (US)" @@ -562,7 +562,7 @@ msgstr "Angielski (USA)" #: paperless/settings.py:522 msgid "Arabic" -msgstr "" +msgstr "arabski" #: paperless/settings.py:523 msgid "Belarusian" @@ -894,21 +894,21 @@ msgstr "przypisz tego korespondenta" #: paperless_mail/models.py:239 msgid "uid" -msgstr "" +msgstr "uid" #: paperless_mail/models.py:247 msgid "subject" -msgstr "" +msgstr "temat" #: paperless_mail/models.py:255 msgid "received" -msgstr "" +msgstr "otrzymano" #: paperless_mail/models.py:262 msgid "processed" -msgstr "" +msgstr "przetworzono" #: paperless_mail/models.py:268 msgid "status" -msgstr "" +msgstr "status" From 22bb28db625eed70067eec542ae09cd5a8e527c6 Mon Sep 17 00:00:00 2001 From: David Cavallucci Date: Sun, 16 Apr 2023 21:18:17 +1000 Subject: [PATCH 07/30] Changed consumer ignore files pattern for .DS_STORE, .DS_Store --- src/paperless/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paperless/settings.py b/src/paperless/settings.py index b8abea5ff..3b748672f 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -710,7 +710,7 @@ CONSUMER_IGNORE_PATTERNS = list( json.loads( os.getenv( "PAPERLESS_CONSUMER_IGNORE_PATTERNS", - '[".DS_STORE/*", "._*", ".stfolder/*", ".stversions/*", ".localized/*", "desktop.ini", "@eaDir/*"]', # noqa: E501 + '[".DS_Store", ".DS_STORE", "._*", ".stfolder/*", ".stversions/*", ".localized/*", "desktop.ini", "@eaDir/*"]', # noqa: E501 ), ), ) From d1984c0ddadac1cf1def1f55da8f527806ee6fea Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 18 Apr 2023 19:09:24 -0700 Subject: [PATCH 08/30] Update testing for ignore macOS directory services file --- .../tests/test_management_consumer.py | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/src/documents/tests/test_management_consumer.py b/src/documents/tests/test_management_consumer.py index 150880116..1230288c5 100644 --- a/src/documents/tests/test_management_consumer.py +++ b/src/documents/tests/test_management_consumer.py @@ -271,25 +271,11 @@ class TestConsumer(DirectoriesMixin, ConsumerThreadMixin, TransactionTestCase): "ignore": False, }, { - "path": os.path.join(self.dirs.consumption_dir, ".DS_STORE", "foo.pdf"), + "path": os.path.join(self.dirs.consumption_dir, ".DS_STORE"), "ignore": True, }, { - "path": os.path.join( - self.dirs.consumption_dir, - "foo", - ".DS_STORE", - "bar.pdf", - ), - "ignore": True, - }, - { - "path": os.path.join( - self.dirs.consumption_dir, - ".DS_STORE", - "foo", - "bar.pdf", - ), + "path": os.path.join(self.dirs.consumption_dir, ".DS_Store"), "ignore": True, }, { From 32419686260fa0f46be7a509d28e03fd3c60c7cf Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 22 Apr 2023 09:23:37 -0700 Subject: [PATCH 09/30] Update frontend strings --- src-ui/messages.xlf | 44 +++++++++---------- .../manage/settings/settings.component.html | 2 +- 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index b0d159d92..1d34d690e 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -347,70 +347,70 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 165 + 164 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 178 + 176 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 189 + 186 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 199 + 195 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 209 + 204 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 219 + 213 Thank you! 🙏 src/app/app.component.ts - 229 + 222 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 231 + 224 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 233 + 226 Initiating upload... src/app/app.component.ts - 288 + 281 @@ -2070,7 +2070,7 @@ Private src/app/components/common/input/select/select.component.ts - 57 + 36 src/app/components/common/tag/tag.component.html @@ -2782,17 +2782,17 @@ - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 595,597 + 591 Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 618 + 611 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2803,14 +2803,14 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 619 + 612 This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 620 + 613 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2841,7 +2841,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 622 + 615 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2868,7 +2868,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 630 + 623 @@ -2877,7 +2877,7 @@ )"/> src/app/components/document-detail/document-detail.component.ts - 641,643 + 634,636 @@ -4142,8 +4142,8 @@ 135 - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 @@ -4907,7 +4907,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 35 + 31 diff --git a/src-ui/src/app/components/manage/settings/settings.component.html b/src-ui/src/app/components/manage/settings/settings.component.html index 3357aff78..9dec8b004 100644 --- a/src-ui/src/app/components/manage/settings/settings.component.html +++ b/src-ui/src/app/components/manage/settings/settings.component.html @@ -137,7 +137,7 @@

- Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available.
+ Update checking works by pinging the public Github API for the latest release to determine whether a new version is available.
Actual updating of the app must still be performed manually.

From 50af671e029acfe8d93610370651d4153480693e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 22 Apr 2023 09:30:24 -0700 Subject: [PATCH 10/30] Add Catalan translation --- src-ui/angular.json | 1 + src-ui/messages.xlf | 91 +++++++++++---------- src-ui/src/app/app.module.ts | 2 + src-ui/src/app/services/settings.service.ts | 6 ++ src/paperless/settings.py | 1 + 5 files changed, 59 insertions(+), 42 deletions(-) diff --git a/src-ui/angular.json b/src-ui/angular.json index 2dcf486be..836b2a290 100644 --- a/src-ui/angular.json +++ b/src-ui/angular.json @@ -18,6 +18,7 @@ "locales": { "ar-AR": "src/locale/messages.ar_AR.xlf", "be-BY": "src/locale/messages.be_BY.xlf", + "ca-ES": "src/locale/messages.ca_ES.xlf", "cs-CZ": "src/locale/messages.cs_CZ.xlf", "da-DK": "src/locale/messages.da_DK.xlf", "de-DE": "src/locale/messages.de_DE.xlf", diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 1d34d690e..91c11de15 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -347,70 +347,70 @@ The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. src/app/app.component.ts - 164 + 165 The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. src/app/app.component.ts - 176 + 178 Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. src/app/app.component.ts - 186 + 189 Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. src/app/app.component.ts - 195 + 199 File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. src/app/app.component.ts - 204 + 209 Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. src/app/app.component.ts - 213 + 219 Thank you! 🙏 src/app/app.component.ts - 222 + 229 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. src/app/app.component.ts - 224 + 231 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! src/app/app.component.ts - 226 + 233 Initiating upload... src/app/app.component.ts - 281 + 288 @@ -2070,7 +2070,7 @@ Private src/app/components/common/input/select/select.component.ts - 36 + 57 src/app/components/common/tag/tag.component.html @@ -2782,17 +2782,17 @@ - Error deleting document: + Error deleting document: src/app/components/document-detail/document-detail.component.ts - 591 + 595,597 Redo OCR confirm src/app/components/document-detail/document-detail.component.ts - 611 + 618 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2803,14 +2803,14 @@ This operation will permanently redo OCR for this document. src/app/components/document-detail/document-detail.component.ts - 612 + 619 This operation cannot be undone. src/app/components/document-detail/document-detail.component.ts - 613 + 620 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2841,7 +2841,7 @@ Proceed src/app/components/document-detail/document-detail.component.ts - 615 + 622 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2868,7 +2868,7 @@ Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. src/app/components/document-detail/document-detail.component.ts - 623 + 630 @@ -2877,7 +2877,7 @@ )"/> src/app/components/document-detail/document-detail.component.ts - 634,636 + 641,643 @@ -4907,7 +4907,7 @@ You don't have permissions to do that src/app/guards/permissions.guard.ts - 31 + 35 @@ -5104,158 +5104,165 @@ 171 + + Catalan + + src/app/services/settings.service.ts + 177 + + Czech src/app/services/settings.service.ts - 177 + 183 Danish src/app/services/settings.service.ts - 183 + 189 German src/app/services/settings.service.ts - 189 + 195 English (GB) src/app/services/settings.service.ts - 195 + 201 Spanish src/app/services/settings.service.ts - 201 + 207 French src/app/services/settings.service.ts - 207 + 213 Italian src/app/services/settings.service.ts - 213 + 219 Luxembourgish src/app/services/settings.service.ts - 219 + 225 Dutch src/app/services/settings.service.ts - 225 + 231 Polish src/app/services/settings.service.ts - 231 + 237 Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portuguese src/app/services/settings.service.ts - 243 + 249 Romanian src/app/services/settings.service.ts - 249 + 255 Russian src/app/services/settings.service.ts - 255 + 261 Slovenian src/app/services/settings.service.ts - 261 + 267 Serbian src/app/services/settings.service.ts - 267 + 273 Swedish src/app/services/settings.service.ts - 273 + 279 Turkish src/app/services/settings.service.ts - 279 + 285 Chinese Simplified src/app/services/settings.service.ts - 285 + 291 ISO 8601 src/app/services/settings.service.ts - 302 + 308 Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index 446f63254..51204ad7e 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -91,6 +91,7 @@ import { IfObjectPermissionsDirective } from './directives/if-object-permissions import localeAr from '@angular/common/locales/ar' import localeBe from '@angular/common/locales/be' +import localeCa from '@angular/common/locales/ca' import localeCs from '@angular/common/locales/cs' import localeDa from '@angular/common/locales/da' import localeDe from '@angular/common/locales/de' @@ -114,6 +115,7 @@ import { PermissionsFormComponent } from './components/common/input/permissions/ registerLocaleData(localeAr) registerLocaleData(localeBe) +registerLocaleData(localeCa) registerLocaleData(localeCs) registerLocaleData(localeDa) registerLocaleData(localeDe) diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index 4767162f6..1361d5cad 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -172,6 +172,12 @@ export class SettingsService { englishName: 'Belarusian', dateInputFormat: 'dd.mm.yyyy', }, + { + code: 'ca-es', + name: $localize`Catalan`, + englishName: 'Catalan', + dateInputFormat: 'dd/mm/yyyy', + }, { code: 'cs-cz', name: $localize`Czech`, diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 3b748672f..49f4aa6ea 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -534,6 +534,7 @@ LANGUAGES = [ ("en-us", _("English (US)")), # needs to be first to act as fallback language ("ar-ar", _("Arabic")), ("be-by", _("Belarusian")), + ("ca-es", _("Catalan")), ("cs-cz", _("Czech")), ("da-dk", _("Danish")), ("de-de", _("German")), From 0dcfb97824b6184094290138fe401d8368722483 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 22 Apr 2023 09:33:27 -0700 Subject: [PATCH 11/30] Merge pull request #3146 from paperless-ngx/feature-catalan-translation Feature: Catalan translation From 2b244165e22a5a266ca6387c2a0b686cb2acedc5 Mon Sep 17 00:00:00 2001 From: "Paperless-ngx Bot [bot]" <99855517+paperlessngx-bot@users.noreply.github.com> Date: Mon, 24 Apr 2023 12:00:59 -0700 Subject: [PATCH 12/30] New Crowdin updates (#3123) * New translations django.po (Catalan) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations django.po (German) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations django.po (Indonesian) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations django.po (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Russian) [ci skip] * New translations messages.xlf (Romanian) [ci skip] * New translations messages.xlf (Spanish) [ci skip] * New translations messages.xlf (Belarusian) [ci skip] * New translations messages.xlf (Czech) [ci skip] * New translations messages.xlf (Danish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Hebrew) [ci skip] * New translations messages.xlf (Italian) [ci skip] * New translations messages.xlf (Dutch) [ci skip] * New translations messages.xlf (Norwegian) [ci skip] * New translations messages.xlf (Polish) [ci skip] * New translations messages.xlf (Portuguese) [ci skip] * New translations messages.xlf (Slovenian) [ci skip] * New translations messages.xlf (Swedish) [ci skip] * New translations messages.xlf (Turkish) [ci skip] * New translations messages.xlf (Chinese Simplified) [ci skip] * New translations messages.xlf (Portuguese, Brazilian) [ci skip] * New translations messages.xlf (Croatian) [ci skip] * New translations messages.xlf (Luxembourgish) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Arabic) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Russian) [ci skip] * New translations messages.xlf (Romanian) [ci skip] * New translations messages.xlf (Spanish) [ci skip] * New translations messages.xlf (Belarusian) [ci skip] * New translations messages.xlf (Czech) [ci skip] * New translations messages.xlf (Danish) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (Hebrew) [ci skip] * New translations messages.xlf (Italian) [ci skip] * New translations messages.xlf (Dutch) [ci skip] * New translations messages.xlf (Norwegian) [ci skip] * New translations messages.xlf (Polish) [ci skip] * New translations messages.xlf (Portuguese) [ci skip] * New translations messages.xlf (Slovenian) [ci skip] * New translations messages.xlf (Swedish) [ci skip] * New translations messages.xlf (Turkish) [ci skip] * New translations messages.xlf (Chinese Simplified) [ci skip] * New translations messages.xlf (Portuguese, Brazilian) [ci skip] * New translations messages.xlf (Croatian) [ci skip] * New translations messages.xlf (Luxembourgish) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (Indonesian) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (Catalan) [ci skip] --- src-ui/src/locale/messages.ar_AR.xlf | 138 +-- src-ui/src/locale/messages.be_BY.xlf | 58 +- src-ui/src/locale/messages.ca_ES.xlf | 1248 ++++++++++++------------ src-ui/src/locale/messages.cs_CZ.xlf | 58 +- src-ui/src/locale/messages.da_DK.xlf | 58 +- src-ui/src/locale/messages.de_DE.xlf | 100 +- src-ui/src/locale/messages.es_ES.xlf | 58 +- src-ui/src/locale/messages.fi_FI.xlf | 60 +- src-ui/src/locale/messages.fr_FR.xlf | 60 +- src-ui/src/locale/messages.he_IL.xlf | 58 +- src-ui/src/locale/messages.hr_HR.xlf | 58 +- src-ui/src/locale/messages.id_ID.xlf | 58 +- src-ui/src/locale/messages.it_IT.xlf | 58 +- src-ui/src/locale/messages.lb_LU.xlf | 58 +- src-ui/src/locale/messages.nl_NL.xlf | 58 +- src-ui/src/locale/messages.no_NO.xlf | 58 +- src-ui/src/locale/messages.pl_PL.xlf | 58 +- src-ui/src/locale/messages.pt_BR.xlf | 58 +- src-ui/src/locale/messages.pt_PT.xlf | 58 +- src-ui/src/locale/messages.ro_RO.xlf | 58 +- src-ui/src/locale/messages.ru_RU.xlf | 58 +- src-ui/src/locale/messages.sl_SI.xlf | 58 +- src-ui/src/locale/messages.sr_CS.xlf | 60 +- src-ui/src/locale/messages.sv_SE.xlf | 58 +- src-ui/src/locale/messages.tr_TR.xlf | 58 +- src-ui/src/locale/messages.zh_CN.xlf | 58 +- src/locale/ca_ES/LC_MESSAGES/django.po | 196 ++-- src/locale/de_DE/LC_MESSAGES/django.po | 4 +- src/locale/id_ID/LC_MESSAGES/django.po | 36 +- 29 files changed, 1635 insertions(+), 1427 deletions(-) diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 3672f3047..ac326eed1 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -1333,7 +1333,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Password is token + كلمة السر هي رمز التحقق Check if the password above is a token used for authentication @@ -1341,7 +1341,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Check if the password above is a token used for authentication + تحقق مما إذا كانت كلمة المرور أعلاه هي الرمز المستخدم للتحقق Character Set @@ -1401,7 +1401,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 32 - Test + تجربة No encryption @@ -1449,7 +1449,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 88 - Successfully connected to the mail server + تم الاتصال بخادم البريد بنجاح Unable to connect to the mail server @@ -1457,7 +1457,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 89 - Unable to connect to the mail server + تعذر الاتصال بخادم البريد Account @@ -1549,7 +1549,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 21 - Filter to + تصفية إلى Filter subject @@ -1977,7 +1977,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 14 - إسم العائلة + الاسم الأخير Active @@ -2069,7 +2069,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 24 - Include + تضمين Exclude @@ -2077,7 +2077,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Exclude + استبعاد Apply @@ -2287,7 +2287,7 @@ src/app/components/common/tag/tag.component.html 8 - Private + شخصي Add tag @@ -2357,7 +2357,7 @@ src/app/components/common/permissions-select/permissions-select.component.ts 62 - Inherited from group + مأخوذ من المجموعة Select @@ -2473,7 +2473,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Go to inbox + اذهب الى الوارد Documents in inbox @@ -2481,7 +2481,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 5 - Documents in inbox + المستندات في الوارد Go to documents @@ -2489,7 +2489,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 8 - Go to documents + اذهب الى المستندات Total documents @@ -2497,7 +2497,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 9 - Total documents + اجمالي المستندات Total characters @@ -2505,7 +2505,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 13 - Total characters + اجمالي الحروف Other @@ -2513,7 +2513,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts 55 - Other + أخرى Upload new documents @@ -2968,7 +2968,7 @@ src/app/components/document-detail/document-detail.component.html 175,176 - Notes + الملاحظات Discard @@ -2992,7 +2992,7 @@ src/app/components/document-detail/document-detail.component.ts 226,228 - An error occurred loading content: + حدث خطأ في تحميل المحتوى Error retrieving metadata @@ -3020,7 +3020,7 @@ src/app/components/document-detail/document-detail.component.ts 492 - Document saved successfully. + تم حفظ المستند بنجاح. Error saving document @@ -3538,7 +3538,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 70 - View notes + إظهار الملاحظات Notes @@ -3546,7 +3546,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 74 - Notes + الملاحظات Filter by document type @@ -3746,7 +3746,7 @@ src/app/components/document-list/document-list.component.html 126 - Sort by ASN + ترتيب حسب ASN ASN @@ -3770,7 +3770,7 @@ src/app/components/document-list/document-list.component.html 133 - Sort by correspondent + ترتيب حسب المرسل Sort by title @@ -3778,7 +3778,7 @@ src/app/components/document-list/document-list.component.html 140 - Sort by title + ترتيب حسب العنوان Sort by notes @@ -3786,7 +3786,7 @@ src/app/components/document-list/document-list.component.html 147 - Sort by notes + ترتيب حسب الملاحظات Notes @@ -3802,7 +3802,7 @@ src/app/services/rest/document.service.ts 25 - Notes + الملاحظات Sort by document type @@ -3810,7 +3810,7 @@ src/app/components/document-list/document-list.component.html 154 - Sort by document type + ترتيب حسب نوع المستند Sort by storage path @@ -3818,7 +3818,7 @@ src/app/components/document-list/document-list.component.html 161 - Sort by storage path + ترتيب حسب مكان الحفظ Sort by created date @@ -3826,7 +3826,7 @@ src/app/components/document-list/document-list.component.html 168 - Sort by created date + ترتيب حسب تاريخ الإنشاء Sort by added date @@ -3834,7 +3834,7 @@ src/app/components/document-list/document-list.component.html 175 - Sort by added date + ترتيب حسب تاريخ الاضافة Added @@ -4066,7 +4066,7 @@ src/app/components/document-notes/document-notes.component.html 4 - Enter note + ادخل الملاحظة Please enter a note. @@ -4074,7 +4074,7 @@ src/app/components/document-notes/document-notes.component.html 5,7 - Please enter a note. + يرجى إدخال ملحوظة. Add note @@ -4082,7 +4082,7 @@ src/app/components/document-notes/document-notes.component.html 11 - Add note + إضافة الملاحظة Delete note @@ -4102,7 +4102,7 @@ src/app/components/document-notes/document-notes.component.ts 65 - Error saving note: + خطأ في حفظ الملاحظة: Error deleting note: @@ -4110,7 +4110,7 @@ src/app/components/document-notes/document-notes.component.ts 81 - Error deleting note: + خطأ في حذف الملاحظة: correspondent @@ -4338,7 +4338,7 @@ src/app/components/manage/management-list/management-list.component.ts 174,176 - Error occurred while saving . + حدث خطأ خلال الحفظ . Successfully updated . @@ -4354,7 +4354,7 @@ src/app/components/manage/management-list/management-list.component.ts 187,189 - Error occurred while saving : . + حدث خطأ خلال الحفظ : . Do you really want to delete the ? @@ -4572,13 +4572,13 @@ التحقق من التحديث - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - تحديث التحقق يعمل بأرسال إشارات الى العام Github API للحصول على أحدث إصدار لتحديد ما إذا كان الإصدار الجديد متاحا. لا يزال يتعين إجراء التحديث الفعلي للتطبيق يدويا. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -4642,7 +4642,7 @@ src/app/components/manage/settings/settings.component.html 163 - Enable notes + السماح بالملاحظات Notifications @@ -4890,7 +4890,7 @@ src/app/components/manage/settings/settings.component.ts 659 - Password has been changed, you will be logged out momentarily. + تم تغيير كلمة المرور، سيتم تسجيل خروجك مؤقتا. Saved user "". @@ -5665,11 +5665,19 @@ البيلاروسية + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 التشيكية @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 الدانماركية @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 الألمانية @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 الإنجليزية (المملكة المتحدة) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 الإسبانية @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 الفرنسية @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 الإيطالية @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 اللوكسمبرجية @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 الهولندية @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 البولندية @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 البرتغالية (البرازيل) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 البرتغالية @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 الرومانية @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 الروسية @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 السلوفانية @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 الصربية @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 السويدية @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 التركية @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 الصينية المبسطة @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 تم بنجاح ترحيل الإعدادات مرة واحدة إلى قاعدة البيانات! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 غير قادر على ترحيل الإعدادات إلى قاعدة البيانات، الرجاء محاولة الحفظ يدوياً. diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 42aa069ea..c3a415319 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -4572,13 +4572,13 @@ Праверка абнаўленняў - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Праверка абнаўленняў працуе шляхам пінгавання агульнадаступнага Github API для апошняга выпуску, каб вызначыць, ці даступная новая версія. Фактычнае абнаўленне праграмы па-ранейшаму павінна выконвацца ўручную. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Беларуская + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Чэшская @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Дацкая @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Нямецкая @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Англійская (Вялікабрытанія) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Іспанская @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Французская @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Італьянская @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Люксембургская @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Нідэрландская @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Польская @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Партугальская (Бразілія) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Партугальская @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Румынская @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Руская @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Славенская @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Сербская @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Шведская @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Турэцкая @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Кітайская спрошчаная @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Паспяхова выканана аднаразовая міграцыя налад у базу! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Немагчыма перанесці налады ў базу дадзеных, паспрабуйце захаваць уручную. diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 39ae2770f..c22fb0460 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -8,7 +8,7 @@ node_modules/src/ngb-config.ts 13 - Close + Tanca HH @@ -16,7 +16,7 @@ node_modules/src/ngb-config.ts 13 - HH + HH Close @@ -24,7 +24,7 @@ node_modules/src/ngb-config.ts 13 - Close + Tanca «« @@ -32,7 +32,7 @@ node_modules/src/ngb-config.ts 13 - «« + «« Select month @@ -44,7 +44,7 @@ node_modules/src/ngb-config.ts 13 - Select month + Selecciona mes Previous month @@ -56,7 +56,7 @@ node_modules/src/ngb-config.ts 13 - Previous month + Mes anterior @@ -74,7 +74,7 @@ 13 Currently selected slide number read by screen reader - Slide of + Diapositiva of Hours @@ -82,7 +82,7 @@ node_modules/src/ngb-config.ts 13 - Hours + Hores « @@ -90,7 +90,7 @@ node_modules/src/ngb-config.ts 13 - « + « Previous @@ -98,7 +98,7 @@ node_modules/src/ngb-config.ts 13 - Previous + Anterior MM @@ -106,7 +106,7 @@ node_modules/src/ngb-config.ts 13 - MM + MM » @@ -114,7 +114,7 @@ node_modules/src/ngb-config.ts 13 - » + » Select year @@ -126,7 +126,7 @@ node_modules/src/ngb-config.ts 13 - Select year + Selecciona un any Next month @@ -138,7 +138,7 @@ node_modules/src/ngb-config.ts 13 - Next month + Proper mes Next @@ -146,7 +146,7 @@ node_modules/src/ngb-config.ts 13 - Next + Següent Minutes @@ -154,7 +154,7 @@ node_modules/src/ngb-config.ts 13 - Minutes + Minuts »» @@ -162,7 +162,7 @@ node_modules/src/ngb-config.ts 13 - »» + »» Increment hours @@ -170,7 +170,7 @@ node_modules/src/ngb-config.ts 13 - Increment hours + Incrementa hores First @@ -178,7 +178,7 @@ node_modules/src/ngb-config.ts 13 - First + Primer Previous @@ -186,7 +186,7 @@ node_modules/src/ngb-config.ts 13 - Previous + Anterior Decrement hours @@ -194,7 +194,7 @@ node_modules/src/ngb-config.ts 13 - Decrement hours + Disminuir hores Next @@ -202,7 +202,7 @@ node_modules/src/ngb-config.ts 13 - Next + Següent Increment minutes @@ -210,7 +210,7 @@ node_modules/src/ngb-config.ts 13 - Increment minutes + Incrementar minuts Last @@ -218,7 +218,7 @@ node_modules/src/ngb-config.ts 13 - Last + Últim Decrement minutes @@ -226,7 +226,7 @@ node_modules/src/ngb-config.ts 13 - Decrement minutes + Decrementar minuts SS @@ -234,7 +234,7 @@ node_modules/src/ngb-config.ts 13 - SS + SS Seconds @@ -242,7 +242,7 @@ node_modules/src/ngb-config.ts 13 - Seconds + Segons Increment seconds @@ -250,7 +250,7 @@ node_modules/src/ngb-config.ts 13 - Increment seconds + Incrementa segons Decrement seconds @@ -258,7 +258,7 @@ node_modules/src/ngb-config.ts 13 - Decrement seconds + Disminueix segons @@ -284,7 +284,7 @@ src/app/app.component.html 7 - Drop files to begin upload + Deixa fitxers per començar a carregar Document added @@ -296,7 +296,7 @@ src/app/app.component.ts 100 - Document added + Document afegit Document was added to paperless. @@ -308,7 +308,7 @@ src/app/app.component.ts 102 - Document was added to paperless. + Document afegit a paperless. Open document @@ -320,7 +320,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 46 - Open document + Obre document Could not add : @@ -328,7 +328,7 @@ src/app/app.component.ts 116 - Could not add : + No es pot afegir : New document detected @@ -336,7 +336,7 @@ src/app/app.component.ts 131 - New document detected + Nou document detectat Document is being processed by paperless. @@ -344,7 +344,7 @@ src/app/app.component.ts 133 - Document is being processed by paperless. + Document processat per paperless. Prev @@ -352,7 +352,7 @@ src/app/app.component.ts 138 - Prev + Prev Next @@ -364,7 +364,7 @@ src/app/components/document-detail/document-detail.component.html 55 - Next + Següent End @@ -372,7 +372,7 @@ src/app/app.component.ts 140 - End + Fi The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. @@ -380,7 +380,7 @@ src/app/app.component.ts 145 - The dashboard can be used to show saved views, such as an 'Inbox'. Those settings are found under Settings > Saved Views once you have created some. + El tauler es pot utilitzar per mostrar vistes desades, com ara una "Safata d'entrada". Aquesta configuració es troba a Configuració > Visualitzacions desades un cop hagis creat algunes. Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. @@ -388,7 +388,7 @@ src/app/app.component.ts 155 - Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + Arrossega i deixa anar documents aquí per començar a penjar-los o col·locar-los a la carpeta de consum. També podeu arrossegar i deixar anar documents a qualsevol lloc de la resta de pàgines de l'aplicació web. Un cop ho feu, Paperless-ngx començarà a entrenar els seus algorismes d'aprenentatge automàtic. The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. @@ -396,7 +396,7 @@ src/app/app.component.ts 165 - The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. + La llista de documents mostra tots els vostres documents i permet el filtratge i l'edició massiva. Hi ha tres estils de vista diferents: llista, targetes petites i targetes grans. A la barra lateral es mostra una llista dels documents oberts actualment per editar-los. The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. @@ -404,7 +404,7 @@ src/app/app.component.ts 178 - The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. + Les eines de filtratge permeten trobar ràpidament documents mitjançant diverses cerques, dates, etiquetes, etc. Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. @@ -412,7 +412,7 @@ src/app/app.component.ts 189 - Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. + Qualsevol combinació de filtres es pot desar com a "vista" que després es pot mostrar al tauler i/o a la barra lateral. Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. @@ -420,7 +420,7 @@ src/app/app.component.ts 199 - Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + Etiquetes, corresponsals, tipus de documents i les rutes d'emmagatzematge es poden gestionar mitjançant aquestes pàgines. També es poden crear des de la vista d'edició del document. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -428,7 +428,7 @@ src/app/app.component.ts 209 - File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + Tasques d'Arxiu mostra documents que s'han consumit, que estan esperant o que poden haver fallat durant el procés. Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. @@ -436,7 +436,7 @@ src/app/app.component.ts 219 - Check out the settings for various tweaks to the web app, toggle settings for saved views or setup e-mail checking. + Consulteu la configuració de d'ajustaments a l'aplicació web, canvieu la configuració de les visualitzacions desades o configureu el correu electrònic. Thank you! 🙏 @@ -444,7 +444,7 @@ src/app/app.component.ts 229 - Thank you! 🙏 + Gràcies! 🙏 There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. @@ -452,7 +452,7 @@ src/app/app.component.ts 231 - There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + Hi ha <em>tones</em> més funcions i informació que no hem cobert aquí, però això us hauria d'ajudar a començar. Consulteu la documentació o visiteu el projecte a GitHub per obtenir més informació o per informar de problemes. Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -460,7 +460,7 @@ src/app/app.component.ts 233 - Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + Finalment, en nom de tots els col·laboradors d'aquest projecte recolzat per la comunitat, gràcies per utilitzar Paperless-ngx! Initiating upload... @@ -468,7 +468,7 @@ src/app/app.component.ts 288 - Initiating upload... + Inicialitzant pujada... Paperless-ngx @@ -477,7 +477,7 @@ 11 app title - Paperless-ngx + Paperless-ngx Search documents @@ -485,7 +485,7 @@ src/app/components/app-frame/app-frame.component.html 18 - Search documents + Cerca documents Logged in as @@ -493,7 +493,7 @@ src/app/components/app-frame/app-frame.component.html 39 - Logged in as + Logat com Settings @@ -517,7 +517,7 @@ src/app/components/manage/settings/settings.component.html 192 - Settings + Opcions Logout @@ -525,7 +525,7 @@ src/app/components/app-frame/app-frame.component.html 50 - Logout + Tanca la sessió Dashboard @@ -541,7 +541,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + Tauler Documents @@ -573,7 +573,7 @@ src/app/components/manage/management-list/management-list.component.html 54 - Documents + Documents Saved views @@ -585,7 +585,7 @@ src/app/components/manage/settings/settings.component.html 189 - Saved views + Vistes guardades Open documents @@ -593,7 +593,7 @@ src/app/components/app-frame/app-frame.component.html 101 - Open documents + Obre document Close all @@ -605,7 +605,7 @@ src/app/components/app-frame/app-frame.component.html 120 - Close all + Tanca-ho tot Manage @@ -613,7 +613,7 @@ src/app/components/app-frame/app-frame.component.html 127 - Manage + Gestiona Correspondents @@ -625,7 +625,7 @@ src/app/components/app-frame/app-frame.component.html 134 - Correspondents + Corresponsal és Tags @@ -649,7 +649,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 27 - Tags + Etiquetes Document types @@ -661,7 +661,7 @@ src/app/components/app-frame/app-frame.component.html 148 - Document types + Tipus document Storage paths @@ -673,7 +673,7 @@ src/app/components/app-frame/app-frame.component.html 155 - Storage paths + Rutes emmagatzematge File Tasks @@ -685,7 +685,7 @@ src/app/components/manage/tasks/tasks.component.html 1 - File Tasks + Tasques Arxiu File Tasks @@ -693,7 +693,7 @@ src/app/components/app-frame/app-frame.component.html 163 - File Tasks + Tasques arxiu Logs @@ -709,7 +709,7 @@ src/app/components/manage/logs/logs.component.html 1 - Logs + Logs Info @@ -721,7 +721,7 @@ src/app/components/manage/tasks/tasks.component.html 43 - Info + Info Documentation @@ -733,7 +733,7 @@ src/app/components/app-frame/app-frame.component.html 190 - Documentation + Documentació GitHub @@ -745,7 +745,7 @@ src/app/components/app-frame/app-frame.component.html 198 - GitHub + GitHub Suggest an idea @@ -757,7 +757,7 @@ src/app/components/app-frame/app-frame.component.html 204 - Suggest an idea + Suggeriu idea is available. @@ -765,7 +765,7 @@ src/app/components/app-frame/app-frame.component.html 213 - is available. + està disponible. Click to view. @@ -773,7 +773,7 @@ src/app/components/app-frame/app-frame.component.html 213 - Click to view. + Cliqueu per veure. Paperless-ngx can automatically check for updates @@ -781,7 +781,7 @@ src/app/components/app-frame/app-frame.component.html 217 - Paperless-ngx can automatically check for updates + Paperless-ngx pot cercar actualitzacions automàticament How does this work? @@ -789,7 +789,7 @@ src/app/components/app-frame/app-frame.component.html 224,226 - How does this work? + Com funciona? Update available @@ -797,7 +797,7 @@ src/app/components/app-frame/app-frame.component.html 235 - Update available + Actualització disponible An error occurred while saving settings. @@ -809,7 +809,7 @@ src/app/components/manage/settings/settings.component.ts 593 - An error occurred while saving settings. + Error al guardar opcions. An error occurred while saving update checking settings. @@ -817,7 +817,7 @@ src/app/components/app-frame/app-frame.component.ts 222 - An error occurred while saving update checking settings. + S'ha produït un error en desar la configuració de comprovació d'actualitzacions. Clear @@ -833,7 +833,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 47 - Clear + Neteja Cancel @@ -841,7 +841,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.html 12 - Cancel + Cancel·la Confirmation @@ -849,7 +849,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 20 - Confirmation + Confirmació Confirm @@ -877,7 +877,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 440 - Confirm + Confirma After @@ -885,7 +885,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 19 - After + Després Before @@ -893,7 +893,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 42 - Before + Abans Last 7 days @@ -901,7 +901,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 43 - Last 7 days + Últims 7 dies Last month @@ -909,7 +909,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 47 - Last month + El mes passat Last 3 months @@ -917,7 +917,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 51 - Last 3 months + Últims 3 mesos Last year @@ -925,7 +925,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 55 - Last year + Darrer any Name @@ -1017,7 +1017,7 @@ src/app/components/manage/tasks/tasks.component.html 40 - Name + Nom Matching algorithm @@ -1037,7 +1037,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 13 - Matching algorithm + Algoritme coincident Matching pattern @@ -1057,7 +1057,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 14 - Matching pattern + Patró coincident Case insensitive @@ -1077,7 +1077,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 15 - Case insensitive + No distingeix majúscules - minúscules Cancel @@ -1129,7 +1129,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 18 - Cancel + Cancel·la Save @@ -1177,7 +1177,7 @@ src/app/components/manage/settings/settings.component.html 415 - Save + Desa Create new correspondent @@ -1185,7 +1185,7 @@ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 25 - Create new correspondent + Crear nou corresponsal Edit correspondent @@ -1193,7 +1193,7 @@ src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts 29 - Edit correspondent + Edita corresponsal Create new document type @@ -1201,7 +1201,7 @@ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts 25 - Create new document type + Crea nou tipus de document Edit document type @@ -1209,7 +1209,7 @@ src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts 29 - Edit document type + Edita tipus de document Create new item @@ -1217,7 +1217,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 71 - Create new item + Crea element nou Edit item @@ -1225,7 +1225,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 75 - Edit item + Edita element Could not save element: @@ -1233,7 +1233,7 @@ src/app/components/common/edit-dialog/edit-dialog.component.ts 79 - Could not save element: + No es pot desar l'element: Permissions @@ -1257,7 +1257,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 81 - Permissions + Permisos Create new user group @@ -1265,7 +1265,7 @@ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts 24 - Create new user group + Crea nou grup usuari Edit user group @@ -1273,7 +1273,7 @@ src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts 28 - Edit user group + Edita grup usuari IMAP Server @@ -1281,7 +1281,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 11 - IMAP Server + Servidor IMAP IMAP Port @@ -1289,7 +1289,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 12 - IMAP Port + Port IMAP IMAP Security @@ -1297,7 +1297,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 13 - IMAP Security + Seguretat IMAP Username @@ -1313,7 +1313,7 @@ src/app/components/manage/settings/settings.component.html 344 - Username + Nom usuari Password @@ -1325,7 +1325,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 12 - Password + Contrasenya Password is token @@ -1333,7 +1333,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Password is token + Password is token Check if the password above is a token used for authentication @@ -1341,7 +1341,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Check if the password above is a token used for authentication + Comprova si la contrasenya anterior és un testimoni utilitzat per l'autenticació Character Set @@ -1349,7 +1349,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 19 - Character Set + Joc de caràcters Loading... @@ -1393,7 +1393,7 @@ src/app/components/manage/tasks/tasks.component.html 27 - Loading... + Carregant... Test @@ -1401,7 +1401,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 32 - Test + Prova No encryption @@ -1409,7 +1409,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 13 - No encryption + Sense encriptació SSL @@ -1417,7 +1417,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 14 - SSL + SSL STARTTLS @@ -1425,7 +1425,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 15 - STARTTLS + STARTTLS Create new mail account @@ -1433,7 +1433,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 39 - Create new mail account + Crea nou compte de correu Edit mail account @@ -1441,7 +1441,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 43 - Edit mail account + Edita compte correu Successfully connected to the mail server @@ -1449,7 +1449,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 88 - Successfully connected to the mail server + S'ha connectat correctament al servidor de correu Unable to connect to the mail server @@ -1457,7 +1457,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 89 - Unable to connect to the mail server + No es pot connectar al servidor de correu Account @@ -1469,7 +1469,7 @@ src/app/components/manage/settings/settings.component.html 295 - Account + Compte Folder @@ -1477,7 +1477,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 12 - Folder + Carpeta Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. @@ -1485,7 +1485,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 12 - Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + Les subcarpetes han d'estar separades per un delimitador, sovint un punt ('.') o una barra inclinada ('/'), però varia segons el servidor de correu. Maximum age (days) @@ -1493,7 +1493,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 13 - Maximum age (days) + Edat màxima (dies) Attachment type @@ -1501,7 +1501,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 14 - Attachment type + Tipus de fitxer adjunt Consumption scope @@ -1509,7 +1509,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 15 - Consumption scope + Àmbit consum See docs for .eml processing requirements @@ -1517,7 +1517,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 15 - See docs for .eml processing requirements + Consulteu documentació per als requisits de processament .eml Rule order @@ -1525,7 +1525,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 16 - Rule order + Ordre regla Paperless will only process mails that match all of the filters specified below. @@ -1533,7 +1533,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 19 - Paperless will only process mails that match all of the filters specified below. + Només es processaran els correus que coincideixin all amb els filtres especificats a continuació. Filter from @@ -1541,7 +1541,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 20 - Filter from + Filtra desde Filter to @@ -1549,7 +1549,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 21 - Filter to + Filtra a Filter subject @@ -1557,7 +1557,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 22 - Filter subject + Filtra assumpte Filter body @@ -1565,7 +1565,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 23 - Filter body + Filtra cos Filter attachment filename @@ -1573,7 +1573,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 24 - Filter attachment filename + Filtra nom adjunt Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -1581,7 +1581,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 24 - Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + Consumir només documents que coincideixin completament amb aquest nom de fitxer si s'especifica. Es permeten els comodins com ara *.pdf o *factura*. Cas insensible. Action @@ -1589,7 +1589,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 27 - Action + Acció Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. @@ -1597,7 +1597,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 27 - Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. + L'acció només es realitza quan es consumeixen documents del correu. Els correus sense adjunts romanen completament intactes. Action parameter @@ -1605,7 +1605,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 28 - Action parameter + Parametre d'acció Assign title from @@ -1613,7 +1613,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 29 - Assign title from + Assigna títol des de Assign document type @@ -1621,7 +1621,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 31 - Assign document type + Assigna tipus document Assign correspondent from @@ -1629,7 +1629,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 32 - Assign correspondent from + Assigna corresponsal des de Assign correspondent @@ -1637,7 +1637,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 33 - Assign correspondent + Assigna corresponsal Error @@ -1649,7 +1649,7 @@ src/app/services/toast.service.ts 35 - Error + Error Only process attachments @@ -1661,7 +1661,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 37 - Only process attachments + Només processa adjunts Process all files, including 'inline' attachments @@ -1669,7 +1669,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 30 - Process all files, including 'inline' attachments + Processa tots els fitxers, inclosos els fitxers adjunts "in line" Process message as .eml @@ -1677,7 +1677,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 41 - Process message as .eml + Processa missatge com a .eml Process message as .eml and attachments separately @@ -1685,7 +1685,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 45 - Process message as .eml and attachments separately + Processa el missatge com a .eml i els fitxers adjunts per separat Delete @@ -1761,7 +1761,7 @@ src/app/components/manage/settings/settings.component.html 394 - Delete + Esborra Move to specified folder @@ -1769,7 +1769,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 56 - Move to specified folder + Mou a carpeta especificada Mark as read, don't process read mails @@ -1777,7 +1777,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 60 - Mark as read, don't process read mails + Marca com a llegit, no processar correus llegits Flag the mail, don't process flagged mails @@ -1785,7 +1785,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 64 - Flag the mail, don't process flagged mails + Marca el correu, no processar els missatges marcats Tag the mail with specified tag, don't process tagged mails @@ -1793,7 +1793,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 68 - Tag the mail with specified tag, don't process tagged mails + Etiqueta el correu amb l'etiqueta especificada, no processar correus etiquetats Use subject as title @@ -1801,7 +1801,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 75 - Use subject as title + Utilitza assumpte com a títol Use attachment filename as title @@ -1809,7 +1809,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 79 - Use attachment filename as title + Utilitza nom adjunt com a títol Do not assign a correspondent @@ -1817,7 +1817,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 86 - Do not assign a correspondent + No assignar corresponsal Use mail address @@ -1825,7 +1825,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 90 - Use mail address + Utilitza adreça correu Use name (or mail address if not available) @@ -1833,7 +1833,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 94 - Use name (or mail address if not available) + Utilitza el nom (o l'adreça de correu si no està disponible) Use correspondent selected below @@ -1841,7 +1841,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 98 - Use correspondent selected below + Utilitzar el corresponsal seleccionat a continuació Create new mail rule @@ -1849,7 +1849,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 139 - Create new mail rule + Crea nova regla de correu Edit mail rule @@ -1857,7 +1857,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 143 - Edit mail rule + Edita regla correu Path @@ -1869,7 +1869,7 @@ src/app/components/manage/storage-path-list/storage-path-list.component.ts 42 - Path + Camí e.g. @@ -1877,7 +1877,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 26 - e.g. + ex. or use slashes to add directories e.g. @@ -1885,7 +1885,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 28 - or use slashes to add directories e.g. + o utilitza barres inclinades per afegir directoris, p. ex. See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. @@ -1893,7 +1893,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 30 - See <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentation</a> for full list. + Veure <a target="_blank" href="https://docs.paperless-ngx.com/advanced_usage/#file-name-handling">documentació</a> per llista complerta. Create new storage path @@ -1901,7 +1901,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 35 - Create new storage path + Crea nova ruta emmagatzematge Edit storage path @@ -1909,7 +1909,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 39 - Edit storage path + Edita ruta emmagatzematge Color @@ -1921,7 +1921,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 42 - Color + Color Inbox tag @@ -1929,7 +1929,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 12 - Inbox tag + Etiqueta d'entrada Inbox tags are automatically assigned to all consumed documents. @@ -1937,7 +1937,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 12 - Inbox tags are automatically assigned to all consumed documents. + Etiquetes d'entrada son assignades automàticament a tots els document consumits. Create new tag @@ -1945,7 +1945,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts 26 - Create new tag + Crea nova etiqueta Edit tag @@ -1953,7 +1953,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts 30 - Edit tag + Eedita etiqueta Email @@ -1961,7 +1961,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 11 - Email + Email First name @@ -1969,7 +1969,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 13 - First name + Nom Last name @@ -1977,7 +1977,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 14 - Last name + Cognom Active @@ -1985,7 +1985,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 19 - Active + Actiu Superuser @@ -1993,7 +1993,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 23 - Superuser + Superusuari (Grants all permissions and can view objects) @@ -2001,7 +2001,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 23 - (Grants all permissions and can view objects) + (Atorga tots els permisos i pot veure objectes) Groups @@ -2017,7 +2017,7 @@ src/app/components/manage/settings/settings.component.html 367 - Groups + Grups Create new user account @@ -2025,7 +2025,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts 42 - Create new user account + Crea nou compte usuari Edit user account @@ -2033,7 +2033,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts 46 - Edit user account + Editar compte usuari All @@ -2053,7 +2053,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 - All + Tot Any @@ -2061,7 +2061,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 18 - Any + Qualsevol Include @@ -2069,7 +2069,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 24 - Include + Inclou Exclude @@ -2077,7 +2077,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Exclude + Exclou Apply @@ -2085,7 +2085,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 40 - Apply + Aplica Click again to exclude items. @@ -2093,7 +2093,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 46 - Click again to exclude items. + Feu clic de nou per excloure elements. Not assigned @@ -2102,7 +2102,7 @@ 335 Filter drop down element to filter for documents with no correspondent/type/tag assigned - Not assigned + No assignat Invalid date. @@ -2110,7 +2110,7 @@ src/app/components/common/input/date/date.component.html 13 - Invalid date. + Data no vàlida. Suggestions: @@ -2126,7 +2126,7 @@ src/app/components/common/input/tags/tags.component.html 43 - Suggestions: + Suggerències: Edit Permissions @@ -2134,7 +2134,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 7 - Edit Permissions + Edita Permissos Owner: @@ -2142,7 +2142,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 19 - Owner: + Propietari: Objects without an owner can be viewed and edited by all users @@ -2150,7 +2150,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 25 - Objects without an owner can be viewed and edited by all users + Tots els usuaris poden veure i editar objectes sense propietari View @@ -2166,7 +2166,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 56 - View + Vista Users: @@ -2178,7 +2178,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 50 - Users: + Usuaris: Groups: @@ -2190,7 +2190,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 58 - Groups: + Grups: Edit @@ -2254,7 +2254,7 @@ src/app/components/manage/settings/settings.component.html 393 - Edit + Edita Edit permissions also grant viewing permissions @@ -2262,7 +2262,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 64 - Edit permissions also grant viewing permissions + Permisos d'edició també atorguen permisos de visualització Add item @@ -2271,7 +2271,7 @@ 12 Used for both types, correspondents, storage paths - Add item + Afegir element Private @@ -2287,7 +2287,7 @@ src/app/components/common/tag/tag.component.html 8 - Private + Privat Add tag @@ -2295,7 +2295,7 @@ src/app/components/common/input/tags/tags.component.html 12 - Add tag + Afegir etiqueta Set Permissions @@ -2303,7 +2303,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 26 - Set Permissions + Establir Permisos Note that permissions set here will override any existing permissions @@ -2311,7 +2311,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 43 - Note that permissions set here will override any existing permissions + Permisos establerts aquí anul·laran els permisos existents Type @@ -2319,7 +2319,7 @@ src/app/components/common/permissions-select/permissions-select.component.html 5 - Type + Tipus Add @@ -2327,7 +2327,7 @@ src/app/components/common/permissions-select/permissions-select.component.html 7 - Add + Afegir Change @@ -2335,7 +2335,7 @@ src/app/components/common/permissions-select/permissions-select.component.html 8 - Change + Canvia @@ -2349,7 +2349,7 @@ src/app/components/manage/tasks/tasks.component.html 11 - + Inherited from group @@ -2357,7 +2357,7 @@ src/app/components/common/permissions-select/permissions-select.component.ts 62 - Inherited from group + Heretat del grup Select @@ -2373,7 +2373,7 @@ src/app/components/document-list/document-list.component.html 8 - Select + Selecciona Please select an object @@ -2381,7 +2381,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 20 - Please select an object + Selecciona objecte Hello , welcome to Paperless-ngx @@ -2389,7 +2389,7 @@ src/app/components/dashboard/dashboard.component.ts 36 - Hello , welcome to Paperless-ngx + Hola , benvingut a Paperless-ngx Welcome to Paperless-ngx @@ -2397,7 +2397,7 @@ src/app/components/dashboard/dashboard.component.ts 38 - Welcome to Paperless-ngx + Benvingut a Paperless-ngx Show all @@ -2409,7 +2409,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 27 - Show all + Mostra tot Created @@ -2433,7 +2433,7 @@ src/app/services/rest/document.service.ts 22 - Created + Creat Title @@ -2457,7 +2457,7 @@ src/app/services/rest/document.service.ts 20 - Title + Títol Statistics @@ -2465,7 +2465,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 - Statistics + Estadí­stiques Go to inbox @@ -2473,7 +2473,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Go to inbox + Vés a la safata d'entrada Documents in inbox @@ -2481,7 +2481,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 5 - Documents in inbox + Document safata Go to documents @@ -2489,7 +2489,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 8 - Go to documents + Ves a documents Total documents @@ -2497,7 +2497,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 9 - Total documents + Total documents Total characters @@ -2505,7 +2505,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 13 - Total characters + Caràcters Totals Other @@ -2513,7 +2513,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts 55 - Other + Altres Upload new documents @@ -2521,7 +2521,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 - Upload new documents + Puja nous documents Dismiss completed @@ -2530,7 +2530,7 @@ 4 This button dismisses all status messages about processed documents on the dashboard (failed and successful) - Dismiss completed + Descarta completats Drop documents here or @@ -2538,7 +2538,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Drop documents here or + Deixa documents aquí o Browse files @@ -2546,7 +2546,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 13 - Browse files + Examinar Arxius {VAR_PLURAL, plural, =1 {One more document} other { more documents}} @@ -2555,7 +2555,7 @@ 25 This is shown as a summary line when there are more than 5 document in the processing pipeline. - {VAR_PLURAL, plural, =1 {One more document} other { more documents}} + {VAR_PLURAL, plural, one {}=1 {One more document} other { more documents}} Processing: @@ -2563,7 +2563,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 39 - Processing: + Processant: Failed: @@ -2571,7 +2571,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 42 - Failed: + Fallat: Added: @@ -2579,7 +2579,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 45 - Added: + Afegit: , @@ -2592,7 +2592,7 @@ 269 this string is used to separate processing, failed and added on the file upload widget - , + , Paperless-ngx is running! @@ -2600,7 +2600,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 3 - Paperless-ngx is running! + Paperless-ngx funcionant! You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. @@ -2608,7 +2608,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 4 - You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + Tot preparat per començar a penjar documents! Explora les diverses funcions d'aquesta aplicació web pel vostre compte o inicieu un recorregut ràpid amb el botó següent. More detail on how to use and configure Paperless-ngx is always available in the documentation. @@ -2616,7 +2616,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 5 - More detail on how to use and configure Paperless-ngx is always available in the documentation. + Més detalls de com utilitzar i configurar Paperless-ngx sempre estan disponibles a la pàgina documentació. Thanks for being a part of the Paperless-ngx community! @@ -2624,7 +2624,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 - Thanks for being a part of the Paperless-ngx community! + Gràcies per formar part de la comunitat Paperless-ngx! Start the tour @@ -2632,7 +2632,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 9 - Start the tour + Comença el tour Searching document with asn @@ -2640,7 +2640,7 @@ src/app/components/document-asn/document-asn.component.html 1 - Searching document with asn + Cercant documents amb ASN Page @@ -2652,7 +2652,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 15 - Page + Pàgina of @@ -2660,7 +2660,7 @@ src/app/components/document-detail/document-detail.component.html 5,6 - of + de Download @@ -2680,7 +2680,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 94 - Download + Descarrega Download original @@ -2688,7 +2688,7 @@ src/app/components/document-detail/document-detail.component.html 25 - Download original + Baixa original Redo OCR @@ -2700,7 +2700,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 92 - Redo OCR + Refés OCR More like this @@ -2712,7 +2712,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 44 - More like this + Més com aquest Close @@ -2724,7 +2724,7 @@ src/app/guards/dirty-saved-view.guard.ts 40 - Close + Tanca Previous @@ -2732,7 +2732,7 @@ src/app/components/document-detail/document-detail.component.html 50 - Previous + Anterior Details @@ -2740,7 +2740,7 @@ src/app/components/document-detail/document-detail.component.html 72 - Details + Detalls Archive serial number @@ -2748,7 +2748,7 @@ src/app/components/document-detail/document-detail.component.html 76 - Archive serial number + Número de sèrie de l'arxiu Date created @@ -2756,7 +2756,7 @@ src/app/components/document-detail/document-detail.component.html 77 - Date created + Data de creació Correspondent @@ -2780,7 +2780,7 @@ src/app/services/rest/document.service.ts 19 - Correspondent + Corresponsal Document type @@ -2804,7 +2804,7 @@ src/app/services/rest/document.service.ts 21 - Document type + Tipus document Storage path @@ -2824,7 +2824,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 52 - Storage path + Ruta emmagatzematge Default @@ -2832,7 +2832,7 @@ src/app/components/document-detail/document-detail.component.html 84 - Default + Per defecte Content @@ -2840,7 +2840,7 @@ src/app/components/document-detail/document-detail.component.html 91 - Content + Contingut Metadata @@ -2852,7 +2852,7 @@ src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 17 - Metadata + Matadades Date modified @@ -2860,7 +2860,7 @@ src/app/components/document-detail/document-detail.component.html 106 - Date modified + Data modificació Date added @@ -2868,7 +2868,7 @@ src/app/components/document-detail/document-detail.component.html 110 - Date added + Data afegit Media filename @@ -2876,7 +2876,7 @@ src/app/components/document-detail/document-detail.component.html 114 - Media filename + Nom Arxiu Original filename @@ -2884,7 +2884,7 @@ src/app/components/document-detail/document-detail.component.html 118 - Original filename + Nom arxiu original Original MD5 checksum @@ -2892,7 +2892,7 @@ src/app/components/document-detail/document-detail.component.html 122 - Original MD5 checksum + Original MD5 checksum Original file size @@ -2900,7 +2900,7 @@ src/app/components/document-detail/document-detail.component.html 126 - Original file size + Mida arxiu original Original mime type @@ -2908,7 +2908,7 @@ src/app/components/document-detail/document-detail.component.html 130 - Original mime type + Tipus mímic original Archive MD5 checksum @@ -2916,7 +2916,7 @@ src/app/components/document-detail/document-detail.component.html 134 - Archive MD5 checksum + MD5 checksum arxivat Archive file size @@ -2924,7 +2924,7 @@ src/app/components/document-detail/document-detail.component.html 138 - Archive file size + Mida arxiu arxivat Original document metadata @@ -2932,7 +2932,7 @@ src/app/components/document-detail/document-detail.component.html 144 - Original document metadata + Metadates document original Archived document metadata @@ -2940,7 +2940,7 @@ src/app/components/document-detail/document-detail.component.html 145 - Archived document metadata + Metadades del document arxivat Preview @@ -2948,7 +2948,7 @@ src/app/components/document-detail/document-detail.component.html 151 - Preview + Vista prèvia Enter Password @@ -2960,7 +2960,7 @@ src/app/components/document-detail/document-detail.component.html 215 - Enter Password + Introdueix Contrasenya Notes @@ -2968,7 +2968,7 @@ src/app/components/document-detail/document-detail.component.html 175,176 - Notes + Notes Discard @@ -2976,7 +2976,7 @@ src/app/components/document-detail/document-detail.component.html 194 - Discard + Descarta Save & next @@ -2984,7 +2984,7 @@ src/app/components/document-detail/document-detail.component.html 195 - Save & next + Desa & següent An error occurred loading content: @@ -2992,7 +2992,7 @@ src/app/components/document-detail/document-detail.component.ts 226,228 - An error occurred loading content: + Error carregant contingut: Error retrieving metadata @@ -3000,7 +3000,7 @@ src/app/components/document-detail/document-detail.component.ts 354 - Error retrieving metadata + Error recuperant metadata Error retrieving suggestions @@ -3008,7 +3008,7 @@ src/app/components/document-detail/document-detail.component.ts 374 - Error retrieving suggestions + Error recuperant suggerències Document saved successfully. @@ -3020,7 +3020,7 @@ src/app/components/document-detail/document-detail.component.ts 492 - Document saved successfully. + Document guardat correctament. Error saving document @@ -3032,7 +3032,7 @@ src/app/components/document-detail/document-detail.component.ts 542 - Error saving document + Error guardant document Confirm delete @@ -3044,7 +3044,7 @@ src/app/components/manage/management-list/management-list.component.ts 209 - Confirm delete + Confirma eliminació Do you really want to delete document ""? @@ -3052,7 +3052,7 @@ src/app/components/document-detail/document-detail.component.ts 572 - Do you really want to delete document ""? + Realment vols esborrar el document ""? The files for this document will be deleted permanently. This operation cannot be undone. @@ -3060,7 +3060,7 @@ src/app/components/document-detail/document-detail.component.ts 573 - The files for this document will be deleted permanently. This operation cannot be undone. + Els fitxers d'aquest document se suprimiran permanentment. Aquesta operació no es pot desfer. Delete document @@ -3068,7 +3068,7 @@ src/app/components/document-detail/document-detail.component.ts 575 - Delete document + Esborra document Error deleting document: @@ -3076,7 +3076,7 @@ src/app/components/document-detail/document-detail.component.ts 595,597 - Error deleting document: + Error esborrant document: Redo OCR confirm @@ -3088,7 +3088,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 499 - Redo OCR confirm + Refer OCR This operation will permanently redo OCR for this document. @@ -3096,7 +3096,7 @@ src/app/components/document-detail/document-detail.component.ts 619 - This operation will permanently redo OCR for this document. + Aquesta operació tornarà a fer l'OCR per a aquest document. This operation cannot be undone. @@ -3128,7 +3128,7 @@ src/app/components/manage/settings/settings.component.ts 862 - This operation cannot be undone. + Aquesta acció no es pot desfer. Proceed @@ -3156,7 +3156,7 @@ src/app/components/manage/settings/settings.component.ts 864 - Proceed + Procedir Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. @@ -3164,7 +3164,7 @@ src/app/components/document-detail/document-detail.component.ts 630 - Redo OCR operation will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + L'operació de refer OCR començarà en segon pla. Tanqueu i torneu a obrir o recarregueu aquest document un cop finalitzada l'operació per veure contingut nou. Error executing operation: @@ -3172,7 +3172,7 @@ src/app/components/document-detail/document-detail.component.ts 641,643 - Error executing operation: + Error executant operació: Select: @@ -3180,7 +3180,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 - Select: + Selecciona: Edit: @@ -3188,7 +3188,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 27 - Edit: + Edita: Filter tags @@ -3200,7 +3200,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 28 - Filter tags + Filtra etiquetes Filter correspondents @@ -3212,7 +3212,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 37 - Filter correspondents + Filtra corresponsals Filter document types @@ -3224,7 +3224,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 45 - Filter document types + Filtra els tipus de documents Filter storage paths @@ -3236,7 +3236,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 53 - Filter storage paths + Filtra ruta emmagatzematges Actions @@ -3284,7 +3284,7 @@ src/app/components/manage/tasks/tasks.component.html 44 - Actions + Accions Include: @@ -3292,7 +3292,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 111 - Include: + Inclou: Archived files @@ -3300,7 +3300,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 115,117 - Archived files + Arxius arxivats Original files @@ -3308,7 +3308,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 121,123 - Original files + Fitxers originals Use formatted filename @@ -3316,7 +3316,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 128,130 - Use formatted filename + Utilitza nom arxiu formatat Error executing bulk operation: @@ -3324,7 +3324,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 185,187 - Error executing bulk operation: + Error executant operació en massa: "" @@ -3336,7 +3336,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 267 - "" + "" "" and "" @@ -3345,7 +3345,7 @@ 263 This is for messages like 'modify "tag1" and "tag2"' - "" and "" + "" i "" and "" @@ -3354,7 +3354,7 @@ 271,273 this is for messages like 'modify "tag1", "tag2" and "tag3"' - and "" + i "" Confirm tags assignment @@ -3362,7 +3362,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 288 - Confirm tags assignment + Confirma assignació etiquetes This operation will add the tag "" to selected document(s). @@ -3370,7 +3370,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 294 - This operation will add the tag "" to selected document(s). + Això afegirà l'etiqueta "" a document(s) seleccionat(s). This operation will add the tags to selected document(s). @@ -3378,7 +3378,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 299,301 - This operation will add the tags to selected document(s). + Això afegirà etiqueta a document(s) seleccionat(s). This operation will remove the tag "" from selected document(s). @@ -3386,7 +3386,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 307 - This operation will remove the tag "" from selected document(s). + Això esborarrà etiqueta "" de document(s) seleccionat(s). This operation will remove the tags from selected document(s). @@ -3394,7 +3394,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 312,314 - This operation will remove the tags from selected document(s). + Això esborrarà etiquetes de document(s) seleccionat(s). This operation will add the tags and remove the tags on selected document(s). @@ -3402,7 +3402,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 316,320 - This operation will add the tags and remove the tags on selected document(s). + Això afegirà les etiquetes i eliminarà les etiquetes de document(s) seleccionat(s). Confirm correspondent assignment @@ -3410,7 +3410,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 357 - Confirm correspondent assignment + Confirma assignació corresponsal This operation will assign the correspondent "" to selected document(s). @@ -3418,7 +3418,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 359 - This operation will assign the correspondent "" to selected document(s). + Això assignarà el corresponsal "" a document(s) seleccionat(s). This operation will remove the correspondent from selected document(s). @@ -3426,7 +3426,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 361 - This operation will remove the correspondent from selected document(s). + Això treurà el corresponsal de document(s) seleccionat(s). Confirm document type assignment @@ -3434,7 +3434,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 395 - Confirm document type assignment + Confirma assignació del tipus de document This operation will assign the document type "" to selected document(s). @@ -3442,7 +3442,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 397 - This operation will assign the document type "" to selected document(s). + Això assignarà el tipus de document "" a document(s) seleccionat(s). This operation will remove the document type from selected document(s). @@ -3450,7 +3450,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 399 - This operation will remove the document type from selected document(s). + L'operació treurà el tipus de document desde document(s) seleccionats. Confirm storage path assignment @@ -3458,7 +3458,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 433 - Confirm storage path assignment + Confirma assignació del camí d'emmagatzematge This operation will assign the storage path "" to selected document(s). @@ -3466,7 +3466,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 435 - This operation will assign the storage path "" to selected document(s). + L'operació assignarà el camí d'emmagatzematge "" to document(s) seleccionats. This operation will remove the storage path from selected document(s). @@ -3474,7 +3474,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 437 - This operation will remove the storage path from selected document(s). + L'operació esborrarà el camí d'emmagatzematge "" de document(s) seleccionats. Delete confirm @@ -3482,7 +3482,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 460 - Delete confirm + Confirma esborrat This operation will permanently delete selected document(s). @@ -3490,7 +3490,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 461 - This operation will permanently delete selected document(s). + L'operació esborrarà document(s) seleccionats. Delete document(s) @@ -3498,7 +3498,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 464 - Delete document(s) + Esborra document(s) This operation will permanently redo OCR for selected document(s). @@ -3506,7 +3506,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - This operation will permanently redo OCR for selected document(s). + Aquesta operació tornarà a fer l'OCR per document(s) seleccionats. Filter by correspondent @@ -3518,7 +3518,7 @@ src/app/components/document-list/document-list.component.html 194 - Filter by correspondent + Filtra per corresponsal Filter by tag @@ -3530,7 +3530,7 @@ src/app/components/document-list/document-list.component.html 199 - Filter by tag + Filtra per etiqueta View notes @@ -3538,7 +3538,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 70 - View notes + Veure notes Notes @@ -3546,7 +3546,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 74 - Notes + Notes Filter by document type @@ -3558,7 +3558,7 @@ src/app/components/document-list/document-list.component.html 212 - Filter by document type + Filtra per tipus de documents Filter by storage path @@ -3570,7 +3570,7 @@ src/app/components/document-list/document-list.component.html 217 - Filter by storage path + Filtra per ruta emmagatzematge Created: @@ -3582,7 +3582,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 56,57 - Created: + Creat: Added: @@ -3594,7 +3594,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 57,58 - Added: + Afegit: Modified: @@ -3606,7 +3606,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 58,59 - Modified: + Modificat: Score: @@ -3614,7 +3614,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 110 - Score: + Resultat: Toggle tag filter @@ -3622,7 +3622,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 14 - Toggle tag filter + Commuta filtre etiqueta Toggle correspondent filter @@ -3630,7 +3630,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 32 - Toggle correspondent filter + Commuta filtre corresponsal Toggle document type filter @@ -3638,7 +3638,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 39 - Toggle document type filter + Commuta filtre tipus document Toggle storage path filter @@ -3646,7 +3646,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 46 - Toggle storage path filter + Commuta filtre emmagatzematge Select none @@ -3654,7 +3654,7 @@ src/app/components/document-list/document-list.component.html 11 - Select none + Desseleccionar tot Select page @@ -3662,7 +3662,7 @@ src/app/components/document-list/document-list.component.html 12 - Select page + Selecciona pàgina Select all @@ -3670,7 +3670,7 @@ src/app/components/document-list/document-list.component.html 13 - Select all + Selecciona tot Sort @@ -3678,7 +3678,7 @@ src/app/components/document-list/document-list.component.html 38 - Sort + Ordena Views @@ -3690,7 +3690,7 @@ src/app/components/manage/settings/settings.component.html 199 - Views + Vistes Save "" @@ -3698,7 +3698,7 @@ src/app/components/document-list/document-list.component.html 76 - Save "" + Desa "" Save as... @@ -3706,7 +3706,7 @@ src/app/components/document-list/document-list.component.html 78 - Save as... + Desa com a... {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} @@ -3714,7 +3714,7 @@ src/app/components/document-list/document-list.component.html 97 - {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + {VAR_PLURAL, plural, one {}=1 {Seleccionat d'un document} other {Selected de documents}} {VAR_PLURAL, plural, =1 {One document} other { documents}} @@ -3722,7 +3722,7 @@ src/app/components/document-list/document-list.component.html 99 - {VAR_PLURAL, plural, =1 {One document} other { documents}} + {VAR_PLURAL, plural, one {}=1 {Un document} other { documents}} (filtered) @@ -3730,7 +3730,7 @@ src/app/components/document-list/document-list.component.html 99 - (filtered) + (filtrat) Error while loading documents @@ -3738,7 +3738,7 @@ src/app/components/document-list/document-list.component.html 112 - Error while loading documents + Error al carregar documents Sort by ASN @@ -3746,7 +3746,7 @@ src/app/components/document-list/document-list.component.html 126 - Sort by ASN + Ordena per ASN ASN @@ -3762,7 +3762,7 @@ src/app/services/rest/document.service.ts 18 - ASN + ASN Sort by correspondent @@ -3770,7 +3770,7 @@ src/app/components/document-list/document-list.component.html 133 - Sort by correspondent + Ordena per corresponsal Sort by title @@ -3778,7 +3778,7 @@ src/app/components/document-list/document-list.component.html 140 - Sort by title + Ordena per títol Sort by notes @@ -3786,7 +3786,7 @@ src/app/components/document-list/document-list.component.html 147 - Sort by notes + Ordena per notes Notes @@ -3802,7 +3802,7 @@ src/app/services/rest/document.service.ts 25 - Notes + Notes Sort by document type @@ -3810,7 +3810,7 @@ src/app/components/document-list/document-list.component.html 154 - Sort by document type + Ordena per tipus de document Sort by storage path @@ -3818,7 +3818,7 @@ src/app/components/document-list/document-list.component.html 161 - Sort by storage path + Ordena per ruta emmagatzematge Sort by created date @@ -3826,7 +3826,7 @@ src/app/components/document-list/document-list.component.html 168 - Sort by created date + Ordena per data de creació Sort by added date @@ -3834,7 +3834,7 @@ src/app/components/document-list/document-list.component.html 175 - Sort by added date + Ordena per data de creació Added @@ -3850,7 +3850,7 @@ src/app/services/rest/document.service.ts 23 - Added + Afegit Edit document @@ -3858,7 +3858,7 @@ src/app/components/document-list/document-list.component.html 198 - Edit document + Edita document View "" saved successfully. @@ -3866,7 +3866,7 @@ src/app/components/document-list/document-list.component.ts 205 - View "" saved successfully. + Vista "" desada correctament. View "" created successfully. @@ -3874,7 +3874,7 @@ src/app/components/document-list/document-list.component.ts 246 - View "" created successfully. + Vista "" creada correctament. Reset filters @@ -3882,7 +3882,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 82 - Reset filters + Restableix filtres Correspondent: @@ -3890,7 +3890,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 108,110 - Correspondent: + Corresponsal: Without correspondent @@ -3898,7 +3898,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 112 - Without correspondent + Sense corresponsal Type: @@ -3906,7 +3906,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 117,119 - Type: + Tipus: Without document type @@ -3914,7 +3914,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 121 - Without document type + Sense tipus de document Tag: @@ -3922,7 +3922,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 125,127 - Tag: + Etiqueta: Without any tag @@ -3930,7 +3930,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 131 - Without any tag + Sense cap etiqueta Title: @@ -3938,7 +3938,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 135 - Title: + Títol: ASN: @@ -3946,7 +3946,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 138 - ASN: + ASN: Title & content @@ -3954,7 +3954,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 175 - Title & content + Títol & contingut Advanced search @@ -3962,7 +3962,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 180 - Advanced search + Cerca avançada More like @@ -3970,7 +3970,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 186 - More like + Més com equals @@ -3978,7 +3978,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 205 - equals + és igual a is empty @@ -3986,7 +3986,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 209 - is empty + està buit is not empty @@ -3994,7 +3994,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 213 - is not empty + no està buit greater than @@ -4002,7 +4002,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 217 - greater than + més gran que less than @@ -4010,7 +4010,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 221 - less than + més petit que Save current view @@ -4018,7 +4018,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 3 - Save current view + Guarda vista actual Show in sidebar @@ -4030,7 +4030,7 @@ src/app/components/manage/settings/settings.component.html 216 - Show in sidebar + Mostra a la barra lateral Show on dashboard @@ -4042,7 +4042,7 @@ src/app/components/manage/settings/settings.component.html 212 - Show on dashboard + Mostra al panell Filter rules error occurred while saving this view @@ -4050,7 +4050,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 12 - Filter rules error occurred while saving this view + Error de regles de filtre en desar la vista The error returned was @@ -4058,7 +4058,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 13 - The error returned was + Error retornat ha estat Enter note @@ -4066,7 +4066,7 @@ src/app/components/document-notes/document-notes.component.html 4 - Enter note + Afegir nota Please enter a note. @@ -4074,7 +4074,7 @@ src/app/components/document-notes/document-notes.component.html 5,7 - Please enter a note. + Insereix nota. Add note @@ -4082,7 +4082,7 @@ src/app/components/document-notes/document-notes.component.html 11 - Add note + Afegir nota Delete note @@ -4094,7 +4094,7 @@ src/app/components/document-notes/document-notes.component.html 25 - Delete note + Esborra nota Error saving note: @@ -4102,7 +4102,7 @@ src/app/components/document-notes/document-notes.component.ts 65 - Error saving note: + Error desant nota: Error deleting note: @@ -4110,7 +4110,7 @@ src/app/components/document-notes/document-notes.component.ts 81 - Error deleting note: + Error esborrant nota: correspondent @@ -4118,7 +4118,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 39 - correspondent + corresponsal correspondents @@ -4126,7 +4126,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 40 - correspondents + corresponsals Last used @@ -4134,7 +4134,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 45 - Last used + Últim usat Do you really want to delete the correspondent ""? @@ -4142,7 +4142,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 55 - Do you really want to delete the correspondent ""? + Esborrar corresponsal ""? document type @@ -4150,7 +4150,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 36 - document type + tipus document document types @@ -4158,7 +4158,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 37 - document types + tipus document Do you really want to delete the document type ""? @@ -4166,7 +4166,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 44 - Do you really want to delete the document type ""? + Esborrar tipus de document ""? Create @@ -4186,7 +4186,7 @@ src/app/components/manage/management-list/management-list.component.html 2 - Create + Creat Filter by: @@ -4206,7 +4206,7 @@ src/app/components/manage/management-list/management-list.component.html 8 - Filter by: + Filtrar per: Matching @@ -4226,7 +4226,7 @@ src/app/components/manage/management-list/management-list.component.html 20 - Matching + Coincidència Document count @@ -4246,7 +4246,7 @@ src/app/components/manage/management-list/management-list.component.html 21 - Document count + Nombre documents Filter Documents @@ -4266,7 +4266,7 @@ src/app/components/manage/management-list/management-list.component.html 44 - Filter Documents + Filtra Documents {VAR_PLURAL, plural, =1 {One } other { total }} @@ -4286,7 +4286,7 @@ src/app/components/manage/management-list/management-list.component.html 74 - {VAR_PLURAL, plural, =1 {One } other { total }} + {VAR_PLURAL, plural, one {}=1 {One } other { total }} Automatic @@ -4298,7 +4298,7 @@ src/app/data/matching-model.ts 15 - Automatic + Automàtic None @@ -4310,7 +4310,7 @@ src/app/data/matching-model.ts 45 - None + Cap Error occurred while creating : . @@ -4322,7 +4322,7 @@ src/app/components/manage/management-list/management-list.component.ts 153,155 - Error occurred while creating : . + Error creant : . Successfully created . @@ -4330,7 +4330,7 @@ src/app/components/manage/management-list/management-list.component.ts 147 - Successfully created . + Creat correctament . Error occurred while saving . @@ -4338,7 +4338,7 @@ src/app/components/manage/management-list/management-list.component.ts 174,176 - Error occurred while saving . + Error desant . Successfully updated . @@ -4346,7 +4346,7 @@ src/app/components/manage/management-list/management-list.component.ts 181 - Successfully updated . + Actualitzat correctament . Error occurred while saving : . @@ -4354,7 +4354,7 @@ src/app/components/manage/management-list/management-list.component.ts 187,189 - Error occurred while saving : . + Error desant : . Do you really want to delete the ? @@ -4362,7 +4362,7 @@ src/app/components/manage/management-list/management-list.component.ts 196 - Do you really want to delete the ? + Esborrar el ? Associated documents will not be deleted. @@ -4370,7 +4370,7 @@ src/app/components/manage/management-list/management-list.component.ts 211 - Associated documents will not be deleted. + Documents associats no seran esborrats. Error while deleting element: @@ -4378,7 +4378,7 @@ src/app/components/manage/management-list/management-list.component.ts 224,226 - Error while deleting element: + Error esborrant element: Start tour @@ -4386,7 +4386,7 @@ src/app/components/manage/settings/settings.component.html 2 - Start tour + Inicia el tour Open Django Admin @@ -4394,7 +4394,7 @@ src/app/components/manage/settings/settings.component.html 4 - Open Django Admin + Obrir administració Django General @@ -4402,7 +4402,7 @@ src/app/components/manage/settings/settings.component.html 15 - General + General Appearance @@ -4410,7 +4410,7 @@ src/app/components/manage/settings/settings.component.html 18 - Appearance + Aparença Display language @@ -4418,7 +4418,7 @@ src/app/components/manage/settings/settings.component.html 22 - Display language + Llengua visualització You need to reload the page after applying a new language. @@ -4426,7 +4426,7 @@ src/app/components/manage/settings/settings.component.html 30 - You need to reload the page after applying a new language. + Has de recarregar la pàgina per aplicar una nova llengua. Date display @@ -4434,7 +4434,7 @@ src/app/components/manage/settings/settings.component.html 37 - Date display + Visualització data Date format @@ -4442,7 +4442,7 @@ src/app/components/manage/settings/settings.component.html 50 - Date format + Format de data Short: @@ -4450,7 +4450,7 @@ src/app/components/manage/settings/settings.component.html 56,57 - Short: + Curt: Medium: @@ -4458,7 +4458,7 @@ src/app/components/manage/settings/settings.component.html 60,61 - Medium: + Mig: Long: @@ -4466,7 +4466,7 @@ src/app/components/manage/settings/settings.component.html 64,65 - Long: + Llarg: Items per page @@ -4474,7 +4474,7 @@ src/app/components/manage/settings/settings.component.html 72 - Items per page + Ítems per pàgina Document editor @@ -4482,7 +4482,7 @@ src/app/components/manage/settings/settings.component.html 88 - Document editor + Editor de Document Use PDF viewer provided by the browser @@ -4490,7 +4490,7 @@ src/app/components/manage/settings/settings.component.html 92 - Use PDF viewer provided by the browser + Utilitza el visor PDF del navegador This is usually faster for displaying large PDF documents, but it might not work on some browsers. @@ -4498,7 +4498,7 @@ src/app/components/manage/settings/settings.component.html 92 - This is usually faster for displaying large PDF documents, but it might not work on some browsers. + Això sol ser més ràpid per mostrar documents PDF grans, però pot ser que no funcioni en alguns navegadors. Sidebar @@ -4506,7 +4506,7 @@ src/app/components/manage/settings/settings.component.html 99 - Sidebar + Barra lateral Use 'slim' sidebar (icons only) @@ -4514,7 +4514,7 @@ src/app/components/manage/settings/settings.component.html 103 - Use 'slim' sidebar (icons only) + Empra barra lateral 'slim' (només icones) Dark mode @@ -4522,7 +4522,7 @@ src/app/components/manage/settings/settings.component.html 110 - Dark mode + Mode fosc Use system settings @@ -4530,7 +4530,7 @@ src/app/components/manage/settings/settings.component.html 113 - Use system settings + Utilitza la configuració del sistema Enable dark mode @@ -4538,7 +4538,7 @@ src/app/components/manage/settings/settings.component.html 114 - Enable dark mode + Activar mode fosc Invert thumbnails in dark mode @@ -4546,7 +4546,7 @@ src/app/components/manage/settings/settings.component.html 115 - Invert thumbnails in dark mode + Invertir miniatures en mode fosc Theme Color @@ -4554,7 +4554,7 @@ src/app/components/manage/settings/settings.component.html 121 - Theme Color + Color Tema Reset @@ -4562,7 +4562,7 @@ src/app/components/manage/settings/settings.component.html 130 - Reset + Restablir Update checking @@ -4570,15 +4570,15 @@ src/app/components/manage/settings/settings.component.html 135 - Update checking + Comprova actualització - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Comprovació d'actualització funciona fent ping a Github API per a la darrera versió per determinar si hi ha una versió nova disponible Aactualització real de l'aplicació s'ha de fer manualment. No tracking data is collected by the app in any way. @@ -4586,7 +4586,7 @@ src/app/components/manage/settings/settings.component.html 144,146 - No tracking data is collected by the app in any way. + L'aplicació no recull dades de seguiment. Enable update checking @@ -4594,7 +4594,7 @@ src/app/components/manage/settings/settings.component.html 146 - Enable update checking + Habilita la cerca d'actualitzacions Note that for users of third-party containers e.g. linuxserver.io this notification may be 'ahead' of the current third-party release. @@ -4602,7 +4602,7 @@ src/app/components/manage/settings/settings.component.html 146 - Note that for users of third-party containers e.g. linuxserver.io this notification may be 'ahead' of the current third-party release. + Per als usuaris de contenidors de tercers e.x. linuxserver.io aquesta notificació pot ser "avançada" a la versió actual de tercers. Bulk editing @@ -4610,7 +4610,7 @@ src/app/components/manage/settings/settings.component.html 150 - Bulk editing + Edició massiva Show confirmation dialogs @@ -4618,7 +4618,7 @@ src/app/components/manage/settings/settings.component.html 154 - Show confirmation dialogs + Mostra diàlegs de confirmació Deleting documents will always ask for confirmation. @@ -4626,7 +4626,7 @@ src/app/components/manage/settings/settings.component.html 154 - Deleting documents will always ask for confirmation. + Esborrat de documents sempre demanarà confirmació. Apply on close @@ -4634,7 +4634,7 @@ src/app/components/manage/settings/settings.component.html 155 - Apply on close + Aplica al tancar Enable notes @@ -4642,7 +4642,7 @@ src/app/components/manage/settings/settings.component.html 163 - Enable notes + Habilita notes Notifications @@ -4650,7 +4650,7 @@ src/app/components/manage/settings/settings.component.html 171 - Notifications + Notificacions Document processing @@ -4658,7 +4658,7 @@ src/app/components/manage/settings/settings.component.html 174 - Document processing + Processant document Show notifications when new documents are detected @@ -4666,7 +4666,7 @@ src/app/components/manage/settings/settings.component.html 178 - Show notifications when new documents are detected + Mostra notificacions quan es detectin documents nous Show notifications when document processing completes successfully @@ -4674,7 +4674,7 @@ src/app/components/manage/settings/settings.component.html 179 - Show notifications when document processing completes successfully + Mostra notificacions quan es processin documents correctament Show notifications when document processing fails @@ -4682,7 +4682,7 @@ src/app/components/manage/settings/settings.component.html 180 - Show notifications when document processing fails + Mostra notificacions quan falli el processament de document Suppress notifications on dashboard @@ -4690,7 +4690,7 @@ src/app/components/manage/settings/settings.component.html 181 - Suppress notifications on dashboard + Suprimeix les notificacions del tauler This will suppress all messages about document processing status on the dashboard. @@ -4698,7 +4698,7 @@ src/app/components/manage/settings/settings.component.html 181 - This will suppress all messages about document processing status on the dashboard. + Això suprimirà tots els missatges sobre l'estat del processament de documents al tauler. Show warning when closing saved views with unsaved changes @@ -4706,7 +4706,7 @@ src/app/components/manage/settings/settings.component.html 195 - Show warning when closing saved views with unsaved changes + Mostra avís en tancar visualitzacions desades amb canvis no desats Appears on @@ -4714,7 +4714,7 @@ src/app/components/manage/settings/settings.component.html 209 - Appears on + Apareix a No saved views defined. @@ -4722,7 +4722,7 @@ src/app/components/manage/settings/settings.component.html 226 - No saved views defined. + Sense vistes definides. Mail @@ -4730,7 +4730,7 @@ src/app/components/manage/settings/settings.component.html 240,239 - Mail + Mail Mail accounts @@ -4738,7 +4738,7 @@ src/app/components/manage/settings/settings.component.html 245 - Mail accounts + Comptes correu Add Account @@ -4746,7 +4746,7 @@ src/app/components/manage/settings/settings.component.html 250 - Add Account + Afergir compte Server @@ -4754,7 +4754,7 @@ src/app/components/manage/settings/settings.component.html 258 - Server + Servidor No mail accounts defined. @@ -4762,7 +4762,7 @@ src/app/components/manage/settings/settings.component.html 276 - No mail accounts defined. + Sense comptes de correu definides. Mail rules @@ -4770,7 +4770,7 @@ src/app/components/manage/settings/settings.component.html 282 - Mail rules + Normes e-mail Add Rule @@ -4778,7 +4778,7 @@ src/app/components/manage/settings/settings.component.html 287 - Add Rule + Afegir norma No mail rules defined. @@ -4786,7 +4786,7 @@ src/app/components/manage/settings/settings.component.html 313 - No mail rules defined. + Sense regles de correu definides. Users & Groups @@ -4794,7 +4794,7 @@ src/app/components/manage/settings/settings.component.html 327 - Users & Groups + Usuaris & Grups Users @@ -4802,7 +4802,7 @@ src/app/components/manage/settings/settings.component.html 332 - Users + Usuaris Add User @@ -4810,7 +4810,7 @@ src/app/components/manage/settings/settings.component.html 337 - Add User + Afegir Usuari Add Group @@ -4818,7 +4818,7 @@ src/app/components/manage/settings/settings.component.html 372 - Add Group + Afegir Grup Saved view "" deleted. @@ -4826,7 +4826,7 @@ src/app/components/manage/settings/settings.component.ts 475 - Saved view "" deleted. + Vista Guardada "" esborrada. Settings saved @@ -4834,7 +4834,7 @@ src/app/components/manage/settings/settings.component.ts 577 - Settings saved + Configuració guardada Settings were saved successfully. @@ -4842,7 +4842,7 @@ src/app/components/manage/settings/settings.component.ts 578 - Settings were saved successfully. + Configuració guardada amb èxit. Settings were saved successfully. Reload is required to apply some changes. @@ -4850,7 +4850,7 @@ src/app/components/manage/settings/settings.component.ts 582 - Settings were saved successfully. Reload is required to apply some changes. + La configuració desada correctament. Cal tornar a carregar per aplicar alguns canvis. Reload now @@ -4858,7 +4858,7 @@ src/app/components/manage/settings/settings.component.ts 583 - Reload now + Recarrega ara Use system language @@ -4866,7 +4866,7 @@ src/app/components/manage/settings/settings.component.ts 601 - Use system language + Utilitza idioma del sistema Use date format of display language @@ -4874,7 +4874,7 @@ src/app/components/manage/settings/settings.component.ts 608 - Use date format of display language + Utilitza el format de data de la llengua Error while storing settings on server: @@ -4882,7 +4882,7 @@ src/app/components/manage/settings/settings.component.ts 628,630 - Error while storing settings on server: + Error al desar opcions al servidor: Password has been changed, you will be logged out momentarily. @@ -4890,7 +4890,7 @@ src/app/components/manage/settings/settings.component.ts 659 - Password has been changed, you will be logged out momentarily. + Contrasenya desada, es tancarà la sessió momentàniament. Saved user "". @@ -4898,7 +4898,7 @@ src/app/components/manage/settings/settings.component.ts 666 - Saved user "". + Desat usuari "". Error saving user: . @@ -4906,7 +4906,7 @@ src/app/components/manage/settings/settings.component.ts 676 - Error saving user: . + Errordesant usuari: . Confirm delete user account @@ -4914,7 +4914,7 @@ src/app/components/manage/settings/settings.component.ts 686 - Confirm delete user account + Confirma esborrat compte usuari This operation will permanently delete this user account. @@ -4922,7 +4922,7 @@ src/app/components/manage/settings/settings.component.ts 687 - This operation will permanently delete this user account. + Això esborrarà definitivament aquest compte d'usuari. Deleted user @@ -4930,7 +4930,7 @@ src/app/components/manage/settings/settings.component.ts 696 - Deleted user + Usuari esborrat Error deleting user: . @@ -4938,7 +4938,7 @@ src/app/components/manage/settings/settings.component.ts 704 - Error deleting user: . + Error esborrant usuari: . Saved group "". @@ -4946,7 +4946,7 @@ src/app/components/manage/settings/settings.component.ts 722 - Saved group "". + Grup desat "". Error saving group: . @@ -4954,7 +4954,7 @@ src/app/components/manage/settings/settings.component.ts 730 - Error saving group: . + Error desant grup: . Confirm delete user group @@ -4962,7 +4962,7 @@ src/app/components/manage/settings/settings.component.ts 740 - Confirm delete user group + Confirma esborrat grup usuari This operation will permanently delete this user group. @@ -4970,7 +4970,7 @@ src/app/components/manage/settings/settings.component.ts 741 - This operation will permanently delete this user group. + Operació esborrarà aquest grup d'usuari. Deleted group @@ -4978,7 +4978,7 @@ src/app/components/manage/settings/settings.component.ts 750 - Deleted group + Grup esborrat Error deleting group: . @@ -4986,7 +4986,7 @@ src/app/components/manage/settings/settings.component.ts 758 - Error deleting group: . + Error esborrant grup: . Saved account "". @@ -4994,7 +4994,7 @@ src/app/components/manage/settings/settings.component.ts 781 - Saved account "". + Compte desat "". Error saving account: . @@ -5002,7 +5002,7 @@ src/app/components/manage/settings/settings.component.ts 791 - Error saving account: . + Error desant compte: . Confirm delete mail account @@ -5010,7 +5010,7 @@ src/app/components/manage/settings/settings.component.ts 801 - Confirm delete mail account + Confirma esborrat compte correu This operation will permanently delete this mail account. @@ -5018,7 +5018,7 @@ src/app/components/manage/settings/settings.component.ts 802 - This operation will permanently delete this mail account. + L'operació esborrarà aquest compte de correu. Deleted mail account @@ -5026,7 +5026,7 @@ src/app/components/manage/settings/settings.component.ts 811 - Deleted mail account + Compte correu esborrat Error deleting mail account: . @@ -5034,7 +5034,7 @@ src/app/components/manage/settings/settings.component.ts 820 - Error deleting mail account: . + Error esborrant compte de correu: . Saved rule "". @@ -5042,7 +5042,7 @@ src/app/components/manage/settings/settings.component.ts 839 - Saved rule "". + Desada regla "". Error saving rule: . @@ -5050,7 +5050,7 @@ src/app/components/manage/settings/settings.component.ts 850 - Error saving rule: . + Error desant regla: . Confirm delete mail rule @@ -5058,7 +5058,7 @@ src/app/components/manage/settings/settings.component.ts 860 - Confirm delete mail rule + Confirma esborrat regla correu This operation will permanently delete this mail rule. @@ -5066,7 +5066,7 @@ src/app/components/manage/settings/settings.component.ts 861 - This operation will permanently delete this mail rule. + Això esborrarà definitivament la regla de correu. Deleted mail rule @@ -5074,7 +5074,7 @@ src/app/components/manage/settings/settings.component.ts 870 - Deleted mail rule + Esborra regla de correu Error deleting mail rule: . @@ -5082,7 +5082,7 @@ src/app/components/manage/settings/settings.component.ts 879 - Error deleting mail rule: . + Error esborrant regla de correu: . storage path @@ -5090,7 +5090,7 @@ src/app/components/manage/storage-path-list/storage-path-list.component.ts 36 - storage path + ruta emmagatzematge storage paths @@ -5098,7 +5098,7 @@ src/app/components/manage/storage-path-list/storage-path-list.component.ts 37 - storage paths + rutes emmagatzematge Do you really want to delete the storage path ""? @@ -5106,7 +5106,7 @@ src/app/components/manage/storage-path-list/storage-path-list.component.ts 52 - Do you really want to delete the storage path ""? + Esborrar ruta emmagatzematge ""? tag @@ -5114,7 +5114,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 36 - tag + etiqueta tags @@ -5122,7 +5122,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 37 - tags + etiquetes Do you really want to delete the tag ""? @@ -5130,7 +5130,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 53 - Do you really want to delete the tag ""? + Esborrar etiqueta ""? Clear selection @@ -5138,7 +5138,7 @@ src/app/components/manage/tasks/tasks.component.html 6 - Clear selection + Neteja selecció Refresh @@ -5146,7 +5146,7 @@ src/app/components/manage/tasks/tasks.component.html 20 - Refresh + Refresca Results @@ -5154,7 +5154,7 @@ src/app/components/manage/tasks/tasks.component.html 42 - Results + Resultats click for full output @@ -5162,7 +5162,7 @@ src/app/components/manage/tasks/tasks.component.html 66 - click for full output + clic per veure sortida completa Dismiss @@ -5174,7 +5174,7 @@ src/app/components/manage/tasks/tasks.component.ts 62 - Dismiss + Descarta Open Document @@ -5182,7 +5182,7 @@ src/app/components/manage/tasks/tasks.component.html 87 - Open Document + Obre Document Failed  @@ -5190,7 +5190,7 @@ src/app/components/manage/tasks/tasks.component.html 105 - Failed  + Fallida  Complete  @@ -5198,7 +5198,7 @@ src/app/components/manage/tasks/tasks.component.html 111 - Complete  + Completat  Started  @@ -5206,7 +5206,7 @@ src/app/components/manage/tasks/tasks.component.html 117 - Started  + Començat  Queued  @@ -5214,7 +5214,7 @@ src/app/components/manage/tasks/tasks.component.html 123 - Queued  + En cua  Dismiss selected @@ -5222,7 +5222,7 @@ src/app/components/manage/tasks/tasks.component.ts 26 - Dismiss selected + Descarta seleccionats Dismiss all @@ -5234,7 +5234,7 @@ src/app/components/manage/tasks/tasks.component.ts 60 - Dismiss all + Descarta tot Confirm Dismiss All @@ -5242,7 +5242,7 @@ src/app/components/manage/tasks/tasks.component.ts 58 - Confirm Dismiss All + Confirma Descarta Tot tasks? @@ -5250,7 +5250,7 @@ src/app/components/manage/tasks/tasks.component.ts 60 - tasks? + tasques? 404 Not Found @@ -5258,7 +5258,7 @@ src/app/components/not-found/not-found.component.html 7 - 404 Not Found + 404 No Trobat Auto: Learn matching automatically @@ -5266,7 +5266,7 @@ src/app/data/matching-model.ts 16 - Auto: Learn matching automatically + Auto: Aprenentatge automàtic Any word @@ -5274,7 +5274,7 @@ src/app/data/matching-model.ts 20 - Any word + Qualsevol paraula Any: Document contains any of these words (space separated) @@ -5282,7 +5282,7 @@ src/app/data/matching-model.ts 21 - Any: Document contains any of these words (space separated) + Qualsevol: Document conté qualsevol de les paraules (separades espai) All words @@ -5290,7 +5290,7 @@ src/app/data/matching-model.ts 25 - All words + Totes les paraules All: Document contains all of these words (space separated) @@ -5298,7 +5298,7 @@ src/app/data/matching-model.ts 26 - All: Document contains all of these words (space separated) + Qualsevol: Document conté qualsevol de les paraules (separades espai) Exact match @@ -5306,7 +5306,7 @@ src/app/data/matching-model.ts 30 - Exact match + Coincidència exacta Exact: Document contains this string @@ -5314,7 +5314,7 @@ src/app/data/matching-model.ts 31 - Exact: Document contains this string + Exacte: Document conté la cadena Regular expression @@ -5322,7 +5322,7 @@ src/app/data/matching-model.ts 35 - Regular expression + Expressió regular Regular expression: Document matches this regular expression @@ -5330,7 +5330,7 @@ src/app/data/matching-model.ts 36 - Regular expression: Document matches this regular expression + Expressió regular: el document coincideix amb aquesta expressió regular Fuzzy word @@ -5338,7 +5338,7 @@ src/app/data/matching-model.ts 40 - Fuzzy word + Paraula difusa Fuzzy: Document contains a word similar to this word @@ -5346,7 +5346,7 @@ src/app/data/matching-model.ts 41 - Fuzzy: Document contains a word similar to this word + Fuzzy: el document conté una paraula semblant a aquesta None: Disable matching @@ -5354,7 +5354,7 @@ src/app/data/matching-model.ts 46 - None: Disable matching + Cap: Deshabilita coincidències Warning: You have unsaved changes to your document(s). @@ -5362,7 +5362,7 @@ src/app/guards/dirty-doc.guard.ts 17 - Warning: You have unsaved changes to your document(s). + Alerta: Canvis no desats al document(s). Unsaved Changes @@ -5382,7 +5382,7 @@ src/app/services/open-documents.service.ts 131 - Unsaved Changes + Canvis no desats You have unsaved changes. @@ -5394,7 +5394,7 @@ src/app/services/open-documents.service.ts 132 - You have unsaved changes. + Hi han canvis sense desar. Are you sure you want to leave? @@ -5402,7 +5402,7 @@ src/app/guards/dirty-form.guard.ts 19 - Are you sure you want to leave? + Estàs segur que vols sortir? Leave page @@ -5410,7 +5410,7 @@ src/app/guards/dirty-form.guard.ts 21 - Leave page + Abandona la pàgina You have unsaved changes to the saved view @@ -5418,7 +5418,7 @@ src/app/guards/dirty-saved-view.guard.ts 34 - You have unsaved changes to the saved view + Canvis no desats a la vista guardada Are you sure you want to close this saved view? @@ -5426,7 +5426,7 @@ src/app/guards/dirty-saved-view.guard.ts 38 - Are you sure you want to close this saved view? + Segur que vols tancar la vista guardada? Save and close @@ -5434,7 +5434,7 @@ src/app/guards/dirty-saved-view.guard.ts 42 - Save and close + Desa i tanca You don't have permissions to do that @@ -5442,7 +5442,7 @@ src/app/guards/permissions.guard.ts 35 - You don't have permissions to do that + No tens permisos per fer això (no title) @@ -5450,7 +5450,7 @@ src/app/pipes/document-title.pipe.ts 11 - (no title) + (sense títol) Yes @@ -5458,7 +5458,7 @@ src/app/pipes/yes-no.pipe.ts 8 - Yes + No @@ -5466,7 +5466,7 @@ src/app/pipes/yes-no.pipe.ts 8 - No + No Document already exists. @@ -5474,7 +5474,7 @@ src/app/services/consumer-status.service.ts 15 - Document already exists. + Document ja existeix. Document with ASN already exists. @@ -5482,7 +5482,7 @@ src/app/services/consumer-status.service.ts 16 - Document with ASN already exists. + Ja existeix un document amb aquest ASN. File not found. @@ -5490,7 +5490,7 @@ src/app/services/consumer-status.service.ts 17 - File not found. + Arxiu no trobat. Pre-consume script does not exist. @@ -5499,7 +5499,7 @@ 18 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Pre-consume script does not exist. + Script pre-consum no existent. Error while executing pre-consume script. @@ -5508,7 +5508,7 @@ 19 Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Error while executing pre-consume script. + Error al executar script pre-consum. Post-consume script does not exist. @@ -5517,7 +5517,7 @@ 20 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Post-consume script does not exist. + Script post-consum no existeix. Error while executing post-consume script. @@ -5526,7 +5526,7 @@ 21 Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation - Error while executing post-consume script. + Error al executar script post-consum. Received new file. @@ -5534,7 +5534,7 @@ src/app/services/consumer-status.service.ts 22 - Received new file. + Nou fitxer rebut. File type not supported. @@ -5542,7 +5542,7 @@ src/app/services/consumer-status.service.ts 23 - File type not supported. + Tipus de fitxer no suportat. Processing document... @@ -5550,7 +5550,7 @@ src/app/services/consumer-status.service.ts 24 - Processing document... + Processant document... Generating thumbnail... @@ -5558,7 +5558,7 @@ src/app/services/consumer-status.service.ts 25 - Generating thumbnail... + Generant miniatures... Retrieving date from document... @@ -5566,7 +5566,7 @@ src/app/services/consumer-status.service.ts 26 - Retrieving date from document... + Recuperant data del document... Saving document... @@ -5574,7 +5574,7 @@ src/app/services/consumer-status.service.ts 27 - Saving document... + Desant document... Finished. @@ -5582,7 +5582,7 @@ src/app/services/consumer-status.service.ts 28 - Finished. + Acabat. You have unsaved changes to the document @@ -5590,7 +5590,7 @@ src/app/services/open-documents.service.ts 106 - You have unsaved changes to the document + Hi han canvis no desats al document Are you sure you want to close this document? @@ -5598,7 +5598,7 @@ src/app/services/open-documents.service.ts 110 - Are you sure you want to close this document? + Segur que vols tancar el document? Close document @@ -5606,7 +5606,7 @@ src/app/services/open-documents.service.ts 112 - Close document + Tanca document Are you sure you want to close all documents? @@ -5614,7 +5614,7 @@ src/app/services/open-documents.service.ts 133 - Are you sure you want to close all documents? + Segur que vols tancar tots els documents? Close documents @@ -5622,7 +5622,7 @@ src/app/services/open-documents.service.ts 135 - Close documents + Tanca documents Modified @@ -5630,7 +5630,7 @@ src/app/services/rest/document.service.ts 24 - Modified + Modificat Search score @@ -5639,7 +5639,7 @@ 32 Score is a value returned by the full text search engine and specifies how well a result matches the given query - Search score + Puntuació de cerca English (US) @@ -5647,7 +5647,7 @@ src/app/services/settings.service.ts 159 - English (US) + Anglès (US) Arabic @@ -5655,7 +5655,7 @@ src/app/services/settings.service.ts 165 - Arabic + Àrab Belarusian @@ -5663,183 +5663,191 @@ src/app/services/settings.service.ts 171 - Belarusian + Bielorús + + + Catalan + + src/app/services/settings.service.ts + 177 + + Català Czech src/app/services/settings.service.ts - 177 + 183 - Czech + Txec Danish src/app/services/settings.service.ts - 183 + 189 - Danish + Danès German src/app/services/settings.service.ts - 189 + 195 - German + Alemany English (GB) src/app/services/settings.service.ts - 195 + 201 - English (GB) + Anglès (GB) Spanish src/app/services/settings.service.ts - 201 + 207 - Spanish + Espanyol French src/app/services/settings.service.ts - 207 + 213 - French + Francès Italian src/app/services/settings.service.ts - 213 + 219 - Italian + Italià Luxembourgish src/app/services/settings.service.ts - 219 + 225 - Luxembourgish + Luxemburguès Dutch src/app/services/settings.service.ts - 225 + 231 - Dutch + Holandès Polish src/app/services/settings.service.ts - 231 + 237 - Polish + Polac Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 - Portuguese (Brazil) + Portuguès (Brasil) Portuguese src/app/services/settings.service.ts - 243 + 249 - Portuguese + Portuguès Romanian src/app/services/settings.service.ts - 249 + 255 - Romanian + Romanès Russian src/app/services/settings.service.ts - 255 + 261 - Russian + Rus Slovenian src/app/services/settings.service.ts - 261 + 267 - Slovenian + Eslovè Serbian src/app/services/settings.service.ts - 267 + 273 - Serbian + Serbi Swedish src/app/services/settings.service.ts - 273 + 279 - Swedish + Suec Turkish src/app/services/settings.service.ts - 279 + 285 - Turkish + Turc Chinese Simplified src/app/services/settings.service.ts - 285 + 291 - Chinese Simplified + Xinès Simplificat ISO 8601 src/app/services/settings.service.ts - 302 + 308 - ISO 8601 + ISO 8601 Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 - Successfully completed one-time migratration of settings to the database! + Completat correctament la migració de la configuració de la base de dades! Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 - Unable to migrate settings to the database, please try saving manually. + No es pot migrar la configuració de la base de dades, prova manualment. Information @@ -5847,7 +5855,7 @@ src/app/services/toast.service.ts 43 - Information + Informació Connecting... @@ -5855,7 +5863,7 @@ src/app/services/upload-documents.service.ts 33 - Connecting... + Connectant... Uploading... @@ -5863,7 +5871,7 @@ src/app/services/upload-documents.service.ts 45 - Uploading... + Carregant… Upload complete, waiting... @@ -5871,7 +5879,7 @@ src/app/services/upload-documents.service.ts 48 - Upload complete, waiting... + Càrrega completada, esperant... HTTP error: @@ -5879,7 +5887,7 @@ src/app/services/upload-documents.service.ts 64 - HTTP error: + HTTP error: diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index f69a316f7..16aecbafa 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusian + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Czech @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danish @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Němčina @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Angličtina (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Španělština @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Francouzština @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italština @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxembourgish @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Holandština @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polština @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugalština (Brazílie) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugalština @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Rumunština @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Ruština @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenian @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbian @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Švédština @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turkish @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinese Simplified @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Successfully completed one-time migratration of settings to the database! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Unable to migrate settings to the database, please try saving manually. diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 6a0ccfb39..c6ff803f9 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusian + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Tjekkisk @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Dansk @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Tysk @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Engelsk (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spansk @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Fransk @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italiensk @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxemburgsk @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Hollandsk @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polsk @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugisisk (Brasilien) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugisisk @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Romansk @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russisk @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenian @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbian @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Svensk @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turkish @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinese Simplified @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Successfully completed one-time migratration of settings to the database! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Unable to migrate settings to the database, please try saving manually. diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 877dd9e17..1b66fe8ef 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -673,7 +673,7 @@ src/app/components/app-frame/app-frame.component.html 155 - Speicherpfad + Speicherpfade File Tasks @@ -709,7 +709,7 @@ src/app/components/manage/logs/logs.component.html 1 - Protokoll + Protokolle Info @@ -809,7 +809,7 @@ src/app/components/manage/settings/settings.component.ts 593 - Ein Fehler ist beim Speichern der Einstellungen aufgetreten. + Es ist ein Fehler beim Speichern der Einstellungen aufgetreten. An error occurred while saving update checking settings. @@ -817,7 +817,7 @@ src/app/components/app-frame/app-frame.component.ts 222 - Es ist ein Fehler beim Speichern der Update Einstellungen aufgetreten. + Es ist ein Fehler beim Speichern der Update-Einstellungen aufgetreten. Clear @@ -1677,7 +1677,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 41 - E-mail als .eml verarbeiten + E-Mail als .eml verarbeiten Process message as .eml and attachments separately @@ -1685,7 +1685,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 45 - E-mail als .eml und Anhänge separat verarbeiten + E-Mail als .eml und Anhänge separat verarbeiten Delete @@ -3076,7 +3076,7 @@ src/app/components/document-detail/document-detail.component.ts 595,597 - Fehler beim Löschen des Dokuments + Error deleting document: Redo OCR confirm @@ -3506,7 +3506,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - Diese Aktion wird OCR permanent für ausgewählte(s) Dokument(e) wiederholen. + Diese Aktion wird die Texterkennung für ausgewählte(s) Dokument(e) wiederholen. Filter by correspondent @@ -3638,7 +3638,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 39 - Dokumententyp Filter umschalten + Dokumenttyp-Filter umschalten Toggle storage path filter @@ -3654,7 +3654,7 @@ src/app/components/document-list/document-list.component.html 11 - Nichts auswählen + Auswahl leeren Select page @@ -3826,7 +3826,7 @@ src/app/components/document-list/document-list.component.html 168 - Nach ‚ausgestellt am‘ sortieren + Nach „Ausgestellt am“ sortieren Sort by added date @@ -3834,7 +3834,7 @@ src/app/components/document-list/document-list.component.html 175 - Nach ‚hinzugefügt am‘ sortieren + Nach „Hinzugefügt am“ sortieren Added @@ -4150,7 +4150,7 @@ src/app/components/manage/document-type-list/document-type-list.component.ts 36 - dokumenttypen + Dokumenttyp document types @@ -4514,7 +4514,7 @@ src/app/components/manage/settings/settings.component.html 103 - Benutze Seitenleiste (nur Icons) + Benutze schlanke Seitenleiste (nur Icons) Dark mode @@ -4572,13 +4572,13 @@ Überprüfung auf Updates - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Die Überprüfung auf Updates erfolgt über Anfragen an die öffentliche Github API, um zu ermitteln, ob eine neue Version verfügbar ist. Das eigentliche Update der Anwendung muss weiterhin per Hand durchgeführt werden. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -4858,7 +4858,7 @@ src/app/components/manage/settings/settings.component.ts 583 - Jetzt neuladen + Jetzt neu laden Use system language @@ -5162,7 +5162,7 @@ src/app/components/manage/tasks/tasks.component.html 66 - für vollständige Ausgabe anklicken + Für vollständige Ausgabe anklicken Dismiss @@ -5354,7 +5354,7 @@ src/app/data/matching-model.ts 46 - Keine: Deaktiviere Übereinstimmung + Keine: Deaktiviere automatische Zuweisung Warning: You have unsaved changes to your document(s). @@ -5402,7 +5402,7 @@ src/app/guards/dirty-form.guard.ts 19 - Sind Sie sicher, dass Sie gehen möchten? + Sind Sie sicher, dass Sie diese Seite verlassen möchten? Leave page @@ -5426,7 +5426,7 @@ src/app/guards/dirty-saved-view.guard.ts 38 - Sind Sie sicher, dass Sie diese gespeicherte Ansicht schließen wollen? + Sind Sie sicher, dass Sie diese gespeicherte Ansicht schließen möchten? Save and close @@ -5434,7 +5434,7 @@ src/app/guards/dirty-saved-view.guard.ts 42 - Speichern und Schließen + Speichern und schließen You don't have permissions to do that @@ -5482,7 +5482,7 @@ src/app/services/consumer-status.service.ts 16 - Dokument existiert bereits. + Ein Dokument mit dieser ASN existiert bereits. File not found. @@ -5665,11 +5665,19 @@ Belarussisch + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Tschechisch @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Dänisch @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Deutsch @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Englisch (UK) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spanisch @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Französisch @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italienisch @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxemburgisch @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Niederländisch @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polnisch @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugiesisch (Brasilien) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugiesisch @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Rumänisch @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russisch @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slowenisch @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbisch @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Schwedisch @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Türkisch @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinesisch (vereinfacht) @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Einmalige Migration der Einstellungen in die Datenbank erfolgreich abgeschlossen! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Einstellungen konnten nicht in die Datenbank migriert werden, bitte versuchen Sie es manuell. diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index 589c400d2..119ab5d78 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -4572,13 +4572,13 @@ Comprobación de actualizaciones - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - La comprobación de actualizaciones funciona contactando con la API pública de Github para obtener la información de la última versión y así determinar si hay una nueva disponible. La propia aplicación debe ser actualizada manualmente. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Bielorruso + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Checo @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danés @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Alemán @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Inglés (Gran Bretaña) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Español @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Francés @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italiano @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxemburgués @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Alemán @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polaco @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugués (Brasil) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugués @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Rumano @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Ruso @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Esloveno @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbio @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Sueco @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turco @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chino simplificado @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 ¡Se completó con éxito la migración única de la configuración a la base de datos! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 No se puede migrar la configuración a la base de datos, por favor intente guardarla manualmente. diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index d36027e25..40ddb480c 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -3076,7 +3076,7 @@ src/app/components/document-detail/document-detail.component.ts 595,597 - Virhe poistettaessa asiakirjaa: + Error deleting document: Redo OCR confirm @@ -4572,13 +4572,13 @@ Tarkista päivitykset - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Päivityksen tarkistaminen tapahtuu pingaamalla Github API viimeisimmän version tarkistamiseksi. Sovelluksen varsinainen päivitys on silti suoritettava manuaalisesti. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Valkovenäjä + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Tšekki @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Tanska @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Saksa @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Englanti (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Espanja @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Ranska @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italia @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxemburg @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Hollanti @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Puola @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugali (Brasilia) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugali @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Romania @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Venäjä @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenia @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbia @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Ruotsi @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turkki @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Kiina (yksinkertaistettu) @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Kertaluontoinen asetusten migratointi tietokantaan suoritettu onnistuneesti! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Asetuksia ei saatu migratoitua tietokantaan. Yritä tallennusta manuaalisesti. diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 3739f0f8d..9350acaca 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -3076,7 +3076,7 @@ src/app/components/document-detail/document-detail.component.ts 595,597 - Erreur lors de la suppression du document: + Error deleting document: Redo OCR confirm @@ -4572,13 +4572,13 @@ Vérification des mises à jour - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - La vérification des mises à jour fonctionne en faisant un ping sur l'API publique Github pour la dernière version afin de déterminer si une nouvelle version est disponible. La mise à jour réelle de l'application doit toujours être effectuée manuellement. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Biélorusse + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Tchèque @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danois @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Allemand @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Anglais (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Espagnol @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Français @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italien @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxembourgeois @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Néerlandais @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polonais @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugais (Brésil) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugais @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Roumain @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russe @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovène @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbe @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Suédois @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turc @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinois simplifié @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 La migration des paramètres vers la base de données a été effectuée avec succès ! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Impossible de migrer les paramètres vers la base de données, veuillez essayer d’enregistrer manuellement. diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 84d7807dd..6f83e84a5 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ בלרוסית + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 צ'כית @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 דנית @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 גרמנית @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 אנגלית (בריטניה) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 ספרדית @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 צרפתית @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 איטלקית @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 לוקסמבורגית @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 הולנדית @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 פולנית @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 פורטוגזית (ברזיל) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 פורטוגזית @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 רומנית @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 רוסית @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 סלובנית @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 סרבית @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 שוודית @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 טורקית @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 סינית מופשטת @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 הושלמה בהצלחה העברה חד פעמית של הגדרות למסד הנתונים! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 לא ניתן לבצע העברה של הגדרות למסד הנתונים, נסה לשמור באופן ידני. diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index d64177b70..5923c0072 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusian + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Czech @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danish @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 German @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 English (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spanish @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 French @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italian @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxembourgish @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Dutch @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polish @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portuguese (Brazil) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portuguese @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Romanian @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russian @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenian @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbian @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Swedish @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turkish @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinese Simplified @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Successfully completed one-time migratration of settings to the database! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Unable to migrate settings to the database, please try saving manually. diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index 7523d5477..076262521 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusian + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Czech @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danish @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 German @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 English (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spanish @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 French @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italian @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxembourgish @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Dutch @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polish @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portuguese (Brazil) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portuguese @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Romanian @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russian @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenian @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbian @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Swedish @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turkish @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinese Simplified @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Successfully completed one-time migratration of settings to the database! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Unable to migrate settings to the database, please try saving manually. diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 4e3fd5035..3e41c6a94 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -4572,13 +4572,13 @@ Controllo aggiornamento - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Il controllo degli aggiornamenti funziona controllando l'ultima versione rilasciata tramite le API GitHub pubbliche for the pubbliche per determinare se sia disponibile una versione più recente. L'aggiornamento effettivo dell'app deve comunque essere eseguito manualmente. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Bielorusso + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Ceco @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danese @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Tedesco @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Inglese (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spagnolo @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Francese @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italiano @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Lussemburghese @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Olandese @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polacco @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portoghese (Brasile) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portoghese @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Rumeno @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russo @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Sloveno @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbo @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Svedese @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turco @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Cinese semplificato @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 La migrazione delle impostazioni al database è stata completata con successo! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Impossibile migrare le impostazioni nel database, prova a salvare manualmente. diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 0694ed0e8..ddd4833aa 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -4572,13 +4572,13 @@ Aktualiséierungs Kontroll - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusesch + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Tschechesch @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Dänesch @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Däitsch @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Englesch (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spuenesch @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Franséisch @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italienesch @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Lëtzebuergesch @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Hollännesch @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polnesch @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugisesch (Brasilien) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugisesch @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Rumänesch @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russesch @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slowenesch @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbesch @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Schwedesch @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Tierkesch @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinesesch (Vereinfacht) @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Successfully completed one-time migratration of settings to the database! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Unable to migrate settings to the database, please try saving manually. diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 96a6f293d..72aee18ed 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -4572,13 +4572,13 @@ Updatecontrole - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Updatecontrole werkt door het aanroepen van de publieke Github API voor de laatste release om te bepalen of er een nieuwe versie beschikbaar is. De daadwerkelijke update van de app moet nog steeds handmatig worden uitgevoerd. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Wit-Russisch + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Tsjechisch @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Deens @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Duits @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Engels (Brits) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spaans @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Frans @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italiaans @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxemburgs @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Nederlands @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Pools @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugees (Brazilië) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugees @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Roemeens @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russisch @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Sloveens @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Servisch @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Zweeds @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turks @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinees (vereenvoudigd) @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Eenmalige migratie van instellingen naar de database is succesvol voltooid! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Kan instellingen niet migreren naar de database, probeer handmatig op te slaan. diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index 06fc877a3..4778b76b5 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusian + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Czech @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danish @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 German @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 English (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spanish @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 French @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italian @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxembourgish @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Dutch @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polish @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portuguese (Brazil) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portuguese @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Romanian @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russian @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenian @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbian @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Swedish @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turkish @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Kinesisk forenklet @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Engangs migrering av innstillinger ble fullført til databasen! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Kunne ikke overføre innstillinger til databasen, prøv å lagre manuelt. diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 718dbd13a..fde1402e6 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Białoruski + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Czeski @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Duński @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Niemiecki @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Angielski (Wielka Brytania) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Hiszpański @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Francuski @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Włoski @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luksemburski @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Holenderski @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polski @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugalski (Brazylia) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugalski @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Rumuński @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Rosyjski @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Słoweński @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbski @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Szwedzki @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turecki @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chiński uproszczony @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Pomyślnie zakończona jednorazowa migracja ustawień do bazy danych! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Nie można przenieść ustawień do bazy danych, spróbuj zapisać ręcznie. diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index cec939649..ed3ad32e5 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusian + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Tcheco @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Dinamarquês @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Alemão @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Inglês (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Espanhol @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Francês @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italiano @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxemburguês @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Holandês @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polonês @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Português (Brasil) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Português @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Romeno @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russo @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenian @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbian @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Sueco @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turkish @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinês Simplificado @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 A migração de configurações para o banco de dados foi concluída com sucesso! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Não foi possível migrar as configurações para o banco de dados, por favor tente salvar manualmente. diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index e113715b5..2cf5d35f2 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Bielorrusso + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Checo @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Dinamarquês @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Alemão @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Inglês (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Espanhol @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Francês @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italiano @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxemburguês @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Holandês @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polaco @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Português (Brasil) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Português @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Romeno @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Russo @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Esloveno @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Sérvio @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Sueco @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turco @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinês Simplificado @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Successfully completed one-time migratration of settings to the database! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Unable to migrate settings to the database, please try saving manually. diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index a94a3e0f4..bd46fff14 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusian + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Cehă @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Daneză @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Germană @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Engleză (Britanică) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spaniolă @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Franceză @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italiană @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxemburgheză @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Olandeză @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Poloneză @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugheză (Brazilia) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugheză @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Română @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Rusă @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenian @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbian @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Suedeză @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turkish @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Chinese Simplified @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Successfully completed one-time migratration of settings to the database! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Unable to migrate settings to the database, please try saving manually. diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 30123ce09..afe7443a9 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -4572,13 +4572,13 @@ Проверка обновлений - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Проверка обновлений работает путем запроса последнего выпуска у публичного Github API, чтобы определить, доступна ли новая версия. Фактическое обновление приложения выполнятется вручную. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Белорусский + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Чешский @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Датский @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Немецкий @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Английский (Великобритании) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Испанский @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Французский @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Итальянский @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Люксембургский @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Голландский @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Польский @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Португальский (Бразилия) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Португальский @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Румынский @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Русский @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Словенский @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Сербский @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Шведский @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Турецкий @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Китайский упрощенный @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Одноразовая миграция настроек в базу данных завершена! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Не удается перенести настройки в базу данных, пожалуйста, попробуйте сохранить вручную. diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index f4fd98558..36fe490ed 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Beloruščina + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Češčina @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danščina @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Nemščina @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Angleščina (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Španščina @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Francoščina @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italijanščina @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luksemburški @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Nizozemščina @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Poljščina @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugalščina (Brazilija) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugalščina @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Romunščina @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Ruščina @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenščina @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Srbščina @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Švedščina @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turščina @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Poenostavljena kitajščina @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Uspešno opravljena enkratna migracija nastavitev v bazo! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Nastavitev ni mogoče preseliti v bazo podatkov, poskusite jih shraniti ročno. diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 3f468f40c..718d44c42 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -3076,7 +3076,7 @@ src/app/components/document-detail/document-detail.component.ts 595,597 - Greška prilikom brisanja dokumenta: + Error deleting document: Redo OCR confirm @@ -4572,13 +4572,13 @@ Provera ažuriranja - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Provera ažuriranja funkcioniše pingovanjem javnog Github API za najnovije izdanje da bi se utvrdilo da li je nova verzija dostupna. Stvarno ažuriranje aplikacije i dalje mora da se obavlja ručno. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Beloruski + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Češki @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danski @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Nemački @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Engleski (UK) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Španski @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Francuski @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italijanski @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luksemburški @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Holandski @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Poljski @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugalski (Brazil) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugalski @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Rumunski @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Ruski @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenački @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Srpski @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Švedski @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turski @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Kineski pojednostavljen @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Uspešno završena jednokratna migracija podešavanja u bazu podataka! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Nije moguće preneti podešavanja u bazu podataka, pokušajte da ih sačuvate ručno. diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index dba138e52..7e956497a 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusiska + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Tjeckiska @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danska @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Tyska @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 Engelska (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 Spanska @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Franska @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 Italienska @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Luxembourgish @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Holländska @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polska @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portugisiska (Brasilien) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portugisiska @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Rumänska @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Ryska @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovenska @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Serbiska @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 Svenska @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Turkiska @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Kinesiska (förenklad) @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Successfully completed one-time migratration of settings to the database! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Unable to migrate settings to the database, please try saving manually. diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index 4e9aae447..077318789 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ Belarusça + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 Çekçe @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 Danca @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 Almanca @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 İngilizce (GB) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 İspanyolca @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 Fransızca @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 İtalyanca @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 Lüksemburgca @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 Hollandaca @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 Polonyaca @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 Portekizce (Brezilya) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 Portekizce @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 Romence @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 Rusça @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 Slovakça @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 Sırpça @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 İsveççe @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 Türkçe @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 Basitleştirilmiş Çince @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 Successfully completed one-time migratration of settings to the database! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 Unable to migrate settings to the database, please try saving manually. diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 6cd843b52..3bef9c845 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -4572,13 +4572,13 @@ Update checking - - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. No tracking data is collected by the app in any way. @@ -5665,11 +5665,19 @@ 白俄罗斯语 + + Catalan + + src/app/services/settings.service.ts + 177 + + Catalan + Czech src/app/services/settings.service.ts - 177 + 183 捷克语 @@ -5677,7 +5685,7 @@ Danish src/app/services/settings.service.ts - 183 + 189 丹麦语 @@ -5685,7 +5693,7 @@ German src/app/services/settings.service.ts - 189 + 195 德语 @@ -5693,7 +5701,7 @@ English (GB) src/app/services/settings.service.ts - 195 + 201 英语(英国) @@ -5701,7 +5709,7 @@ Spanish src/app/services/settings.service.ts - 201 + 207 西班牙语 @@ -5709,7 +5717,7 @@ French src/app/services/settings.service.ts - 207 + 213 法语 @@ -5717,7 +5725,7 @@ Italian src/app/services/settings.service.ts - 213 + 219 意大利语 @@ -5725,7 +5733,7 @@ Luxembourgish src/app/services/settings.service.ts - 219 + 225 卢森堡语 @@ -5733,7 +5741,7 @@ Dutch src/app/services/settings.service.ts - 225 + 231 荷兰语 @@ -5741,7 +5749,7 @@ Polish src/app/services/settings.service.ts - 231 + 237 波兰语 @@ -5749,7 +5757,7 @@ Portuguese (Brazil) src/app/services/settings.service.ts - 237 + 243 葡萄牙语 (巴西) @@ -5757,7 +5765,7 @@ Portuguese src/app/services/settings.service.ts - 243 + 249 葡萄牙语 @@ -5765,7 +5773,7 @@ Romanian src/app/services/settings.service.ts - 249 + 255 罗马尼亚语 @@ -5773,7 +5781,7 @@ Russian src/app/services/settings.service.ts - 255 + 261 俄语 @@ -5781,7 +5789,7 @@ Slovenian src/app/services/settings.service.ts - 261 + 267 斯洛文尼亚语 @@ -5789,7 +5797,7 @@ Serbian src/app/services/settings.service.ts - 267 + 273 塞尔维亚语 @@ -5797,7 +5805,7 @@ Swedish src/app/services/settings.service.ts - 273 + 279 瑞典语 @@ -5805,7 +5813,7 @@ Turkish src/app/services/settings.service.ts - 279 + 285 土耳其语 @@ -5813,7 +5821,7 @@ Chinese Simplified src/app/services/settings.service.ts - 285 + 291 简体中文 @@ -5821,7 +5829,7 @@ ISO 8601 src/app/services/settings.service.ts - 302 + 308 ISO 8601 @@ -5829,7 +5837,7 @@ Successfully completed one-time migratration of settings to the database! src/app/services/settings.service.ts - 413 + 419 成功完成设置一次性迁移到数据库! @@ -5837,7 +5845,7 @@ Unable to migrate settings to the database, please try saving manually. src/app/services/settings.service.ts - 414 + 420 无法将设置迁移到数据库,请尝试手动保存。 diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index 94832f7a0..1b7174b34 100644 --- a/src/locale/ca_ES/LC_MESSAGES/django.po +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-03-03 19:15+0000\n" -"PO-Revision-Date: 2023-04-15 16:17\n" +"PO-Revision-Date: 2023-04-21 14:51\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -324,205 +324,205 @@ msgstr "any creació és" #: documents/models.py:425 msgid "created month is" -msgstr "" +msgstr "mes creació és" #: documents/models.py:426 msgid "created day is" -msgstr "" +msgstr "dia creació és" #: documents/models.py:427 msgid "added before" -msgstr "" +msgstr "afegit abans" #: documents/models.py:428 msgid "added after" -msgstr "" +msgstr "afegit després" #: documents/models.py:429 msgid "modified before" -msgstr "" +msgstr "modificat abans" #: documents/models.py:430 msgid "modified after" -msgstr "" +msgstr "modificat després" #: documents/models.py:431 msgid "does not have tag" -msgstr "" +msgstr "no té etiqueta" #: documents/models.py:432 msgid "does not have ASN" -msgstr "" +msgstr "no té ASN" #: documents/models.py:433 msgid "title or content contains" -msgstr "" +msgstr "títol o contingut conté" #: documents/models.py:434 msgid "fulltext query" -msgstr "" +msgstr "consulta de text complet" #: documents/models.py:435 msgid "more like this" -msgstr "" +msgstr "més com aquest" #: documents/models.py:436 msgid "has tags in" -msgstr "" +msgstr "té etiquetes a" #: documents/models.py:437 msgid "ASN greater than" -msgstr "" +msgstr "ASN més gran que" #: documents/models.py:438 msgid "ASN less than" -msgstr "" +msgstr "ASN menor que" #: documents/models.py:439 msgid "storage path is" -msgstr "" +msgstr "emmagatzematge és" #: documents/models.py:449 msgid "rule type" -msgstr "" +msgstr "tipus de regla" #: documents/models.py:451 msgid "value" -msgstr "" +msgstr "valor" #: documents/models.py:454 msgid "filter rule" -msgstr "" +msgstr "regla de filtre" #: documents/models.py:455 msgid "filter rules" -msgstr "" +msgstr "regla de filtres" #: documents/models.py:563 msgid "Task ID" -msgstr "" +msgstr "ID Tasca" #: documents/models.py:564 msgid "Celery ID for the Task that was run" -msgstr "" +msgstr "Celery ID per la tasca que es va executar" #: documents/models.py:569 msgid "Acknowledged" -msgstr "" +msgstr "Reconegut" #: documents/models.py:570 msgid "If the task is acknowledged via the frontend or API" -msgstr "" +msgstr "Si la tasca es reconeix mitjançant la interfície o l'API" #: documents/models.py:576 msgid "Task Filename" -msgstr "" +msgstr "Nom Arxiu tasca" #: documents/models.py:577 msgid "Name of the file which the Task was run for" -msgstr "" +msgstr "Nom del fitxer per al qual s'ha executat la tasca" #: documents/models.py:583 msgid "Task Name" -msgstr "" +msgstr "Nom tasca" #: documents/models.py:584 msgid "Name of the Task which was run" -msgstr "" +msgstr "Nom de la tasca que s'ha executat" #: documents/models.py:591 msgid "Task State" -msgstr "" +msgstr "Estat de tasca" #: documents/models.py:592 msgid "Current state of the task being run" -msgstr "" +msgstr "Estat actual de la tasca que s'està executant" #: documents/models.py:597 msgid "Created DateTime" -msgstr "" +msgstr "Data Hora Creació" #: documents/models.py:598 msgid "Datetime field when the task result was created in UTC" -msgstr "" +msgstr "Camp data i hora en què es va iniciar la tasca UTC" #: documents/models.py:603 msgid "Started DateTime" -msgstr "" +msgstr "Data Hora Creació" #: documents/models.py:604 msgid "Datetime field when the task was started in UTC" -msgstr "" +msgstr "Camp data i hora en què es va iniciar la tasca UTC" #: documents/models.py:609 msgid "Completed DateTime" -msgstr "" +msgstr "Data Hora completada" #: documents/models.py:610 msgid "Datetime field when the task was completed in UTC" -msgstr "" +msgstr "Camp data i hora en què es va completar la tasca UTC" #: documents/models.py:615 msgid "Result Data" -msgstr "" +msgstr "Dades del resultat" #: documents/models.py:617 msgid "The data returned by the task" -msgstr "" +msgstr "Dades retornades per la tasca" #: documents/models.py:626 msgid "Comment for the document" -msgstr "" +msgstr "Comentari pel document" #: documents/models.py:650 msgid "user" -msgstr "" +msgstr "usuari" #: documents/models.py:655 msgid "comment" -msgstr "" +msgstr "comentari" #: documents/models.py:656 msgid "comments" -msgstr "" +msgstr "comentaris" #: documents/serialisers.py:80 #, python-format msgid "Invalid regular expression: %(error)s" -msgstr "" +msgstr "Expressió regular invàlida: %(error)s" #: documents/serialisers.py:320 msgid "Invalid color." -msgstr "" +msgstr "Color Invàlid." #: documents/serialisers.py:700 #, python-format msgid "File type %(type)s not supported" -msgstr "" +msgstr "Tipus arxiu %(type)s no suportat" #: documents/serialisers.py:794 msgid "Invalid variable detected." -msgstr "" +msgstr "Variable detectada invàlida." #: documents/templates/index.html:78 msgid "Paperless-ngx is loading..." -msgstr "" +msgstr "Paperless-ngx carregant..." #: documents/templates/index.html:79 msgid "Still here?! Hmm, something might be wrong." -msgstr "" +msgstr "Encara Aquí?! Hmm, alguna cosa pot estar malament." #: documents/templates/index.html:79 msgid "Here's a link to the docs." -msgstr "" +msgstr "Link als documents." #: documents/templates/registration/logged_out.html:14 msgid "Paperless-ngx signed out" -msgstr "" +msgstr "Deslogat de Paperless-ngx" #: documents/templates/registration/logged_out.html:59 msgid "You have been successfully logged out. Bye!" -msgstr "" +msgstr "Deslogat correctament. Adéu!" #: documents/templates/registration/logged_out.html:60 msgid "Sign in again" @@ -726,189 +726,189 @@ msgstr "nom usuari" #: paperless_mail/models.py:39 msgid "password" -msgstr "" +msgstr "contrasenya" #: paperless_mail/models.py:42 msgid "character set" -msgstr "" +msgstr "joc de caràcters" #: paperless_mail/models.py:46 msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'." -msgstr "" +msgstr "El joc de caràcters utilitzat per comunicar amb el servidor de correu, com 'UTF-8' or 'US-ASCII'." #: paperless_mail/models.py:57 msgid "mail rule" -msgstr "" +msgstr "norma e-mail" #: paperless_mail/models.py:58 msgid "mail rules" -msgstr "" +msgstr "normes e-mail" #: paperless_mail/models.py:61 paperless_mail/models.py:69 msgid "Only process attachments." -msgstr "" +msgstr "Només processa adjunts." #: paperless_mail/models.py:62 msgid "Process full Mail (with embedded attachments in file) as .eml" -msgstr "" +msgstr "Processa el correu complet (amb fitxers adjunts incrustats al fitxer) com a .eml" #: paperless_mail/models.py:64 msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" -msgstr "" +msgstr "Processa el correu complet (amb fitxers adjunts incrustats al fitxer) com a .eml + processa adjunts com a documents separats" #: paperless_mail/models.py:70 msgid "Process all files, including 'inline' attachments." -msgstr "" +msgstr "Processa tots els fitxers, inclosos els fitxers adjunts 'in line'." #: paperless_mail/models.py:73 msgid "Delete" -msgstr "" +msgstr "Esborra" #: paperless_mail/models.py:74 msgid "Move to specified folder" -msgstr "" +msgstr "Mou a carpeta especificada" #: paperless_mail/models.py:75 msgid "Mark as read, don't process read mails" -msgstr "" +msgstr "Marca com a llegit, no processeu els correus llegits" #: paperless_mail/models.py:76 msgid "Flag the mail, don't process flagged mails" -msgstr "" +msgstr "Marca el correu, no processeu els missatges marcats" #: paperless_mail/models.py:77 msgid "Tag the mail with specified tag, don't process tagged mails" -msgstr "" +msgstr "Etiqueta el correu amb l'etiqueta especificada, no processeu correus etiquetats" #: paperless_mail/models.py:80 msgid "Use subject as title" -msgstr "" +msgstr "Utilitza assumpte com a títol" #: paperless_mail/models.py:81 msgid "Use attachment filename as title" -msgstr "" +msgstr "Utilitzeu el nom del fitxer adjunt com a títol" #: paperless_mail/models.py:84 msgid "Do not assign a correspondent" -msgstr "" +msgstr "No assignar corresponsal" #: paperless_mail/models.py:85 msgid "Use mail address" -msgstr "" +msgstr "Utilitza adreça correu" #: paperless_mail/models.py:86 msgid "Use name (or mail address if not available)" -msgstr "" +msgstr "Utilitza nom (o adreça de correu si no disponible)" #: paperless_mail/models.py:87 msgid "Use correspondent selected below" -msgstr "" +msgstr "Utilitza el corresponsal seleccionat a continuació" #: paperless_mail/models.py:91 msgid "order" -msgstr "" +msgstr "ordena" #: paperless_mail/models.py:97 msgid "account" -msgstr "" +msgstr "compte" #: paperless_mail/models.py:101 paperless_mail/models.py:231 msgid "folder" -msgstr "" +msgstr "carpeta" #: paperless_mail/models.py:105 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." -msgstr "" +msgstr "Subcarpetes han d'estar separades per un delimitador, sovint un punt ('.') o una barra inclinada ('/'), però varia segons el servidor de correu." #: paperless_mail/models.py:111 msgid "filter from" -msgstr "" +msgstr "filtra de" #: paperless_mail/models.py:117 msgid "filter subject" -msgstr "" +msgstr "filtra assumpte" #: paperless_mail/models.py:123 msgid "filter body" -msgstr "" +msgstr "filtra cos" #: paperless_mail/models.py:130 msgid "filter attachment filename" -msgstr "" +msgstr "filtra nom adjunt" #: paperless_mail/models.py:135 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" +msgstr "Consumiu només documents que coincideixin completament amb aquest nom de fitxer si s'especifica. Es permeten els comodins com ara *.pdf o *factura*. Cas insensitiu." #: paperless_mail/models.py:142 msgid "maximum age" -msgstr "" +msgstr "temps màxim" #: paperless_mail/models.py:144 msgid "Specified in days." -msgstr "" +msgstr "Especificat en dies." #: paperless_mail/models.py:148 msgid "attachment type" -msgstr "" +msgstr "tipus de fitxer adjunt" #: paperless_mail/models.py:152 msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." -msgstr "" +msgstr "Els fitxers adjunts inline inclouen imatges incrustades, per la qual cosa és millor combinar aquesta opció amb un filtre de nom de fitxer." #: paperless_mail/models.py:158 msgid "consumption scope" -msgstr "" +msgstr "àmbit de consum" #: paperless_mail/models.py:164 msgid "action" -msgstr "" +msgstr "acció" #: paperless_mail/models.py:170 msgid "action parameter" -msgstr "" +msgstr "paràmetre d'accío" #: paperless_mail/models.py:175 msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." -msgstr "" +msgstr "Paràmetre addicional per a l'acció seleccionada anteriorment, la carpeta de destinació de l'acció de moure a la carpeta. Les subcarpetes han d'estar separades per punts." #: paperless_mail/models.py:183 msgid "assign title from" -msgstr "" +msgstr "assignar títol desde" #: paperless_mail/models.py:191 msgid "assign this tag" -msgstr "" +msgstr "assigna aquesta etiqueta" #: paperless_mail/models.py:199 msgid "assign this document type" -msgstr "" +msgstr "assigna aquest tipus de document" #: paperless_mail/models.py:203 msgid "assign correspondent from" -msgstr "" +msgstr "assigna corresponsal des de" #: paperless_mail/models.py:213 msgid "assign this correspondent" -msgstr "" +msgstr "assigna aquest corresponsal" #: paperless_mail/models.py:239 msgid "uid" -msgstr "" +msgstr "uid" #: paperless_mail/models.py:247 msgid "subject" -msgstr "" +msgstr "assumpte" #: paperless_mail/models.py:255 msgid "received" -msgstr "" +msgstr "rebut" #: paperless_mail/models.py:262 msgid "processed" -msgstr "" +msgstr "processat" #: paperless_mail/models.py:268 msgid "status" -msgstr "" +msgstr "estat" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 98f6eb480..251dff2c6 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: 2023-03-03 19:15+0000\n" -"PO-Revision-Date: 2023-04-11 08:14\n" +"PO-Revision-Date: 2023-04-20 06:59\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -252,7 +252,7 @@ msgstr "Protokoll" #: documents/models.py:381 msgid "logs" -msgstr "Protokoll" +msgstr "Protokolle" #: documents/models.py:391 documents/models.py:446 msgid "saved view" diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po index bad62087f..d29cb50c5 100644 --- a/src/locale/id_ID/LC_MESSAGES/django.po +++ b/src/locale/id_ID/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-03-03 19:15+0000\n" -"PO-Revision-Date: 2023-04-17 05:24\n" +"PO-Revision-Date: 2023-04-20 13:20\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -43,7 +43,7 @@ msgstr "Ekspresi reguler" #: documents/models.py:41 msgid "Fuzzy word" -msgstr "" +msgstr "Kata samar" #: documents/models.py:42 msgid "Automatic" @@ -64,7 +64,7 @@ msgstr "mencocokkan algoritma" #: documents/models.py:55 msgid "is insensitive" -msgstr "" +msgstr "tidak sensitif" #: documents/models.py:71 msgid "owner" @@ -84,19 +84,19 @@ msgstr "warna" #: documents/models.py:90 msgid "is inbox tag" -msgstr "" +msgstr "tag kotak masuk" #: documents/models.py:93 msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." -msgstr "" +msgstr "Tandai tag ini sebagai tag kotak masuk: Semua dokumen yang baru akan di tag dengan tag kotak masuk." #: documents/models.py:99 msgid "tag" -msgstr "" +msgstr "tag" #: documents/models.py:100 documents/models.py:174 msgid "tags" -msgstr "" +msgstr "tandai" #: documents/models.py:105 documents/models.py:156 msgid "document type" @@ -136,27 +136,27 @@ msgstr "konten" #: documents/models.py:163 msgid "The raw, text-only data of the document. This field is primarily used for searching." -msgstr "" +msgstr "Raw, hanya data text dari dokumen. Bagian ini adalah bagian utama yang di gunakan untuk pencarian." #: documents/models.py:168 msgid "mime type" -msgstr "" +msgstr "mime type" #: documents/models.py:178 msgid "checksum" -msgstr "" +msgstr "checksum" #: documents/models.py:182 msgid "The checksum of the original document." -msgstr "" +msgstr "Checksum dari dokumen yang asli." #: documents/models.py:186 msgid "archive checksum" -msgstr "" +msgstr "checksum arsip" #: documents/models.py:191 msgid "The checksum of the archived document." -msgstr "" +msgstr "Checksum dari dokumen yang di arsip." #: documents/models.py:194 documents/models.py:376 documents/models.py:630 msgid "created" @@ -180,15 +180,15 @@ msgstr "nama berkas" #: documents/models.py:225 msgid "Current filename in storage" -msgstr "" +msgstr "Nama file saat ini yang tersimpan" #: documents/models.py:229 msgid "archive filename" -msgstr "" +msgstr "nama file arsip" #: documents/models.py:235 msgid "Current archive filename in storage" -msgstr "" +msgstr "Nama file arsip saat ini yang tersimpan" #: documents/models.py:239 msgid "original filename" @@ -200,11 +200,11 @@ msgstr "Nama awal file pada saat diunggah" #: documents/models.py:252 msgid "archive serial number" -msgstr "" +msgstr "nomor serial arsip" #: documents/models.py:262 msgid "The position of this document in your physical document archive." -msgstr "" +msgstr "Posisi dokumen ini pada arsip fisik dokumen yang di binder." #: documents/models.py:268 documents/models.py:641 msgid "document" From 405769dc976942305533d766afc6a0a872b6cf45 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 24 Apr 2023 13:10:35 -0700 Subject: [PATCH 13/30] Update environment.prod.ts --- 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 46e74923c..228852877 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: '2', appTitle: 'Paperless-ngx', - version: '1.14.0', + version: '1.14.0-dev', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', From 434d1fe225f1bcad0d76b68387e0e5d06938be08 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 24 Apr 2023 20:55:01 -0700 Subject: [PATCH 14/30] Handle delete mail action with no filters --- src/paperless_mail/mail.py | 3 ++- src/paperless_mail/tests/test_mail.py | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/src/paperless_mail/mail.py b/src/paperless_mail/mail.py index d792b5a97..a4a25fa0a 100644 --- a/src/paperless_mail/mail.py +++ b/src/paperless_mail/mail.py @@ -381,7 +381,8 @@ def make_criterias(rule): rule_query = get_rule_action(rule).get_criteria() if isinstance(rule_query, dict): - return AND(**rule_query, **criterias) + if len(rule_query) != 0 or len(criterias) != 0: + return AND(**rule_query, **criterias) else: return AND(rule_query, **criterias) diff --git a/src/paperless_mail/tests/test_mail.py b/src/paperless_mail/tests/test_mail.py index 1f482f336..4ad79563b 100644 --- a/src/paperless_mail/tests/test_mail.py +++ b/src/paperless_mail/tests/test_mail.py @@ -612,6 +612,29 @@ class TestMail( self.assertEqual(len(self.bogus_mailbox.messages), 1) + def test_handle_mail_account_delete_no_filters(self): + + account = MailAccount.objects.create( + name="test", + imap_server="", + username="admin", + password="secret", + ) + + _ = MailRule.objects.create( + name="testrule", + account=account, + action=MailRule.MailAction.DELETE, + maximum_age=0, + ) + + self.assertEqual(len(self.bogus_mailbox.messages), 3) + + self.mail_account_handler.handle_mail_account(account) + self.apply_mail_actions() + + self.assertEqual(len(self.bogus_mailbox.messages), 0) + def test_handle_mail_account_flag(self): account = MailAccount.objects.create( name="test", From c5fafdda11971704854b03bb74dc2cef70e00b5e Mon Sep 17 00:00:00 2001 From: pascal Date: Tue, 25 Apr 2023 16:22:16 +0200 Subject: [PATCH 15/30] Fix typos and wrong version number in doc --- docs/usage.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/usage.md b/docs/usage.md index 14adef26b..04449177f 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -204,7 +204,7 @@ for details. ## Permissions -As of version 1.13.0 Paperless-ngx added core support for user / group permissions. Permissions is +As of version 1.14.0 Paperless-ngx added core support for user / group permissions. Permissions is based around an object 'owner' and 'view' and 'edit' permissions can be granted to other users or groups. @@ -212,13 +212,13 @@ Permissions uses the built-in user model of the backend framework, Django. !!! note - After migration to version 1.13.0 all existing documents, tags etc. will have no explicit owner + After migration to version 1.14.0 all existing documents, tags etc. will have no explicit owner set which means they will be visible / editable by all users. Once an object has an owner set, only the owner can explicitly grant / revoke permissions. !!! note - When first migrating to permissions it is recommended to user a 'superuser' account (which + When first migrating to permissions it is recommended to use a 'superuser' account (which would usually have been setup during installation) to ensure you have full permissions. Note that superusers have access to all objects. @@ -230,7 +230,7 @@ do not have an owner set. ### Users and Groups -Paperless-ngx versions after 1.13.0 allow creating and editing users and groups via the 'frontend' UI. +Paperless-ngx versions after 1.14.0 allow creating and editing users and groups via the 'frontend' UI. These can be found under Settings > Users & Groups, assuming the user has access. If a user is designated as a member of a group those permissions will be inherited and this is reflected in the UI. Explicit permissions can be granted to limit access to certain parts of the UI (and corresponding API endpoints). From 0557a15fa87e82b0571a891d603acaa937ceffff Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 25 Apr 2023 07:22:16 -0700 Subject: [PATCH 16/30] Update src/paperless_mail/mail.py with code suggestions Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com> --- src/paperless_mail/mail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paperless_mail/mail.py b/src/paperless_mail/mail.py index a4a25fa0a..1014e4035 100644 --- a/src/paperless_mail/mail.py +++ b/src/paperless_mail/mail.py @@ -381,7 +381,7 @@ def make_criterias(rule): rule_query = get_rule_action(rule).get_criteria() if isinstance(rule_query, dict): - if len(rule_query) != 0 or len(criterias) != 0: + if len(rule_query) or len(criterias): return AND(**rule_query, **criterias) else: return AND(rule_query, **criterias) From 319aa39925dcdb10d1cc7fe34aa3633dc89c5dad Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Tue, 25 Apr 2023 09:50:23 -0700 Subject: [PATCH 17/30] Selectivly upgrade redis-py to resolve issues with socket connections --- Pipfile.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Pipfile.lock b/Pipfile.lock index 4e738d14a..99340dc16 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "8395f25f876a71a7307a55dd542e69a4cdcb3be3be38c4e89ed06ce3d52a5345" + "sha256": "77248fee6dad10b9e5189e9ba80f7c506c9f49c875bac8b259e90dadecba03f1" }, "pipfile-spec": 6, "requires": {}, @@ -1508,11 +1508,11 @@ "hiredis" ], "hashes": [ - "sha256:56732e156fe31801c4f43396bd3ca0c2a7f6f83d7936798531b9848d103381aa", - "sha256:7df17a0a2b72a4c8895b462dd07616c51b1dcb48fdd7ecb7b6f4bf39ecb2e94e" + "sha256:2c19e6767c474f2e85167909061d525ed65bea9301c0770bb151e041b7ac89a2", + "sha256:73ec35da4da267d6847e47f68730fdd5f62e2ca69e3ef5885c6a78a9374c3893" ], "index": "pypi", - "version": "==4.5.3" + "version": "==4.5.4" }, "regex": { "hashes": [ From b34dfcd72f4fa6392ddb84e2722e684cfbd7bb77 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Tue, 25 Apr 2023 11:07:35 -0700 Subject: [PATCH 18/30] Fixes StoragePath missing the owned or granted filter --- src/documents/views.py | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/documents/views.py b/src/documents/views.py index 1edbdccc3..d44016834 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -597,7 +597,6 @@ class UnifiedSearchViewSet(DocumentViewSet): class LogViewSet(ViewSet): - permission_classes = (IsAuthenticated, PaperlessAdminPermissions) log_files = ["paperless", "mail"] @@ -643,7 +642,6 @@ class SavedViewViewSet(ModelViewSet, PassUserMixin): class BulkEditView(GenericAPIView): - permission_classes = (IsAuthenticated,) serializer_class = BulkEditSerializer parser_classes = (parsers.JSONParser,) @@ -665,13 +663,11 @@ class BulkEditView(GenericAPIView): class PostDocumentView(GenericAPIView): - permission_classes = (IsAuthenticated,) serializer_class = PostDocumentSerializer parser_classes = (parsers.MultiPartParser,) def post(self, request, *args, **kwargs): - serializer = self.get_serializer(data=request.data) serializer.is_valid(raise_exception=True) @@ -719,7 +715,6 @@ class PostDocumentView(GenericAPIView): class SelectionDataView(GenericAPIView): - permission_classes = (IsAuthenticated,) serializer_class = DocumentListSerializer parser_classes = (parsers.MultiPartParser, parsers.JSONParser) @@ -777,7 +772,6 @@ class SelectionDataView(GenericAPIView): class SearchAutoCompleteView(APIView): - permission_classes = (IsAuthenticated,) def get(self, request, format=None): @@ -801,7 +795,6 @@ class SearchAutoCompleteView(APIView): class StatisticsView(APIView): - permission_classes = (IsAuthenticated,) def get(self, request, format=None): @@ -843,7 +836,6 @@ class StatisticsView(APIView): class BulkDownloadView(GenericAPIView): - permission_classes = (IsAuthenticated,) serializer_class = BulkDownloadSerializer parser_classes = (parsers.JSONParser,) @@ -938,13 +930,16 @@ class StoragePathViewSet(ModelViewSet, PassUserMixin): serializer_class = StoragePathSerializer pagination_class = StandardPagination permission_classes = (IsAuthenticated, PaperlessObjectPermissions) - filter_backends = (DjangoFilterBackend, OrderingFilter) + filter_backends = ( + DjangoFilterBackend, + OrderingFilter, + ObjectOwnedOrGrantedPermissionsFilter, + ) filterset_class = StoragePathFilterSet ordering_fields = ("name", "path", "matching_algorithm", "match", "document_count") class UiSettingsView(GenericAPIView): - permission_classes = (IsAuthenticated,) serializer_class = UiSettingsViewSerializer @@ -993,7 +988,6 @@ class UiSettingsView(GenericAPIView): class TasksViewSet(ReadOnlyModelViewSet): - permission_classes = (IsAuthenticated,) serializer_class = TasksViewSerializer @@ -1012,7 +1006,6 @@ class TasksViewSet(ReadOnlyModelViewSet): class AcknowledgeTasksView(GenericAPIView): - permission_classes = (IsAuthenticated,) serializer_class = AcknowledgeTasksViewSerializer From 45ecec5623029a9cba918c59f29d6444a26ccd4e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 25 Apr 2023 22:06:16 -0700 Subject: [PATCH 19/30] Fix dropdown Private items with empty set --- .../app/components/common/input/select/select.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/common/input/select/select.component.ts b/src-ui/src/app/components/common/input/select/select.component.ts index 3d81f6f49..73f2a3a8d 100644 --- a/src-ui/src/app/components/common/input/select/select.component.ts +++ b/src-ui/src/app/components/common/input/select/select.component.ts @@ -43,8 +43,8 @@ export class SelectComponent extends AbstractInputComponent { } checkForPrivateItems(value: any) { - if (Array.isArray(value) && value.length > 0) { - value.forEach((id) => this.checkForPrivateItem(id)) + if (Array.isArray(value)) { + if (value.length > 0) value.forEach((id) => this.checkForPrivateItem(id)) } else { this.checkForPrivateItem(value) } From 8a505e3b660289ab5a00280c0b0bcb79e86a7d2e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 24 Apr 2023 22:31:34 -0700 Subject: [PATCH 20/30] Specify backend for auto-login --- src/paperless/auth.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/paperless/auth.py b/src/paperless/auth.py index 368d3e47b..ec853743e 100644 --- a/src/paperless/auth.py +++ b/src/paperless/auth.py @@ -10,7 +10,11 @@ class AutoLoginMiddleware(MiddlewareMixin): def process_request(self, request): try: request.user = User.objects.get(username=settings.AUTO_LOGIN_USERNAME) - auth.login(request, request.user) + auth.login( + request=request, + user=request.user, + backend="django.contrib.auth.backends.ModelBackend", + ) except User.DoesNotExist: pass From 1fb03a755f8b2c0c3dd983df7a4f4245ed13bfcf Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 25 Apr 2023 09:20:56 -0700 Subject: [PATCH 21/30] Respect permissions on document view actions --- src/documents/permissions.py | 6 ++++ src/documents/tests/test_api.py | 61 +++++++++++++++++++++++++++++++++ src/documents/views.py | 35 +++++++++++++++++-- 3 files changed, 99 insertions(+), 3 deletions(-) diff --git a/src/documents/permissions.py b/src/documents/permissions.py index d4114e488..0bfff031c 100644 --- a/src/documents/permissions.py +++ b/src/documents/permissions.py @@ -9,6 +9,7 @@ from guardian.shortcuts import get_users_with_perms from guardian.shortcuts import remove_perm from rest_framework.permissions import BasePermission from rest_framework.permissions import DjangoObjectPermissions +from guardian.core import ObjectPermissionChecker class PaperlessObjectPermissions(DjangoObjectPermissions): @@ -114,3 +115,8 @@ def get_objects_for_user_owner_aware(user, perms, Model): accept_global_perms=False, ) return objects_owned | objects_unowned | objects_with_perms + + +def has_perms_owner_aware(user, perms, obj): + checker = ObjectPermissionChecker(user) + return obj.owner is None or obj.owner == user or checker.has_perm(perms, obj) diff --git a/src/documents/tests/test_api.py b/src/documents/tests/test_api.py index 6cd6b610a..ba5c58f3f 100644 --- a/src/documents/tests/test_api.py +++ b/src/documents/tests/test_api.py @@ -206,6 +206,67 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertEqual(response.content, content_thumbnail) + def test_document_actions_with_perms(self): + """ + GIVEN: + - Document with owner and without granted permissions + - User is then granted permissions + WHEN: + - User tries to load preview, thumbnail + THEN: + - Initially, HTTP 403 Forbidden + - With permissions, HTTP 200 OK + """ + _, filename = tempfile.mkstemp(dir=self.dirs.originals_dir) + + content = b"This is a test" + content_thumbnail = b"thumbnail content" + + with open(filename, "wb") as f: + f.write(content) + + user1 = User.objects.create_user(username="test1") + user2 = User.objects.create_user(username="test2") + user1.user_permissions.add(*Permission.objects.filter(codename="view_document")) + user2.user_permissions.add(*Permission.objects.filter(codename="view_document")) + + self.client.force_authenticate(user2) + + doc = Document.objects.create( + title="none", + filename=os.path.basename(filename), + mime_type="application/pdf", + owner=user1, + ) + + with open( + os.path.join(self.dirs.thumbnail_dir, f"{doc.pk:07d}.webp"), + "wb", + ) as f: + f.write(content_thumbnail) + + response = self.client.get(f"/api/documents/{doc.pk}/download/") + self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN) + + response = self.client.get(f"/api/documents/{doc.pk}/preview/") + self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN) + + response = self.client.get(f"/api/documents/{doc.pk}/thumb/") + self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN) + + from guardian.shortcuts import assign_perm + + assign_perm("view_document", user2, doc) + + response = self.client.get(f"/api/documents/{doc.pk}/download/") + self.assertEqual(response.status_code, status.HTTP_200_OK) + + response = self.client.get(f"/api/documents/{doc.pk}/preview/") + self.assertEqual(response.status_code, status.HTTP_200_OK) + + response = self.client.get(f"/api/documents/{doc.pk}/thumb/") + self.assertEqual(response.status_code, status.HTTP_200_OK) + @override_settings(FILENAME_FORMAT="") def test_download_with_archive(self): diff --git a/src/documents/views.py b/src/documents/views.py index 1edbdccc3..446bb2ecc 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -23,7 +23,7 @@ from django.db.models import Sum from django.db.models import When from django.db.models.functions import Length from django.db.models.functions import Lower -from django.http import Http404 +from django.http import Http404, HttpResponseForbidden from django.http import HttpResponse from django.http import HttpResponseBadRequest from django.shortcuts import get_object_or_404 @@ -33,7 +33,7 @@ from django.views.decorators.cache import cache_control from django.views.generic import TemplateView from django_filters.rest_framework import DjangoFilterBackend from documents.filters import ObjectOwnedOrGrantedPermissionsFilter -from documents.permissions import PaperlessAdminPermissions +from documents.permissions import PaperlessAdminPermissions, has_perms_owner_aware from documents.permissions import PaperlessObjectPermissions from documents.tasks import consume_file from langdetect import detect @@ -59,7 +59,6 @@ from rest_framework.viewsets import GenericViewSet from rest_framework.viewsets import ModelViewSet from rest_framework.viewsets import ReadOnlyModelViewSet from rest_framework.viewsets import ViewSet - from .bulk_download import ArchiveOnlyStrategy from .bulk_download import OriginalAndArchiveStrategy from .bulk_download import OriginalsOnlyStrategy @@ -295,6 +294,12 @@ class DocumentViewSet( def file_response(self, pk, request, disposition): doc = Document.objects.get(id=pk) + if request.user is not None and not has_perms_owner_aware( + request.user, + "view_document", + doc, + ): + return HttpResponseForbidden("Insufficient permissions") if not self.original_requested(request) and doc.has_archive_version: file_handle = doc.archive_file filename = doc.get_public_filename(archive=True) @@ -354,6 +359,12 @@ class DocumentViewSet( def metadata(self, request, pk=None): try: doc = Document.objects.get(pk=pk) + if request.user is not None and not has_perms_owner_aware( + request.user, + "view_document", + doc, + ): + return HttpResponseForbidden("Insufficient permissions") except Document.DoesNotExist: raise Http404 @@ -391,6 +402,12 @@ class DocumentViewSet( @action(methods=["get"], detail=True) def suggestions(self, request, pk=None): doc = get_object_or_404(Document, pk=pk) + if request.user is not None and not has_perms_owner_aware( + request.user, + "view_document", + doc, + ): + return HttpResponseForbidden("Insufficient permissions") classifier = load_classifier() @@ -430,6 +447,12 @@ class DocumentViewSet( def thumb(self, request, pk=None): try: doc = Document.objects.get(id=pk) + if request.user is not None and not has_perms_owner_aware( + request.user, + "view_document", + doc, + ): + return HttpResponseForbidden("Insufficient permissions") if doc.storage_type == Document.STORAGE_TYPE_GPG: handle = GnuPG.decrypted(doc.thumbnail_file) else: @@ -468,6 +491,12 @@ class DocumentViewSet( def notes(self, request, pk=None): try: doc = Document.objects.get(pk=pk) + if request.user is not None and not has_perms_owner_aware( + request.user, + "view_document", + doc, + ): + return HttpResponseForbidden("Insufficient permissions") except Document.DoesNotExist: raise Http404 From 7f74a854001b9362eac27a4c9cfce3e1ed59516e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 25 Apr 2023 23:44:36 -0700 Subject: [PATCH 22/30] Increment API version for 1.14.1+ --- src/paperless/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 77a8cc4e4..e556e6293 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -298,7 +298,7 @@ REST_FRAMEWORK = { "DEFAULT_VERSION": "1", # Make sure these are ordered and that the most recent version appears # last - "ALLOWED_VERSIONS": ["1", "2"], + "ALLOWED_VERSIONS": ["1", "2", "3"], } if DEBUG: From a2d4d1686758365f41c0dd52dcaf8ab5a3369b33 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Tue, 25 Apr 2023 12:17:37 -0700 Subject: [PATCH 23/30] Make the importer a little more robust against some types of errors --- .../management/commands/document_importer.py | 80 ++++++++++------- src/documents/tests/test_importer.py | 85 ++++++++++++++++++- .../tests/test_management_exporter.py | 10 +-- 3 files changed, 136 insertions(+), 39 deletions(-) diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py index d68f04ac3..0676117e7 100644 --- a/src/documents/management/commands/document_importer.py +++ b/src/documents/management/commands/document_importer.py @@ -64,9 +64,9 @@ class Command(BaseCommand): logging.getLogger().handlers[0].level = logging.ERROR - self.source = options["source"] + self.source = Path(options["source"]).resolve() - if not os.path.exists(self.source): + if not self.source.exists(): raise CommandError("That path doesn't exist") if not os.access(self.source, os.R_OK): @@ -74,39 +74,39 @@ class Command(BaseCommand): manifest_paths = [] - main_manifest_path = os.path.normpath( - os.path.join(self.source, "manifest.json"), - ) + main_manifest_path = self.source / "manifest.json" + self._check_manifest_exists(main_manifest_path) - with open(main_manifest_path) as f: - self.manifest = json.load(f) + with main_manifest_path.open() as infile: + self.manifest = json.load(infile) manifest_paths.append(main_manifest_path) for file in Path(self.source).glob("**/*-manifest.json"): - with open(file) as f: - self.manifest += json.load(f) + with file.open() as infile: + self.manifest += json.load(infile) manifest_paths.append(file) - version_path = os.path.normpath(os.path.join(self.source, "version.json")) - if os.path.exists(version_path): - with open(version_path) as f: - self.version = json.load(f)["version"] - # Provide an initial warning if needed to the user - if self.version != version.__full_version_str__: - self.stdout.write( - self.style.WARNING( - "Version mismatch: " - f"Currently {version.__full_version_str__}," - f" importing {self.version}." - " Continuing, but import may fail.", - ), - ) + version_path = self.source / "version.json" + if version_path.exists(): + with version_path.open() as infile: + self.version = json.load(infile)["version"] + # Provide an initial warning if needed to the user + if self.version != version.__full_version_str__: + self.stdout.write( + self.style.WARNING( + "Version mismatch: " + f"Currently {version.__full_version_str__}," + f" importing {self.version}." + " Continuing, but import may fail.", + ), + ) else: self.stdout.write(self.style.NOTICE("No version.json file located")) - self._check_manifest() + self._check_manifest_valid() + with disable_signal( post_save, receiver=update_filename_and_move_files, @@ -150,14 +150,18 @@ class Command(BaseCommand): ) @staticmethod - def _check_manifest_exists(path): - if not os.path.exists(path): + def _check_manifest_exists(path: Path): + if not path.exists(): raise CommandError( "That directory doesn't appear to contain a manifest.json file.", ) - def _check_manifest(self): - + def _check_manifest_valid(self): + """ + Attempts to verify the manifest is valid. Namely checking the files + referred to exist and the files can be read from + """ + self.stdout.write("Checking the manifest") for record in self.manifest: if record["model"] != "documents.document": @@ -170,19 +174,35 @@ class Command(BaseCommand): ) doc_file = record[EXPORTER_FILE_NAME] - if not os.path.exists(os.path.join(self.source, doc_file)): + doc_path = self.source / doc_file + if not doc_path.exists(): raise CommandError( 'The manifest file refers to "{}" which does not ' "appear to be in the source directory.".format(doc_file), ) + try: + with doc_path.open(mode="rb") as infile: + infile.read(1) + except Exception as e: + raise CommandError( + f"Failed to read from original file {doc_path}", + ) from e if EXPORTER_ARCHIVE_NAME in record: archive_file = record[EXPORTER_ARCHIVE_NAME] - if not os.path.exists(os.path.join(self.source, archive_file)): + doc_archive_path = self.source / archive_file + if not doc_archive_path.exists(): raise CommandError( f"The manifest file refers to {archive_file} which " f"does not appear to be in the source directory.", ) + try: + with doc_archive_path.open(mode="rb") as infile: + infile.read(1) + except Exception as e: + raise CommandError( + f"Failed to read from archive file {doc_archive_path}", + ) from e def _import_files_from_manifest(self, progress_bar_disable): diff --git a/src/documents/tests/test_importer.py b/src/documents/tests/test_importer.py index 8a659dbb6..a98e7394b 100644 --- a/src/documents/tests/test_importer.py +++ b/src/documents/tests/test_importer.py @@ -1,6 +1,10 @@ from django.core.management.base import CommandError from django.test import TestCase from documents.settings import EXPORTER_FILE_NAME +from documents.settings import EXPORTER_ARCHIVE_NAME +from pathlib import Path +import tempfile +from django.core.management import call_command from documents.management.commands.document_importer import Command @@ -14,17 +18,17 @@ class TestImporter(TestCase): self.assertRaises( CommandError, cmd._check_manifest_exists, - "/tmp/manifest.json", + Path("/tmp/manifest.json"), ) def test_check_manifest(self): cmd = Command() - cmd.source = "/tmp" + cmd.source = Path("/tmp") cmd.manifest = [{"model": "documents.document"}] with self.assertRaises(CommandError) as cm: - cmd._check_manifest() + cmd._check_manifest_valid() self.assertIn("The manifest file contains a record", str(cm.exception)) cmd.manifest = [ @@ -32,8 +36,81 @@ class TestImporter(TestCase): ] # self.assertRaises(CommandError, cmd._check_manifest) with self.assertRaises(CommandError) as cm: - cmd._check_manifest() + cmd._check_manifest_valid() self.assertIn( 'The manifest file refers to "noexist.pdf"', str(cm.exception), ) + + def test_import_permission_error(self): + """ + GIVEN: + - Original file which cannot be read from + - Archive file which cannot be read from + WHEN: + - Import is attempted + THEN: + - CommandError is raised indicating the issue + """ + with tempfile.TemporaryDirectory() as temp_dir: + + # Create empty files + original_path = Path(temp_dir) / "original.pdf" + archive_path = Path(temp_dir) / "archive.pdf" + original_path.touch() + archive_path.touch() + + # No read permissions + original_path.chmod(0o222) + + cmd = Command() + cmd.source = Path(temp_dir) + cmd.manifest = [ + { + "model": "documents.document", + EXPORTER_FILE_NAME: "original.pdf", + EXPORTER_ARCHIVE_NAME: "archive.pdf", + }, + ] + with self.assertRaises(CommandError) as cm: + cmd._check_manifest_valid() + self.assertInt("Failed to read from original file", str(cm.exception)) + + original_path.chmod(0o444) + archive_path.chmod(0o222) + + with self.assertRaises(CommandError) as cm: + cmd._check_manifest_valid() + self.assertInt("Failed to read from archive file", str(cm.exception)) + + def test_import_source_not_existing(self): + """ + GIVEN: + - Source given doesn't exist + WHEN: + - Import is attempted + THEN: + - CommandError is raised indicating the issue + """ + with self.assertRaises(CommandError) as cm: + call_command("document_importer", Path("/tmp/notapath")) + self.assertInt("That path doesn't exist", str(cm.exception)) + + def test_import_source_not_readable(self): + """ + GIVEN: + - Source given isn't readable + WHEN: + - Import is attempted + THEN: + - CommandError is raised indicating the issue + """ + with tempfile.TemporaryDirectory() as temp_dir: + path = Path(temp_dir) + path.chmod(0o222) + with self.assertRaises(CommandError) as cm: + call_command("document_importer", path) + self.assertInt( + "That path doesn't appear to be readable", + str(cm.exception), + ) diff --git a/src/documents/tests/test_management_exporter.py b/src/documents/tests/test_management_exporter.py index 05b6db5b3..cc52dc9c1 100644 --- a/src/documents/tests/test_management_exporter.py +++ b/src/documents/tests/test_management_exporter.py @@ -212,7 +212,7 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): Tag.objects.all().delete() self.assertEqual(Document.objects.count(), 0) - call_command("document_importer", self.target) + call_command("document_importer", "--no-progress-bar", self.target) self.assertEqual(Document.objects.count(), 4) self.assertEqual(Tag.objects.count(), 1) self.assertEqual(Correspondent.objects.count(), 1) @@ -541,7 +541,7 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertEqual(Document.objects.count(), 4) Document.objects.all().delete() self.assertEqual(Document.objects.count(), 0) - call_command("document_importer", self.target) + call_command("document_importer", "--no-progress-bar", self.target) self.assertEqual(Document.objects.count(), 4) def test_no_thumbnail(self): @@ -584,7 +584,7 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertEqual(Document.objects.count(), 4) Document.objects.all().delete() self.assertEqual(Document.objects.count(), 0) - call_command("document_importer", self.target) + call_command("document_importer", "--no-progress-bar", self.target) self.assertEqual(Document.objects.count(), 4) def test_split_manifest(self): @@ -613,7 +613,7 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertEqual(Document.objects.count(), 4) Document.objects.all().delete() self.assertEqual(Document.objects.count(), 0) - call_command("document_importer", self.target) + call_command("document_importer", "--no-progress-bar", self.target) self.assertEqual(Document.objects.count(), 4) def test_folder_prefix(self): @@ -637,5 +637,5 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertEqual(Document.objects.count(), 4) Document.objects.all().delete() self.assertEqual(Document.objects.count(), 0) - call_command("document_importer", self.target) + call_command("document_importer", "--no-progress-bar", self.target) self.assertEqual(Document.objects.count(), 4) From 3bcbd052526dc9bb94cd49ce0bba489cb0f1727b Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Thu, 20 Apr 2023 08:10:17 -0700 Subject: [PATCH 24/30] Fixes ruff not running isort against the codebase --- .ruff.toml | 2 +- src/documents/apps.py | 16 +++++++--------- src/documents/bulk_edit.py | 1 + src/documents/checks.py | 1 + src/documents/classifier.py | 4 ++-- src/documents/consumer.py | 2 +- src/documents/file_handling.py | 1 + src/documents/filters.py | 1 - src/documents/index.py | 7 ++++--- .../management/commands/decrypt_documents.py | 1 + .../management/commands/document_archiver.py | 2 +- .../management/commands/document_consumer.py | 8 +++++--- .../management/commands/document_exporter.py | 8 ++++---- .../management/commands/document_importer.py | 8 ++++---- .../management/commands/document_index.py | 1 + .../management/commands/document_renamer.py | 1 + .../management/commands/document_retagger.py | 3 +-- .../commands/document_sanity_checker.py | 1 + .../commands/document_thumbnails.py | 2 +- .../management/commands/manage_superuser.py | 1 - src/documents/matching.py | 1 - src/documents/migrations/0001_initial.py | 3 ++- .../migrations/0002_auto_20151226_1316.py | 3 ++- src/documents/migrations/0003_sender.py | 7 +++---- .../migrations/0004_auto_20160114_1844.py | 3 ++- .../migrations/0006_auto_20160123_0430.py | 3 ++- .../migrations/0007_auto_20160126_2114.py | 3 ++- .../migrations/0008_document_file_type.py | 3 ++- .../migrations/0009_auto_20160214_0040.py | 3 ++- src/documents/migrations/0010_log.py | 3 ++- .../migrations/0012_auto_20160305_0040.py | 2 +- .../migrations/0013_auto_20160325_2111.py | 3 ++- .../migrations/0014_document_checksum.py | 5 +++-- .../0015_add_insensitive_to_match.py | 3 ++- .../migrations/0016_auto_20170325_1558.py | 3 ++- .../migrations/0017_auto_20170512_0507.py | 3 ++- .../migrations/0018_auto_20170715_1712.py | 3 ++- .../migrations/0020_document_added.py | 3 ++- .../migrations/0021_document_storage_type.py | 3 ++- .../migrations/0022_auto_20181007_1420.py | 3 ++- .../0023_document_current_filename.py | 3 ++- .../migrations/1000_update_paperless_all.py | 3 ++- .../migrations/1002_auto_20201111_1105.py | 3 ++- src/documents/migrations/1003_mime_types.py | 3 ++- src/documents/migrations/1005_checksums.py | 3 ++- .../1007_savedview_savedviewfilterrule.py | 5 +++-- .../migrations/1008_auto_20201216_1736.py | 2 +- .../migrations/1010_auto_20210101_2159.py | 3 ++- .../migrations/1011_auto_20210101_2340.py | 5 +++-- .../migrations/1012_fix_archive_files.py | 15 +++++++-------- .../migrations/1013_migrate_tag_colour.py | 3 ++- .../migrations/1014_auto_20210228_1614.py | 3 ++- .../migrations/1015_remove_null_characters.py | 1 - .../migrations/1016_auto_20210317_1351.py | 3 ++- ...017_alter_savedviewfilterrule_rule_type.py | 3 ++- .../1018_alter_savedviewfilterrule_value.py | 3 ++- .../1019_storagepath_document_storage_path.py | 3 ++- src/documents/migrations/1019_uisettings.py | 5 +++-- .../1021_webp_thumbnail_conversion.py | 1 + .../migrations/1022_paperlesstask.py | 3 ++- src/documents/migrations/1023_add_comments.py | 3 ++- .../1024_document_original_filename.py | 3 ++- ...025_alter_savedviewfilterrule_rule_type.py | 3 ++- .../migrations/1026_transition_to_celery.py | 3 ++- ...e_paperlesstask_attempted_task_and_more.py | 3 ++- ...29_alter_document_archive_serial_number.py | 3 ++- ...1030_alter_paperlesstask_task_file_name.py | 3 ++- ...dview_user_correspondent_owner_and_more.py | 5 +++-- ...rrespondent_matching_algorithm_and_more.py | 3 ++- ...type_options_alter_tag_options_and_more.py | 3 ++- ...034_alter_savedviewfilterrule_rule_type.py | 3 ++- .../migrations/1035_rename_comment_note.py | 2 +- src/documents/models.py | 1 + src/documents/parsers.py | 1 + src/documents/sanity_checker.py | 3 ++- src/documents/serialisers.py | 16 +++++++--------- src/documents/tasks.py | 8 ++++---- src/documents/tests/test_admin.py | 1 + src/documents/tests/test_api.py | 11 ++++++----- src/documents/tests/test_barcodes.py | 5 +++-- src/documents/tests/test_checks.py | 3 ++- src/documents/tests/test_classifier.py | 3 ++- src/documents/tests/test_consumer.py | 7 ++++--- src/documents/tests/test_date_parsing.py | 3 ++- src/documents/tests/test_document_model.py | 2 +- src/documents/tests/test_file_handling.py | 2 +- src/documents/tests/test_importer.py | 11 ++++++----- src/documents/tests/test_index.py | 1 + src/documents/tests/test_management.py | 4 ++-- .../tests/test_management_consumer.py | 5 +++-- .../tests/test_management_exporter.py | 3 ++- .../tests/test_management_retagger.py | 1 + .../tests/test_management_superuser.py | 1 + .../tests/test_management_thumbnails.py | 1 + src/documents/tests/test_matchables.py | 2 +- .../tests/test_migration_archive_files.py | 2 +- .../tests/test_migration_mime_type.py | 1 + .../tests/test_migration_webp_conversion.py | 1 + src/documents/tests/test_models.py | 1 + src/documents/tests/test_parsers.py | 3 ++- src/documents/tests/test_sanity_check.py | 1 + src/documents/tests/test_task_signals.py | 3 ++- src/documents/tests/test_tasks.py | 1 + src/documents/tests/test_views.py | 2 +- src/documents/tests/utils.py | 3 ++- src/paperless/apps.py | 1 + src/paperless/asgi.py | 3 ++- src/paperless/checks.py | 2 +- src/paperless/filters.py | 1 + src/paperless/middleware.py | 1 + src/paperless/tests/test_checks.py | 3 ++- src/paperless/tests/test_settings.py | 3 ++- src/paperless/tests/test_signals.py | 1 + src/paperless/tests/test_websockets.py | 4 ++-- src/paperless/urls.py | 5 +++-- src/paperless/views.py | 9 +++++---- src/paperless_mail/admin.py | 1 + src/paperless_mail/apps.py | 1 + src/paperless_mail/mail.py | 19 ++++++++++--------- .../management/commands/mail_fetcher.py | 1 + src/paperless_mail/migrations/0001_initial.py | 3 ++- .../migrations/0003_auto_20201118_1940.py | 3 ++- .../migrations/0004_mailrule_order.py | 3 ++- .../migrations/0005_help_texts.py | 3 ++- .../migrations/0006_auto_20210101_2340.py | 3 ++- .../migrations/0007_auto_20210106_0138.py | 3 ++- .../migrations/0008_auto_20210516_0940.py | 3 ++- ...r_mailrule_action_alter_mailrule_folder.py | 3 ++- .../migrations/0009_mailrule_assign_tags.py | 3 ++- .../0012_alter_mailrule_assign_tags.py | 3 ++- .../migrations/0014_alter_mailrule_action.py | 3 ++- .../migrations/0015_alter_mailrule_action.py | 3 ++- .../0016_mailrule_consumption_scope.py | 3 ++- .../0017_mailaccount_owner_mailrule_owner.py | 5 +++-- .../migrations/0018_processedmail.py | 5 +++-- .../migrations/0019_mailrule_filter_to.py | 3 ++- .../migrations/0020_mailaccount_is_token.py | 3 ++- .../0021_alter_mailaccount_password.py | 3 ++- src/paperless_mail/models.py | 3 ++- src/paperless_mail/parsers.py | 7 ++++--- src/paperless_mail/serialisers.py | 3 ++- src/paperless_mail/tasks.py | 1 + src/paperless_mail/tests/test_api.py | 5 +++-- src/paperless_mail/tests/test_live_mail.py | 2 ++ src/paperless_mail/tests/test_mail.py | 11 ++++++----- src/paperless_mail/tests/test_parsers.py | 1 + src/paperless_mail/tests/test_parsers_live.py | 7 ++++--- src/paperless_mail/views.py | 19 ++++++++++--------- src/paperless_tesseract/apps.py | 1 + src/paperless_tesseract/checks.py | 2 +- src/paperless_tesseract/parsers.py | 10 ++++++---- src/paperless_tesseract/tests/test_checks.py | 3 ++- src/paperless_tesseract/tests/test_parser.py | 5 +++-- src/paperless_text/apps.py | 1 + src/paperless_text/parsers.py | 3 ++- src/paperless_text/tests/test_parser.py | 1 + src/paperless_tika/apps.py | 1 + src/paperless_tika/parsers.py | 7 ++++--- src/paperless_tika/tests/test_live_tika.py | 1 + src/paperless_tika/tests/test_tika_parser.py | 7 ++++--- 160 files changed, 347 insertions(+), 224 deletions(-) diff --git a/.ruff.toml b/.ruff.toml index 030c02b0a..0a20a7a2a 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -1,6 +1,6 @@ # https://beta.ruff.rs/docs/settings/ # https://beta.ruff.rs/docs/rules/ -select = ["F", "E", "W", "UP", "COM", "DJ", "EXE", "ISC", "ICN", "G201", "INP", "PIE", "RSE", "SIM", "TID", "PLC", "PLE", "RUF"] +extend-select = ["I", "W", "UP", "COM", "DJ", "EXE", "ISC", "ICN", "G201", "INP", "PIE", "RSE", "SIM", "TID", "PLC", "PLE", "RUF"] # TODO PTH ignore = ["DJ001", "SIM105"] fix = true diff --git a/src/documents/apps.py b/src/documents/apps.py index 9e0dd2554..31742342c 100644 --- a/src/documents/apps.py +++ b/src/documents/apps.py @@ -10,15 +10,13 @@ class DocumentsConfig(AppConfig): def ready(self): from .signals import document_consumption_finished - from .signals.handlers import ( - add_inbox_tags, - set_log_entry, - set_correspondent, - set_document_type, - set_tags, - set_storage_path, - add_to_index, - ) + from .signals.handlers import add_inbox_tags + from .signals.handlers import add_to_index + from .signals.handlers import set_correspondent + from .signals.handlers import set_document_type + from .signals.handlers import set_log_entry + from .signals.handlers import set_storage_path + from .signals.handlers import set_tags document_consumption_finished.connect(add_inbox_tags) document_consumption_finished.connect(set_correspondent) diff --git a/src/documents/bulk_edit.py b/src/documents/bulk_edit.py index 5908b55c8..c62283fee 100644 --- a/src/documents/bulk_edit.py +++ b/src/documents/bulk_edit.py @@ -1,6 +1,7 @@ import itertools from django.db.models import Q + from documents.models import Correspondent from documents.models import Document from documents.models import DocumentType diff --git a/src/documents/checks.py b/src/documents/checks.py index a014a0ac2..dd72080b6 100644 --- a/src/documents/checks.py +++ b/src/documents/checks.py @@ -6,6 +6,7 @@ from django.core.checks import register from django.core.exceptions import FieldError from django.db.utils import OperationalError from django.db.utils import ProgrammingError + from documents.signals import document_consumer_declaration diff --git a/src/documents/classifier.py b/src/documents/classifier.py index cbb8b1b90..e8ece34cc 100644 --- a/src/documents/classifier.py +++ b/src/documents/classifier.py @@ -10,6 +10,7 @@ from typing import List from typing import Optional from django.conf import settings + from documents.models import Document from documents.models import MatchingModel @@ -336,10 +337,9 @@ class DocumentClassifier: if settings.NLTK_LANGUAGE is not None and settings.NLTK_ENABLED: import nltk - - from nltk.tokenize import word_tokenize from nltk.corpus import stopwords from nltk.stem import SnowballStemmer + from nltk.tokenize import word_tokenize # Not really hacky, since it isn't private and is documented, but # set the search path for NLTK data to the single location it should be in diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 12993a750..886e8d380 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -31,9 +31,9 @@ from .models import DocumentType from .models import FileInfo from .models import Tag from .parsers import DocumentParser +from .parsers import ParseError from .parsers import get_parser_class_for_mime_type from .parsers import parse_date -from .parsers import ParseError from .signals import document_consumption_finished from .signals import document_consumption_started diff --git a/src/documents/file_handling.py b/src/documents/file_handling.py index c046ae15a..e382d4965 100644 --- a/src/documents/file_handling.py +++ b/src/documents/file_handling.py @@ -7,6 +7,7 @@ import pathvalidate from django.conf import settings from django.template.defaultfilters import slugify from django.utils import timezone + from documents.models import Document logger = logging.getLogger("paperless.filehandling") diff --git a/src/documents/filters.py b/src/documents/filters.py index 271b91108..a75899d8f 100644 --- a/src/documents/filters.py +++ b/src/documents/filters.py @@ -11,7 +11,6 @@ from .models import Log from .models import StoragePath from .models import Tag - CHAR_KWARGS = ["istartswith", "iendswith", "icontains", "iexact"] ID_KWARGS = ["in", "exact"] INT_KWARGS = ["exact", "gt", "gte", "lt", "lte", "isnull"] diff --git a/src/documents/index.py b/src/documents/index.py index 1bf6a921d..ed364233c 100644 --- a/src/documents/index.py +++ b/src/documents/index.py @@ -6,8 +6,6 @@ from contextlib import contextmanager from dateutil.parser import isoparse from django.conf import settings from django.utils import timezone -from documents.models import Document -from documents.models import Note from guardian.shortcuts import get_users_with_perms from whoosh import classify from whoosh import highlight @@ -16,8 +14,8 @@ from whoosh.fields import BOOLEAN from whoosh.fields import DATETIME from whoosh.fields import KEYWORD from whoosh.fields import NUMERIC -from whoosh.fields import Schema from whoosh.fields import TEXT +from whoosh.fields import Schema from whoosh.highlight import HtmlFormatter from whoosh.index import create_in from whoosh.index import exists_in @@ -28,6 +26,9 @@ from whoosh.searching import ResultsPage from whoosh.searching import Searcher from whoosh.writing import AsyncWriter +from documents.models import Document +from documents.models import Note + logger = logging.getLogger("paperless.index") diff --git a/src/documents/management/commands/decrypt_documents.py b/src/documents/management/commands/decrypt_documents.py index 2cb98c4e1..8cb308e8e 100644 --- a/src/documents/management/commands/decrypt_documents.py +++ b/src/documents/management/commands/decrypt_documents.py @@ -3,6 +3,7 @@ import os from django.conf import settings from django.core.management.base import BaseCommand from django.core.management.base import CommandError + from documents.models import Document from paperless.db import GnuPG diff --git a/src/documents/management/commands/document_archiver.py b/src/documents/management/commands/document_archiver.py index fa78a1963..7484ed07a 100644 --- a/src/documents/management/commands/document_archiver.py +++ b/src/documents/management/commands/document_archiver.py @@ -6,10 +6,10 @@ import tqdm from django import db from django.conf import settings from django.core.management.base import BaseCommand + from documents.models import Document from documents.tasks import update_document_archive_file - logger = logging.getLogger("paperless.management.archiver") diff --git a/src/documents/management/commands/document_consumer.py b/src/documents/management/commands/document_consumer.py index 6cba1ea23..220948a3d 100644 --- a/src/documents/management/commands/document_consumer.py +++ b/src/documents/management/commands/document_consumer.py @@ -13,17 +13,19 @@ from typing import Set from django.conf import settings from django.core.management.base import BaseCommand from django.core.management.base import CommandError +from watchdog.events import FileSystemEventHandler +from watchdog.observers.polling import PollingObserver + from documents.data_models import ConsumableDocument from documents.data_models import DocumentMetadataOverrides from documents.data_models import DocumentSource from documents.models import Tag from documents.parsers import is_file_ext_supported from documents.tasks import consume_file -from watchdog.events import FileSystemEventHandler -from watchdog.observers.polling import PollingObserver try: - from inotifyrecursive import INotify, flags + from inotifyrecursive import INotify + from inotifyrecursive import flags except ImportError: # pragma: nocover INotify = flags = None diff --git a/src/documents/management/commands/document_exporter.py b/src/documents/management/commands/document_exporter.py index 151868137..7364e7295 100644 --- a/src/documents/management/commands/document_exporter.py +++ b/src/documents/management/commands/document_exporter.py @@ -17,6 +17,10 @@ from django.core.management.base import BaseCommand from django.core.management.base import CommandError from django.db import transaction from django.utils import timezone +from filelock import FileLock + +from documents.file_handling import delete_empty_directories +from documents.file_handling import generate_filename from documents.models import Correspondent from documents.models import Document from documents.models import DocumentType @@ -29,15 +33,11 @@ from documents.models import UiSettings from documents.settings import EXPORTER_ARCHIVE_NAME from documents.settings import EXPORTER_FILE_NAME from documents.settings import EXPORTER_THUMBNAIL_NAME -from filelock import FileLock from paperless import version from paperless.db import GnuPG from paperless_mail.models import MailAccount from paperless_mail.models import MailRule -from documents.file_handling import delete_empty_directories -from documents.file_handling import generate_filename - class Command(BaseCommand): diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py index 0676117e7..dd294d463 100644 --- a/src/documents/management/commands/document_importer.py +++ b/src/documents/management/commands/document_importer.py @@ -14,16 +14,16 @@ from django.core.management.base import CommandError from django.core.serializers.base import DeserializationError from django.db.models.signals import m2m_changed from django.db.models.signals import post_save +from filelock import FileLock + +from documents.file_handling import create_source_path_directory from documents.models import Document from documents.parsers import run_convert from documents.settings import EXPORTER_ARCHIVE_NAME from documents.settings import EXPORTER_FILE_NAME from documents.settings import EXPORTER_THUMBNAIL_NAME -from filelock import FileLock -from paperless import version - -from documents.file_handling import create_source_path_directory from documents.signals.handlers import update_filename_and_move_files +from paperless import version @contextmanager diff --git a/src/documents/management/commands/document_index.py b/src/documents/management/commands/document_index.py index cf7eb65e5..77a24fa17 100644 --- a/src/documents/management/commands/document_index.py +++ b/src/documents/management/commands/document_index.py @@ -1,5 +1,6 @@ from django.core.management import BaseCommand from django.db import transaction + from documents.tasks import index_optimize from documents.tasks import index_reindex diff --git a/src/documents/management/commands/document_renamer.py b/src/documents/management/commands/document_renamer.py index 79c46f905..028754af1 100644 --- a/src/documents/management/commands/document_renamer.py +++ b/src/documents/management/commands/document_renamer.py @@ -3,6 +3,7 @@ import logging import tqdm from django.core.management.base import BaseCommand from django.db.models.signals import post_save + from documents.models import Document diff --git a/src/documents/management/commands/document_retagger.py b/src/documents/management/commands/document_retagger.py index aa61f0696..a59b1debc 100644 --- a/src/documents/management/commands/document_retagger.py +++ b/src/documents/management/commands/document_retagger.py @@ -2,15 +2,14 @@ import logging import tqdm from django.core.management.base import BaseCommand + from documents.classifier import load_classifier from documents.models import Document - from documents.signals.handlers import set_correspondent from documents.signals.handlers import set_document_type from documents.signals.handlers import set_storage_path from documents.signals.handlers import set_tags - logger = logging.getLogger("paperless.management.retagger") diff --git a/src/documents/management/commands/document_sanity_checker.py b/src/documents/management/commands/document_sanity_checker.py index 27c119863..86b62a4d9 100644 --- a/src/documents/management/commands/document_sanity_checker.py +++ b/src/documents/management/commands/document_sanity_checker.py @@ -1,4 +1,5 @@ from django.core.management.base import BaseCommand + from documents.sanity_checker import check_sanity diff --git a/src/documents/management/commands/document_thumbnails.py b/src/documents/management/commands/document_thumbnails.py index 462853f84..fb308ac04 100644 --- a/src/documents/management/commands/document_thumbnails.py +++ b/src/documents/management/commands/document_thumbnails.py @@ -5,8 +5,8 @@ import shutil import tqdm from django import db from django.core.management.base import BaseCommand -from documents.models import Document +from documents.models import Document from documents.parsers import get_parser_class_for_mime_type diff --git a/src/documents/management/commands/manage_superuser.py b/src/documents/management/commands/manage_superuser.py index 2f506b54a..e85cdfa59 100644 --- a/src/documents/management/commands/manage_superuser.py +++ b/src/documents/management/commands/manage_superuser.py @@ -4,7 +4,6 @@ import os from django.contrib.auth.models import User from django.core.management.base import BaseCommand - logger = logging.getLogger("paperless.management.superuser") diff --git a/src/documents/matching.py b/src/documents/matching.py index ad80ee0ad..39a3d52b5 100644 --- a/src/documents/matching.py +++ b/src/documents/matching.py @@ -8,7 +8,6 @@ from documents.models import StoragePath from documents.models import Tag from documents.permissions import get_objects_for_user_owner_aware - logger = logging.getLogger("paperless.matching") diff --git a/src/documents/migrations/0001_initial.py b/src/documents/migrations/0001_initial.py index e1b2f2a8b..aa8318d6b 100644 --- a/src/documents/migrations/0001_initial.py +++ b/src/documents/migrations/0001_initial.py @@ -1,7 +1,8 @@ # Generated by Django 1.9 on 2015-12-20 19:10 -from django.db import migrations, models from django.conf import settings +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0002_auto_20151226_1316.py b/src/documents/migrations/0002_auto_20151226_1316.py index b953d8008..c1cd11a42 100644 --- a/src/documents/migrations/0002_auto_20151226_1316.py +++ b/src/documents/migrations/0002_auto_20151226_1316.py @@ -1,7 +1,8 @@ # Generated by Django 1.9 on 2015-12-26 13:16 -from django.db import migrations, models import django.utils.timezone +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0003_sender.py b/src/documents/migrations/0003_sender.py index c2b274085..dacba5505 100644 --- a/src/documents/migrations/0003_sender.py +++ b/src/documents/migrations/0003_sender.py @@ -1,10 +1,9 @@ # Generated by Django 1.9 on 2016-01-11 12:21 -from django.db import migrations, models -from django.template.defaultfilters import slugify - import django.db.models.deletion - +from django.db import migrations +from django.db import models +from django.template.defaultfilters import slugify DOCUMENT_SENDER_MAP = {} diff --git a/src/documents/migrations/0004_auto_20160114_1844.py b/src/documents/migrations/0004_auto_20160114_1844.py index b3ccaaa9b..e6068c616 100644 --- a/src/documents/migrations/0004_auto_20160114_1844.py +++ b/src/documents/migrations/0004_auto_20160114_1844.py @@ -1,7 +1,8 @@ # Generated by Django 1.9 on 2016-01-14 18:44 -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0006_auto_20160123_0430.py b/src/documents/migrations/0006_auto_20160123_0430.py index 3f24992e2..04142c77a 100644 --- a/src/documents/migrations/0006_auto_20160123_0430.py +++ b/src/documents/migrations/0006_auto_20160123_0430.py @@ -1,6 +1,7 @@ # Generated by Django 1.9 on 2016-01-23 04:30 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0007_auto_20160126_2114.py b/src/documents/migrations/0007_auto_20160126_2114.py index f4b3b913d..0bc568fb5 100644 --- a/src/documents/migrations/0007_auto_20160126_2114.py +++ b/src/documents/migrations/0007_auto_20160126_2114.py @@ -1,6 +1,7 @@ # Generated by Django 1.9 on 2016-01-26 21:14 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0008_document_file_type.py b/src/documents/migrations/0008_document_file_type.py index c079f927d..ae085d463 100644 --- a/src/documents/migrations/0008_document_file_type.py +++ b/src/documents/migrations/0008_document_file_type.py @@ -1,6 +1,7 @@ # Generated by Django 1.9 on 2016-01-29 22:58 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0009_auto_20160214_0040.py b/src/documents/migrations/0009_auto_20160214_0040.py index 82e48ba24..3b8d4e4b7 100644 --- a/src/documents/migrations/0009_auto_20160214_0040.py +++ b/src/documents/migrations/0009_auto_20160214_0040.py @@ -1,6 +1,7 @@ # Generated by Django 1.9 on 2016-02-14 00:40 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0010_log.py b/src/documents/migrations/0010_log.py index 9be7b18ed..0cc34b4db 100644 --- a/src/documents/migrations/0010_log.py +++ b/src/documents/migrations/0010_log.py @@ -1,6 +1,7 @@ # Generated by Django 1.9 on 2016-02-27 17:54 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0012_auto_20160305_0040.py b/src/documents/migrations/0012_auto_20160305_0040.py index 1470ace96..e23235d41 100644 --- a/src/documents/migrations/0012_auto_20160305_0040.py +++ b/src/documents/migrations/0012_auto_20160305_0040.py @@ -1,12 +1,12 @@ # Generated by Django 1.9.2 on 2016-03-05 00:40 -import gnupg import os import re import shutil import subprocess import tempfile +import gnupg from django.conf import settings from django.db import migrations from django.utils.termcolors import colorize as colourise # Spelling hurts me diff --git a/src/documents/migrations/0013_auto_20160325_2111.py b/src/documents/migrations/0013_auto_20160325_2111.py index 6663edad8..07bb50873 100644 --- a/src/documents/migrations/0013_auto_20160325_2111.py +++ b/src/documents/migrations/0013_auto_20160325_2111.py @@ -1,7 +1,8 @@ # Generated by Django 1.9.4 on 2016-03-25 21:11 -from django.db import migrations, models import django.utils.timezone +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0014_document_checksum.py b/src/documents/migrations/0014_document_checksum.py index a687e43ef..985167701 100644 --- a/src/documents/migrations/0014_document_checksum.py +++ b/src/documents/migrations/0014_document_checksum.py @@ -1,12 +1,13 @@ # Generated by Django 1.9.4 on 2016-03-28 19:09 -import gnupg import hashlib import os import django.utils.timezone +import gnupg from django.conf import settings -from django.db import migrations, models +from django.db import migrations +from django.db import models from django.template.defaultfilters import slugify from django.utils.termcolors import colorize as colourise # Spelling hurts me diff --git a/src/documents/migrations/0015_add_insensitive_to_match.py b/src/documents/migrations/0015_add_insensitive_to_match.py index 796918446..5ea281846 100644 --- a/src/documents/migrations/0015_add_insensitive_to_match.py +++ b/src/documents/migrations/0015_add_insensitive_to_match.py @@ -1,6 +1,7 @@ # Generated by Django 1.10.2 on 2016-10-05 21:38 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0016_auto_20170325_1558.py b/src/documents/migrations/0016_auto_20170325_1558.py index 26ab3a720..4eb1db4a6 100644 --- a/src/documents/migrations/0016_auto_20170325_1558.py +++ b/src/documents/migrations/0016_auto_20170325_1558.py @@ -1,7 +1,8 @@ # Generated by Django 1.10.5 on 2017-03-25 15:58 -from django.db import migrations, models from django.conf import settings +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0017_auto_20170512_0507.py b/src/documents/migrations/0017_auto_20170512_0507.py index f775cdfe0..47dede6dc 100644 --- a/src/documents/migrations/0017_auto_20170512_0507.py +++ b/src/documents/migrations/0017_auto_20170512_0507.py @@ -1,6 +1,7 @@ # Generated by Django 1.10.5 on 2017-05-12 05:07 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0018_auto_20170715_1712.py b/src/documents/migrations/0018_auto_20170715_1712.py index 047531fee..07bd630ab 100644 --- a/src/documents/migrations/0018_auto_20170715_1712.py +++ b/src/documents/migrations/0018_auto_20170715_1712.py @@ -1,7 +1,8 @@ # Generated by Django 1.10.5 on 2017-07-15 17:12 -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0020_document_added.py b/src/documents/migrations/0020_document_added.py index 67c4df4aa..34042eedf 100644 --- a/src/documents/migrations/0020_document_added.py +++ b/src/documents/migrations/0020_document_added.py @@ -1,5 +1,6 @@ -from django.db import migrations, models import django.utils.timezone +from django.db import migrations +from django.db import models def set_added_time_to_created_time(apps, schema_editor): diff --git a/src/documents/migrations/0021_document_storage_type.py b/src/documents/migrations/0021_document_storage_type.py index bde86ceea..b4239d055 100644 --- a/src/documents/migrations/0021_document_storage_type.py +++ b/src/documents/migrations/0021_document_storage_type.py @@ -1,6 +1,7 @@ # Generated by Django 1.11.10 on 2018-02-04 13:07 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/0022_auto_20181007_1420.py b/src/documents/migrations/0022_auto_20181007_1420.py index ecebf80d8..446f03c92 100644 --- a/src/documents/migrations/0022_auto_20181007_1420.py +++ b/src/documents/migrations/0022_auto_20181007_1420.py @@ -1,6 +1,7 @@ # Generated by Django 2.0.8 on 2018-10-07 14:20 -from django.db import migrations, models +from django.db import migrations +from django.db import models from django.utils.text import slugify diff --git a/src/documents/migrations/0023_document_current_filename.py b/src/documents/migrations/0023_document_current_filename.py index 65300c11e..3c5ebbef1 100644 --- a/src/documents/migrations/0023_document_current_filename.py +++ b/src/documents/migrations/0023_document_current_filename.py @@ -1,6 +1,7 @@ # Generated by Django 2.0.10 on 2019-04-26 18:57 -from django.db import migrations, models +from django.db import migrations +from django.db import models def set_filename(apps, schema_editor): diff --git a/src/documents/migrations/1000_update_paperless_all.py b/src/documents/migrations/1000_update_paperless_all.py index 4301a5b21..294731c51 100644 --- a/src/documents/migrations/1000_update_paperless_all.py +++ b/src/documents/migrations/1000_update_paperless_all.py @@ -1,8 +1,9 @@ # Generated by Django 3.1.3 on 2020-11-07 12:35 import uuid -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations +from django.db import models def logs_set_default_group(apps, schema_editor): diff --git a/src/documents/migrations/1002_auto_20201111_1105.py b/src/documents/migrations/1002_auto_20201111_1105.py index f502fba3f..d58f3bfe6 100644 --- a/src/documents/migrations/1002_auto_20201111_1105.py +++ b/src/documents/migrations/1002_auto_20201111_1105.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.3 on 2020-11-11 11:05 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1003_mime_types.py b/src/documents/migrations/1003_mime_types.py index f5ac94756..0d5f259c7 100644 --- a/src/documents/migrations/1003_mime_types.py +++ b/src/documents/migrations/1003_mime_types.py @@ -3,7 +3,8 @@ import os import magic from django.conf import settings -from django.db import migrations, models +from django.db import migrations +from django.db import models from paperless.db import GnuPG diff --git a/src/documents/migrations/1005_checksums.py b/src/documents/migrations/1005_checksums.py index b1bfc6eac..cbbd928aa 100644 --- a/src/documents/migrations/1005_checksums.py +++ b/src/documents/migrations/1005_checksums.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.3 on 2020-11-29 00:48 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1007_savedview_savedviewfilterrule.py b/src/documents/migrations/1007_savedview_savedviewfilterrule.py index 357d65c2d..b145b7be5 100644 --- a/src/documents/migrations/1007_savedview_savedviewfilterrule.py +++ b/src/documents/migrations/1007_savedview_savedviewfilterrule.py @@ -1,8 +1,9 @@ # Generated by Django 3.1.4 on 2020-12-12 14:41 -from django.conf import settings -from django.db import migrations, models import django.db.models.deletion +from django.conf import settings +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1008_auto_20201216_1736.py b/src/documents/migrations/1008_auto_20201216_1736.py index 2f6c5c59d..6539bdfc1 100644 --- a/src/documents/migrations/1008_auto_20201216_1736.py +++ b/src/documents/migrations/1008_auto_20201216_1736.py @@ -1,7 +1,7 @@ # Generated by Django 3.1.4 on 2020-12-16 17:36 -from django.db import migrations import django.db.models.functions.text +from django.db import migrations class Migration(migrations.Migration): diff --git a/src/documents/migrations/1010_auto_20210101_2159.py b/src/documents/migrations/1010_auto_20210101_2159.py index 1d05d8f47..ea679ace6 100644 --- a/src/documents/migrations/1010_auto_20210101_2159.py +++ b/src/documents/migrations/1010_auto_20210101_2159.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.4 on 2021-01-01 21:59 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1011_auto_20210101_2340.py b/src/documents/migrations/1011_auto_20210101_2340.py index c7c387226..b26ace662 100644 --- a/src/documents/migrations/1011_auto_20210101_2340.py +++ b/src/documents/migrations/1011_auto_20210101_2340.py @@ -1,9 +1,10 @@ # Generated by Django 3.1.4 on 2021-01-01 23:40 -from django.conf import settings -from django.db import migrations, models import django.db.models.deletion import django.utils.timezone +from django.conf import settings +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1012_fix_archive_files.py b/src/documents/migrations/1012_fix_archive_files.py index 51eb8ec2e..b076f1ca9 100644 --- a/src/documents/migrations/1012_fix_archive_files.py +++ b/src/documents/migrations/1012_fix_archive_files.py @@ -8,11 +8,12 @@ from time import sleep import pathvalidate from django.conf import settings -from django.db import migrations, models +from django.db import migrations +from django.db import models from django.template.defaultfilters import slugify -from documents.file_handling import defaultdictNoStr, many_to_dictionary - +from documents.file_handling import defaultdictNoStr +from documents.file_handling import many_to_dictionary logger = logging.getLogger("paperless.migrations") @@ -160,11 +161,9 @@ def parse_wrapper(parser, path, mime_type, file_name): def create_archive_version(doc, retry_count=3): - from documents.parsers import ( - get_parser_class_for_mime_type, - DocumentParser, - ParseError, - ) + from documents.parsers import DocumentParser + from documents.parsers import ParseError + from documents.parsers import get_parser_class_for_mime_type logger.info(f"Regenerating archive document for document ID:{doc.id}") parser_class = get_parser_class_for_mime_type(doc.mime_type) diff --git a/src/documents/migrations/1013_migrate_tag_colour.py b/src/documents/migrations/1013_migrate_tag_colour.py index 8346ff184..07d29e155 100644 --- a/src/documents/migrations/1013_migrate_tag_colour.py +++ b/src/documents/migrations/1013_migrate_tag_colour.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.4 on 2020-12-02 21:43 -from django.db import migrations, models +from django.db import migrations +from django.db import models COLOURS_OLD = { 1: "#a6cee3", diff --git a/src/documents/migrations/1014_auto_20210228_1614.py b/src/documents/migrations/1014_auto_20210228_1614.py index c3f16b841..821d8c028 100644 --- a/src/documents/migrations/1014_auto_20210228_1614.py +++ b/src/documents/migrations/1014_auto_20210228_1614.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.7 on 2021-02-28 15:14 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1015_remove_null_characters.py b/src/documents/migrations/1015_remove_null_characters.py index cea9d5a64..304c5c28a 100644 --- a/src/documents/migrations/1015_remove_null_characters.py +++ b/src/documents/migrations/1015_remove_null_characters.py @@ -3,7 +3,6 @@ import logging from django.db import migrations - logger = logging.getLogger("paperless.migrations") diff --git a/src/documents/migrations/1016_auto_20210317_1351.py b/src/documents/migrations/1016_auto_20210317_1351.py index d41fae849..36892a97a 100644 --- a/src/documents/migrations/1016_auto_20210317_1351.py +++ b/src/documents/migrations/1016_auto_20210317_1351.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.7 on 2021-03-17 12:51 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1017_alter_savedviewfilterrule_rule_type.py b/src/documents/migrations/1017_alter_savedviewfilterrule_rule_type.py index 52db95138..827924767 100644 --- a/src/documents/migrations/1017_alter_savedviewfilterrule_rule_type.py +++ b/src/documents/migrations/1017_alter_savedviewfilterrule_rule_type.py @@ -1,6 +1,7 @@ # Generated by Django 3.2.12 on 2022-03-17 11:59 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1018_alter_savedviewfilterrule_value.py b/src/documents/migrations/1018_alter_savedviewfilterrule_value.py index 8453a86d8..d734e520e 100644 --- a/src/documents/migrations/1018_alter_savedviewfilterrule_value.py +++ b/src/documents/migrations/1018_alter_savedviewfilterrule_value.py @@ -1,6 +1,7 @@ # Generated by Django 4.0.3 on 2022-04-01 22:50 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1019_storagepath_document_storage_path.py b/src/documents/migrations/1019_storagepath_document_storage_path.py index ff7f38692..f25162f2a 100644 --- a/src/documents/migrations/1019_storagepath_document_storage_path.py +++ b/src/documents/migrations/1019_storagepath_document_storage_path.py @@ -1,7 +1,8 @@ # Generated by Django 4.0.4 on 2022-05-02 15:56 -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1019_uisettings.py b/src/documents/migrations/1019_uisettings.py index edc944a37..5ca826f06 100644 --- a/src/documents/migrations/1019_uisettings.py +++ b/src/documents/migrations/1019_uisettings.py @@ -1,8 +1,9 @@ # Generated by Django 4.0.4 on 2022-05-07 05:10 -from django.conf import settings -from django.db import migrations, models import django.db.models.deletion +from django.conf import settings +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1021_webp_thumbnail_conversion.py b/src/documents/migrations/1021_webp_thumbnail_conversion.py index c7ae1eaae..336a7fde5 100644 --- a/src/documents/migrations/1021_webp_thumbnail_conversion.py +++ b/src/documents/migrations/1021_webp_thumbnail_conversion.py @@ -8,6 +8,7 @@ from pathlib import Path from django.conf import settings from django.db import migrations + from documents.parsers import run_convert logger = logging.getLogger("paperless.migrations") diff --git a/src/documents/migrations/1022_paperlesstask.py b/src/documents/migrations/1022_paperlesstask.py index e398402f3..dfbd429c4 100644 --- a/src/documents/migrations/1022_paperlesstask.py +++ b/src/documents/migrations/1022_paperlesstask.py @@ -1,7 +1,8 @@ # Generated by Django 4.0.4 on 2022-05-23 07:14 -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1023_add_comments.py b/src/documents/migrations/1023_add_comments.py index 2c89947e9..0b26739bc 100644 --- a/src/documents/migrations/1023_add_comments.py +++ b/src/documents/migrations/1023_add_comments.py @@ -1,6 +1,7 @@ -from django.db import migrations, models import django.utils.timezone from django.conf import settings +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1024_document_original_filename.py b/src/documents/migrations/1024_document_original_filename.py index b0f03cd50..31414cf8d 100644 --- a/src/documents/migrations/1024_document_original_filename.py +++ b/src/documents/migrations/1024_document_original_filename.py @@ -1,6 +1,7 @@ # Generated by Django 4.0.6 on 2022-07-25 06:34 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1025_alter_savedviewfilterrule_rule_type.py b/src/documents/migrations/1025_alter_savedviewfilterrule_rule_type.py index 1e5b005b8..0c0492586 100644 --- a/src/documents/migrations/1025_alter_savedviewfilterrule_rule_type.py +++ b/src/documents/migrations/1025_alter_savedviewfilterrule_rule_type.py @@ -1,6 +1,7 @@ # Generated by Django 4.0.5 on 2022-08-26 16:49 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1026_transition_to_celery.py b/src/documents/migrations/1026_transition_to_celery.py index 786ca36c4..3920204a9 100644 --- a/src/documents/migrations/1026_transition_to_celery.py +++ b/src/documents/migrations/1026_transition_to_celery.py @@ -1,7 +1,8 @@ # Generated by Django 4.1.1 on 2022-09-27 19:31 -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1027_remove_paperlesstask_attempted_task_and_more.py b/src/documents/migrations/1027_remove_paperlesstask_attempted_task_and_more.py index fc8ff8ec2..2d39e6451 100644 --- a/src/documents/migrations/1027_remove_paperlesstask_attempted_task_and_more.py +++ b/src/documents/migrations/1027_remove_paperlesstask_attempted_task_and_more.py @@ -1,7 +1,8 @@ # Generated by Django 4.1.2 on 2022-10-17 16:31 -from django.db import migrations, models import django.utils.timezone +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1029_alter_document_archive_serial_number.py b/src/documents/migrations/1029_alter_document_archive_serial_number.py index d7e4b662d..69a74fc2d 100644 --- a/src/documents/migrations/1029_alter_document_archive_serial_number.py +++ b/src/documents/migrations/1029_alter_document_archive_serial_number.py @@ -1,7 +1,8 @@ # Generated by Django 4.1.4 on 2023-01-24 17:56 import django.core.validators -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1030_alter_paperlesstask_task_file_name.py b/src/documents/migrations/1030_alter_paperlesstask_task_file_name.py index 130358bec..93569ae83 100644 --- a/src/documents/migrations/1030_alter_paperlesstask_task_file_name.py +++ b/src/documents/migrations/1030_alter_paperlesstask_task_file_name.py @@ -1,6 +1,7 @@ # Generated by Django 4.1.5 on 2023-02-03 21:53 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1031_remove_savedview_user_correspondent_owner_and_more.py b/src/documents/migrations/1031_remove_savedview_user_correspondent_owner_and_more.py index b187871e7..d29bdf6e6 100644 --- a/src/documents/migrations/1031_remove_savedview_user_correspondent_owner_and_more.py +++ b/src/documents/migrations/1031_remove_savedview_user_correspondent_owner_and_more.py @@ -1,8 +1,9 @@ # Generated by Django 4.1.4 on 2022-02-03 04:24 -from django.conf import settings -from django.db import migrations, models import django.db.models.deletion +from django.conf import settings +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1032_alter_correspondent_matching_algorithm_and_more.py b/src/documents/migrations/1032_alter_correspondent_matching_algorithm_and_more.py index 88aa7f2bc..2e83338ab 100644 --- a/src/documents/migrations/1032_alter_correspondent_matching_algorithm_and_more.py +++ b/src/documents/migrations/1032_alter_correspondent_matching_algorithm_and_more.py @@ -1,6 +1,7 @@ # Generated by Django 4.1.7 on 2023-02-22 00:45 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1033_alter_documenttype_options_alter_tag_options_and_more.py b/src/documents/migrations/1033_alter_documenttype_options_alter_tag_options_and_more.py index 433363e9f..1d1a3227d 100644 --- a/src/documents/migrations/1033_alter_documenttype_options_alter_tag_options_and_more.py +++ b/src/documents/migrations/1033_alter_documenttype_options_alter_tag_options_and_more.py @@ -1,6 +1,7 @@ # Generated by Django 4.1.5 on 2023-03-04 22:33 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1034_alter_savedviewfilterrule_rule_type.py b/src/documents/migrations/1034_alter_savedviewfilterrule_rule_type.py index aa56d9629..6612edafa 100644 --- a/src/documents/migrations/1034_alter_savedviewfilterrule_rule_type.py +++ b/src/documents/migrations/1034_alter_savedviewfilterrule_rule_type.py @@ -1,6 +1,7 @@ # Generated by Django 4.1.5 on 2023-03-15 07:10 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/documents/migrations/1035_rename_comment_note.py b/src/documents/migrations/1035_rename_comment_note.py index 11c3da380..a87e285ac 100644 --- a/src/documents/migrations/1035_rename_comment_note.py +++ b/src/documents/migrations/1035_rename_comment_note.py @@ -1,9 +1,9 @@ # Generated by Django 4.1.5 on 2023-03-17 22:15 +import django.db.models.deletion from django.conf import settings from django.db import migrations from django.db import models -import django.db.models.deletion class Migration(migrations.Migration): diff --git a/src/documents/models.py b/src/documents/models.py index 079459d00..bdcd080fd 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -17,6 +17,7 @@ from django.core.validators import MinValueValidator from django.db import models from django.utils import timezone from django.utils.translation import gettext_lazy as _ + from documents.parsers import get_default_file_extension ALL_STATES = sorted(states.ALL_STATES) diff --git a/src/documents/parsers.py b/src/documents/parsers.py index 4bec79c61..1c5c5ebb0 100644 --- a/src/documents/parsers.py +++ b/src/documents/parsers.py @@ -14,6 +14,7 @@ from typing import Set from django.conf import settings from django.utils import timezone + from documents.loggers import LoggingMixin from documents.signals import document_consumer_declaration diff --git a/src/documents/sanity_checker.py b/src/documents/sanity_checker.py index b74d07bd5..7b4107e99 100644 --- a/src/documents/sanity_checker.py +++ b/src/documents/sanity_checker.py @@ -5,9 +5,10 @@ from pathlib import Path from typing import Final from django.conf import settings -from documents.models import Document from tqdm import tqdm +from documents.models import Document + class SanityCheckMessages: def __init__(self): diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index 2ad392f4c..1727fb135 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -10,32 +10,30 @@ except ImportError: from backports import zoneinfo import magic from django.conf import settings +from django.contrib.auth.models import Group +from django.contrib.auth.models import User from django.utils.text import slugify from django.utils.translation import gettext as _ +from guardian.shortcuts import get_users_with_perms from rest_framework import serializers from rest_framework.fields import SerializerMethodField +from documents.permissions import get_groups_with_only_permission +from documents.permissions import set_permissions_for_object + from . import bulk_edit from .models import Correspondent from .models import Document from .models import DocumentType from .models import MatchingModel +from .models import PaperlessTask from .models import SavedView from .models import SavedViewFilterRule from .models import StoragePath from .models import Tag from .models import UiSettings -from .models import PaperlessTask from .parsers import is_mime_type_supported -from guardian.shortcuts import get_users_with_perms - -from django.contrib.auth.models import User -from django.contrib.auth.models import Group - -from documents.permissions import get_groups_with_only_permission -from documents.permissions import set_permissions_for_object - # https://www.django-rest-framework.org/api-guide/serializers/#example class DynamicFieldsModelSerializer(serializers.ModelSerializer): diff --git a/src/documents/tasks.py b/src/documents/tasks.py index c2d726405..6b19c067b 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -12,6 +12,10 @@ from channels.layers import get_channel_layer from django.conf import settings from django.db import transaction from django.db.models.signals import post_save +from filelock import FileLock +from redis.exceptions import ConnectionError +from whoosh.writing import AsyncWriter + from documents import barcodes from documents import index from documents import sanity_checker @@ -32,10 +36,6 @@ from documents.models import Tag from documents.parsers import DocumentParser from documents.parsers import get_parser_class_for_mime_type from documents.sanity_checker import SanityCheckFailedException -from filelock import FileLock -from redis.exceptions import ConnectionError -from whoosh.writing import AsyncWriter - logger = logging.getLogger("paperless.tasks") diff --git a/src/documents/tests/test_admin.py b/src/documents/tests/test_admin.py index 7a39c95be..a32a31adf 100644 --- a/src/documents/tests/test_admin.py +++ b/src/documents/tests/test_admin.py @@ -1,6 +1,7 @@ from django.contrib.admin.sites import AdminSite from django.test import TestCase from django.utils import timezone + from documents import index from documents.admin import DocumentAdmin from documents.models import Document diff --git a/src/documents/tests/test_api.py b/src/documents/tests/test_api.py index ba5c58f3f..a855a0488 100644 --- a/src/documents/tests/test_api.py +++ b/src/documents/tests/test_api.py @@ -20,30 +20,31 @@ except ImportError: from backports import zoneinfo import pytest +from dateutil.relativedelta import relativedelta from django.conf import settings from django.contrib.auth.models import Group from django.contrib.auth.models import Permission from django.contrib.auth.models import User from django.test import override_settings from django.utils import timezone -from dateutil.relativedelta import relativedelta from rest_framework import status +from rest_framework.test import APITestCase +from whoosh.writing import AsyncWriter + from documents import bulk_edit from documents import index from documents.models import Correspondent from documents.models import Document -from documents.tests.utils import DocumentConsumeDelayMixin from documents.models import DocumentType from documents.models import MatchingModel +from documents.models import Note from documents.models import PaperlessTask from documents.models import SavedView from documents.models import StoragePath from documents.models import Tag -from documents.models import Note from documents.tests.utils import DirectoriesMixin +from documents.tests.utils import DocumentConsumeDelayMixin from paperless import version -from rest_framework.test import APITestCase -from whoosh.writing import AsyncWriter class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): diff --git a/src/documents/tests/test_barcodes.py b/src/documents/tests/test_barcodes.py index 2520c7df6..5a6c3edf9 100644 --- a/src/documents/tests/test_barcodes.py +++ b/src/documents/tests/test_barcodes.py @@ -4,8 +4,10 @@ from unittest import mock import pytest from django.conf import settings -from django.test import override_settings from django.test import TestCase +from django.test import override_settings +from PIL import Image + from documents import barcodes from documents import tasks from documents.consumer import ConsumerError @@ -13,7 +15,6 @@ from documents.data_models import ConsumableDocument from documents.data_models import DocumentSource from documents.tests.utils import DirectoriesMixin from documents.tests.utils import FileSystemAssertsMixin -from PIL import Image try: import zxingcpp # noqa: F401 diff --git a/src/documents/tests/test_checks.py b/src/documents/tests/test_checks.py index a331572da..0f645c56d 100644 --- a/src/documents/tests/test_checks.py +++ b/src/documents/tests/test_checks.py @@ -2,8 +2,9 @@ import textwrap from unittest import mock from django.core.checks import Error -from django.test import override_settings from django.test import TestCase +from django.test import override_settings + from documents.checks import changed_password_check from documents.checks import parser_check from documents.models import Document diff --git a/src/documents/tests/test_classifier.py b/src/documents/tests/test_classifier.py index f0aa5894e..68e054586 100644 --- a/src/documents/tests/test_classifier.py +++ b/src/documents/tests/test_classifier.py @@ -5,8 +5,9 @@ from unittest import mock import pytest from django.conf import settings -from django.test import override_settings from django.test import TestCase +from django.test import override_settings + from documents.classifier import ClassifierModelCorruptError from documents.classifier import DocumentClassifier from documents.classifier import IncompatibleClassifierVersionError diff --git a/src/documents/tests/test_consumer.py b/src/documents/tests/test_consumer.py index cd06e9782..1a7ebd4fe 100644 --- a/src/documents/tests/test_consumer.py +++ b/src/documents/tests/test_consumer.py @@ -15,9 +15,9 @@ except ImportError: from backports import zoneinfo from django.conf import settings -from django.utils import timezone -from django.test import override_settings from django.test import TestCase +from django.test import override_settings +from django.utils import timezone from documents.consumer import Consumer from documents.consumer import ConsumerError @@ -29,9 +29,10 @@ from documents.models import Tag from documents.parsers import DocumentParser from documents.parsers import ParseError from documents.tasks import sanity_check -from .utils import DirectoriesMixin from documents.tests.utils import FileSystemAssertsMixin +from .utils import DirectoriesMixin + class TestAttributes(TestCase): diff --git a/src/documents/tests/test_date_parsing.py b/src/documents/tests/test_date_parsing.py index e1b179976..fd6556365 100644 --- a/src/documents/tests/test_date_parsing.py +++ b/src/documents/tests/test_date_parsing.py @@ -5,8 +5,9 @@ from uuid import uuid4 from dateutil import tz from django.conf import settings -from django.test import override_settings from django.test import TestCase +from django.test import override_settings + from documents.parsers import parse_date from documents.parsers import parse_date_generator diff --git a/src/documents/tests/test_document_model.py b/src/documents/tests/test_document_model.py index 763f5049c..6168503dc 100644 --- a/src/documents/tests/test_document_model.py +++ b/src/documents/tests/test_document_model.py @@ -8,8 +8,8 @@ try: except ImportError: from backports import zoneinfo -from django.test import override_settings from django.test import TestCase +from django.test import override_settings from django.utils import timezone from documents.models import Correspondent diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py index d2f61eb1c..7dea33925 100644 --- a/src/documents/tests/test_file_handling.py +++ b/src/documents/tests/test_file_handling.py @@ -7,8 +7,8 @@ from unittest import mock from django.conf import settings from django.contrib.auth.models import User from django.db import DatabaseError -from django.test import override_settings from django.test import TestCase +from django.test import override_settings from django.utils import timezone from documents.file_handling import create_source_path_directory diff --git a/src/documents/tests/test_importer.py b/src/documents/tests/test_importer.py index a98e7394b..212769eda 100644 --- a/src/documents/tests/test_importer.py +++ b/src/documents/tests/test_importer.py @@ -1,12 +1,13 @@ +import tempfile +from pathlib import Path + +from django.core.management import call_command from django.core.management.base import CommandError from django.test import TestCase -from documents.settings import EXPORTER_FILE_NAME -from documents.settings import EXPORTER_ARCHIVE_NAME -from pathlib import Path -import tempfile -from django.core.management import call_command from documents.management.commands.document_importer import Command +from documents.settings import EXPORTER_ARCHIVE_NAME +from documents.settings import EXPORTER_FILE_NAME class TestImporter(TestCase): diff --git a/src/documents/tests/test_index.py b/src/documents/tests/test_index.py index bf1865a43..bae56ab77 100644 --- a/src/documents/tests/test_index.py +++ b/src/documents/tests/test_index.py @@ -1,6 +1,7 @@ from unittest import mock from django.test import TestCase + from documents import index from documents.models import Document from documents.tests.utils import DirectoriesMixin diff --git a/src/documents/tests/test_management.py b/src/documents/tests/test_management.py index d5b81a5e1..2ea54d63c 100644 --- a/src/documents/tests/test_management.py +++ b/src/documents/tests/test_management.py @@ -7,15 +7,15 @@ from pathlib import Path from unittest import mock from django.core.management import call_command -from django.test import override_settings from django.test import TestCase +from django.test import override_settings + from documents.file_handling import generate_filename from documents.models import Document from documents.tasks import update_document_archive_file from documents.tests.utils import DirectoriesMixin from documents.tests.utils import FileSystemAssertsMixin - sample_file = os.path.join(os.path.dirname(__file__), "samples", "simple.pdf") diff --git a/src/documents/tests/test_management_consumer.py b/src/documents/tests/test_management_consumer.py index 1230288c5..067702766 100644 --- a/src/documents/tests/test_management_consumer.py +++ b/src/documents/tests/test_management_consumer.py @@ -7,10 +7,11 @@ from time import sleep from unittest import mock from django.conf import settings -from django.core.management import call_command from django.core.management import CommandError -from django.test import override_settings +from django.core.management import call_command from django.test import TransactionTestCase +from django.test import override_settings + from documents.consumer import ConsumerError from documents.data_models import ConsumableDocument from documents.management.commands import document_consumer diff --git a/src/documents/tests/test_management_exporter.py b/src/documents/tests/test_management_exporter.py index cc52dc9c1..47f07809e 100644 --- a/src/documents/tests/test_management_exporter.py +++ b/src/documents/tests/test_management_exporter.py @@ -9,9 +9,10 @@ from zipfile import ZipFile from django.core.management import call_command from django.core.management.base import CommandError -from django.test import override_settings from django.test import TestCase +from django.test import override_settings from django.utils import timezone + from documents.management.commands import document_exporter from documents.models import Correspondent from documents.models import Document diff --git a/src/documents/tests/test_management_retagger.py b/src/documents/tests/test_management_retagger.py index 2b7aae649..afbed9d60 100644 --- a/src/documents/tests/test_management_retagger.py +++ b/src/documents/tests/test_management_retagger.py @@ -1,5 +1,6 @@ from django.core.management import call_command from django.test import TestCase + from documents.models import Correspondent from documents.models import Document from documents.models import DocumentType diff --git a/src/documents/tests/test_management_superuser.py b/src/documents/tests/test_management_superuser.py index b79a9f9a6..01f03c8e1 100644 --- a/src/documents/tests/test_management_superuser.py +++ b/src/documents/tests/test_management_superuser.py @@ -5,6 +5,7 @@ from unittest import mock from django.contrib.auth.models import User from django.core.management import call_command from django.test import TestCase + from documents.tests.utils import DirectoriesMixin diff --git a/src/documents/tests/test_management_thumbnails.py b/src/documents/tests/test_management_thumbnails.py index 0767e4e37..6e4e18ea3 100644 --- a/src/documents/tests/test_management_thumbnails.py +++ b/src/documents/tests/test_management_thumbnails.py @@ -4,6 +4,7 @@ from unittest import mock from django.core.management import call_command from django.test import TestCase + from documents.management.commands.document_thumbnails import _process_document from documents.models import Document from documents.tests.utils import DirectoriesMixin diff --git a/src/documents/tests/test_matchables.py b/src/documents/tests/test_matchables.py index 56d47ee46..718ab8696 100644 --- a/src/documents/tests/test_matchables.py +++ b/src/documents/tests/test_matchables.py @@ -5,8 +5,8 @@ from typing import Iterable from django.contrib.admin.models import LogEntry from django.contrib.auth.models import User -from django.test import override_settings from django.test import TestCase +from django.test import override_settings from documents import matching from documents.models import Correspondent diff --git a/src/documents/tests/test_migration_archive_files.py b/src/documents/tests/test_migration_archive_files.py index 32929d92c..8bd191d4d 100644 --- a/src/documents/tests/test_migration_archive_files.py +++ b/src/documents/tests/test_migration_archive_files.py @@ -6,12 +6,12 @@ from unittest import mock from django.conf import settings from django.test import override_settings + from documents.parsers import ParseError from documents.tests.utils import DirectoriesMixin from documents.tests.utils import FileSystemAssertsMixin from documents.tests.utils import TestMigrations - STORAGE_TYPE_GPG = "gpg" diff --git a/src/documents/tests/test_migration_mime_type.py b/src/documents/tests/test_migration_mime_type.py index 7b607a0cf..4dacfb41f 100644 --- a/src/documents/tests/test_migration_mime_type.py +++ b/src/documents/tests/test_migration_mime_type.py @@ -3,6 +3,7 @@ import shutil from django.conf import settings from django.test import override_settings + from documents.parsers import get_default_file_extension from documents.tests.utils import DirectoriesMixin from documents.tests.utils import TestMigrations diff --git a/src/documents/tests/test_migration_webp_conversion.py b/src/documents/tests/test_migration_webp_conversion.py index 9631c5704..d77057114 100644 --- a/src/documents/tests/test_migration_webp_conversion.py +++ b/src/documents/tests/test_migration_webp_conversion.py @@ -7,6 +7,7 @@ from typing import Union from unittest import mock from django.test import override_settings + from documents.tests.utils import TestMigrations diff --git a/src/documents/tests/test_models.py b/src/documents/tests/test_models.py index ee882dd84..70e5061c3 100644 --- a/src/documents/tests/test_models.py +++ b/src/documents/tests/test_models.py @@ -2,6 +2,7 @@ from django.test import TestCase from documents.models import Correspondent from documents.models import Document + from .factories import CorrespondentFactory from .factories import DocumentFactory diff --git a/src/documents/tests/test_parsers.py b/src/documents/tests/test_parsers.py index 7ec06d1a0..fee7234e8 100644 --- a/src/documents/tests/test_parsers.py +++ b/src/documents/tests/test_parsers.py @@ -2,8 +2,9 @@ from tempfile import TemporaryDirectory from unittest import mock from django.apps import apps -from django.test import override_settings from django.test import TestCase +from django.test import override_settings + from documents.parsers import get_default_file_extension from documents.parsers import get_parser_class_for_mime_type from documents.parsers import get_supported_file_extensions diff --git a/src/documents/tests/test_sanity_check.py b/src/documents/tests/test_sanity_check.py index 5fb4adfcc..efee63355 100644 --- a/src/documents/tests/test_sanity_check.py +++ b/src/documents/tests/test_sanity_check.py @@ -6,6 +6,7 @@ from pathlib import Path import filelock from django.conf import settings from django.test import TestCase + from documents.models import Document from documents.sanity_checker import check_sanity from documents.tests.utils import DirectoriesMixin diff --git a/src/documents/tests/test_task_signals.py b/src/documents/tests/test_task_signals.py index d63df0b3c..4a54220e0 100644 --- a/src/documents/tests/test_task_signals.py +++ b/src/documents/tests/test_task_signals.py @@ -3,13 +3,14 @@ from unittest import mock import celery from django.test import TestCase + from documents.data_models import ConsumableDocument from documents.data_models import DocumentSource from documents.models import PaperlessTask from documents.signals.handlers import before_task_publish_handler +from documents.signals.handlers import task_failure_handler from documents.signals.handlers import task_postrun_handler from documents.signals.handlers import task_prerun_handler -from documents.signals.handlers import task_failure_handler from documents.tests.test_consumer import fake_magic_from_file from documents.tests.utils import DirectoriesMixin diff --git a/src/documents/tests/test_tasks.py b/src/documents/tests/test_tasks.py index 2d27f93ec..334345b6a 100644 --- a/src/documents/tests/test_tasks.py +++ b/src/documents/tests/test_tasks.py @@ -4,6 +4,7 @@ from unittest import mock from django.conf import settings from django.test import TestCase from django.utils import timezone + from documents import tasks from documents.models import Correspondent from documents.models import Document diff --git a/src/documents/tests/test_views.py b/src/documents/tests/test_views.py index a8c6a67da..ef62d9adb 100644 --- a/src/documents/tests/test_views.py +++ b/src/documents/tests/test_views.py @@ -3,8 +3,8 @@ import tempfile from django.conf import settings from django.contrib.auth.models import User -from django.test import override_settings from django.test import TestCase +from django.test import override_settings from rest_framework import status diff --git a/src/documents/tests/utils.py b/src/documents/tests/utils.py index 26760f780..72f63e1c5 100644 --- a/src/documents/tests/utils.py +++ b/src/documents/tests/utils.py @@ -12,8 +12,9 @@ from unittest import mock from django.apps import apps from django.db import connection from django.db.migrations.executor import MigrationExecutor -from django.test import override_settings from django.test import TransactionTestCase +from django.test import override_settings + from documents.data_models import ConsumableDocument from documents.data_models import DocumentMetadataOverrides diff --git a/src/paperless/apps.py b/src/paperless/apps.py index 323099745..b4147a2e3 100644 --- a/src/paperless/apps.py +++ b/src/paperless/apps.py @@ -1,5 +1,6 @@ from django.apps import AppConfig from django.utils.translation import gettext_lazy as _ + from paperless.signals import handle_failed_login diff --git a/src/paperless/asgi.py b/src/paperless/asgi.py index 633c75ce0..8d63c347a 100644 --- a/src/paperless/asgi.py +++ b/src/paperless/asgi.py @@ -10,7 +10,8 @@ os.environ.setdefault("DJANGO_SETTINGS_MODULE", "paperless.settings") django_asgi_app = get_asgi_application() from channels.auth import AuthMiddlewareStack # noqa: E402 -from channels.routing import ProtocolTypeRouter, URLRouter # noqa: E402 +from channels.routing import ProtocolTypeRouter # noqa: E402 +from channels.routing import URLRouter # noqa: E402 from paperless.urls import websocket_urlpatterns # noqa: E402 diff --git a/src/paperless/checks.py b/src/paperless/checks.py index b6a931ecc..cda14baad 100644 --- a/src/paperless/checks.py +++ b/src/paperless/checks.py @@ -6,8 +6,8 @@ import stat from django.conf import settings from django.core.checks import Error -from django.core.checks import register from django.core.checks import Warning +from django.core.checks import register exists_message = "{} is set but doesn't exist." exists_hint = "Create a directory at {}" diff --git a/src/paperless/filters.py b/src/paperless/filters.py index 5be7cc2f7..a3c09d50f 100644 --- a/src/paperless/filters.py +++ b/src/paperless/filters.py @@ -1,6 +1,7 @@ from django.contrib.auth.models import Group from django.contrib.auth.models import User from django_filters.rest_framework import FilterSet + from documents.filters import CHAR_KWARGS diff --git a/src/paperless/middleware.py b/src/paperless/middleware.py index ddf12812b..cc54e892d 100644 --- a/src/paperless/middleware.py +++ b/src/paperless/middleware.py @@ -1,4 +1,5 @@ from django.conf import settings + from paperless import version diff --git a/src/paperless/tests/test_checks.py b/src/paperless/tests/test_checks.py index 7c233de23..cd706c532 100644 --- a/src/paperless/tests/test_checks.py +++ b/src/paperless/tests/test_checks.py @@ -1,7 +1,8 @@ import os -from django.test import override_settings from django.test import TestCase +from django.test import override_settings + from documents.tests.utils import DirectoriesMixin from paperless.checks import binaries_check from paperless.checks import debug_mode_check diff --git a/src/paperless/tests/test_settings.py b/src/paperless/tests/test_settings.py index 44ca46ec4..710283991 100644 --- a/src/paperless/tests/test_settings.py +++ b/src/paperless/tests/test_settings.py @@ -1,9 +1,10 @@ import datetime import os -from unittest import mock from unittest import TestCase +from unittest import mock from celery.schedules import crontab + from paperless.settings import _parse_beat_schedule from paperless.settings import _parse_ignore_dates from paperless.settings import _parse_redis_url diff --git a/src/paperless/tests/test_signals.py b/src/paperless/tests/test_signals.py index 1a4d7892f..0b1ca1b22 100644 --- a/src/paperless/tests/test_signals.py +++ b/src/paperless/tests/test_signals.py @@ -1,5 +1,6 @@ from django.http import HttpRequest from django.test import TestCase + from paperless.signals import handle_failed_login diff --git a/src/paperless/tests/test_websockets.py b/src/paperless/tests/test_websockets.py index cebbddf39..bf838821a 100644 --- a/src/paperless/tests/test_websockets.py +++ b/src/paperless/tests/test_websockets.py @@ -2,10 +2,10 @@ from unittest import mock from channels.layers import get_channel_layer from channels.testing import WebsocketCommunicator -from django.test import override_settings from django.test import TestCase -from paperless.asgi import application +from django.test import override_settings +from paperless.asgi import application TEST_CHANNEL_LAYERS = { "default": { diff --git a/src/paperless/urls.py b/src/paperless/urls.py index 217268508..c2b72d7b9 100644 --- a/src/paperless/urls.py +++ b/src/paperless/urls.py @@ -7,6 +7,9 @@ from django.urls import re_path from django.utils.translation import gettext_lazy as _ from django.views.decorators.csrf import csrf_exempt from django.views.generic import RedirectView +from rest_framework.authtoken import views +from rest_framework.routers import DefaultRouter + from documents.views import AcknowledgeTasksView from documents.views import BulkDownloadView from documents.views import BulkEditView @@ -32,8 +35,6 @@ from paperless.views import UserViewSet from paperless_mail.views import MailAccountTestView from paperless_mail.views import MailAccountViewSet from paperless_mail.views import MailRuleViewSet -from rest_framework.authtoken import views -from rest_framework.routers import DefaultRouter api_router = DefaultRouter() api_router.register(r"correspondents", CorrespondentViewSet) diff --git a/src/paperless/views.py b/src/paperless/views.py index 00945e5fb..588b534e3 100644 --- a/src/paperless/views.py +++ b/src/paperless/views.py @@ -6,15 +6,16 @@ from django.db.models.functions import Lower from django.http import HttpResponse from django.views.generic import View from django_filters.rest_framework import DjangoFilterBackend +from rest_framework.filters import OrderingFilter +from rest_framework.pagination import PageNumberPagination +from rest_framework.permissions import IsAuthenticated +from rest_framework.viewsets import ModelViewSet + from documents.permissions import PaperlessObjectPermissions from paperless.filters import GroupFilterSet from paperless.filters import UserFilterSet from paperless.serialisers import GroupSerializer from paperless.serialisers import UserSerializer -from rest_framework.filters import OrderingFilter -from rest_framework.pagination import PageNumberPagination -from rest_framework.permissions import IsAuthenticated -from rest_framework.viewsets import ModelViewSet class StandardPagination(PageNumberPagination): diff --git a/src/paperless_mail/admin.py b/src/paperless_mail/admin.py index 07582cc0f..9f2b09077 100644 --- a/src/paperless_mail/admin.py +++ b/src/paperless_mail/admin.py @@ -1,6 +1,7 @@ from django import forms from django.contrib import admin from django.utils.translation import gettext_lazy as _ + from paperless_mail.models import MailAccount from paperless_mail.models import MailRule from paperless_mail.models import ProcessedMail diff --git a/src/paperless_mail/apps.py b/src/paperless_mail/apps.py index 719400e76..a07a059b4 100644 --- a/src/paperless_mail/apps.py +++ b/src/paperless_mail/apps.py @@ -1,6 +1,7 @@ from django.apps import AppConfig from django.conf import settings from django.utils.translation import gettext_lazy as _ + from paperless_mail.signals import mail_consumer_declaration diff --git a/src/paperless_mail/mail.py b/src/paperless_mail/mail.py index 1014e4035..e540ae0e0 100644 --- a/src/paperless_mail/mail.py +++ b/src/paperless_mail/mail.py @@ -21,6 +21,16 @@ from django.conf import settings from django.db import DatabaseError from django.utils.timezone import is_naive from django.utils.timezone import make_aware +from imap_tools import AND +from imap_tools import NOT +from imap_tools import MailBox +from imap_tools import MailboxFolderSelectError +from imap_tools import MailBoxUnencrypted +from imap_tools import MailMessage +from imap_tools import MailMessageFlags +from imap_tools.mailbox import MailBoxTls +from imap_tools.query import LogicOperator + from documents.data_models import ConsumableDocument from documents.data_models import DocumentMetadataOverrides from documents.data_models import DocumentSource @@ -28,15 +38,6 @@ from documents.loggers import LoggingMixin from documents.models import Correspondent from documents.parsers import is_mime_type_supported from documents.tasks import consume_file -from imap_tools import AND -from imap_tools import MailBox -from imap_tools import MailboxFolderSelectError -from imap_tools import MailBoxUnencrypted -from imap_tools import MailMessage -from imap_tools import MailMessageFlags -from imap_tools import NOT -from imap_tools.mailbox import MailBoxTls -from imap_tools.query import LogicOperator from paperless_mail.models import MailAccount from paperless_mail.models import MailRule from paperless_mail.models import ProcessedMail diff --git a/src/paperless_mail/management/commands/mail_fetcher.py b/src/paperless_mail/management/commands/mail_fetcher.py index e2bc8262c..0bdb5fe96 100644 --- a/src/paperless_mail/management/commands/mail_fetcher.py +++ b/src/paperless_mail/management/commands/mail_fetcher.py @@ -1,4 +1,5 @@ from django.core.management.base import BaseCommand + from paperless_mail import tasks diff --git a/src/paperless_mail/migrations/0001_initial.py b/src/paperless_mail/migrations/0001_initial.py index dbc6e467f..6fbec2892 100644 --- a/src/paperless_mail/migrations/0001_initial.py +++ b/src/paperless_mail/migrations/0001_initial.py @@ -1,7 +1,8 @@ # Generated by Django 3.1.3 on 2020-11-15 22:54 -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0003_auto_20201118_1940.py b/src/paperless_mail/migrations/0003_auto_20201118_1940.py index 30a882b03..053cd6788 100644 --- a/src/paperless_mail/migrations/0003_auto_20201118_1940.py +++ b/src/paperless_mail/migrations/0003_auto_20201118_1940.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.3 on 2020-11-18 19:40 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0004_mailrule_order.py b/src/paperless_mail/migrations/0004_mailrule_order.py index 71b404185..04e7e48ff 100644 --- a/src/paperless_mail/migrations/0004_mailrule_order.py +++ b/src/paperless_mail/migrations/0004_mailrule_order.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.3 on 2020-11-21 21:51 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0005_help_texts.py b/src/paperless_mail/migrations/0005_help_texts.py index 2d7a543b3..f9421e251 100644 --- a/src/paperless_mail/migrations/0005_help_texts.py +++ b/src/paperless_mail/migrations/0005_help_texts.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.3 on 2020-11-22 10:36 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0006_auto_20210101_2340.py b/src/paperless_mail/migrations/0006_auto_20210101_2340.py index 90d768842..fa84af978 100644 --- a/src/paperless_mail/migrations/0006_auto_20210101_2340.py +++ b/src/paperless_mail/migrations/0006_auto_20210101_2340.py @@ -1,7 +1,8 @@ # Generated by Django 3.1.4 on 2021-01-01 23:40 -from django.db import migrations, models import django.db.models.deletion +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0007_auto_20210106_0138.py b/src/paperless_mail/migrations/0007_auto_20210106_0138.py index 3325a86f7..5752a3b42 100644 --- a/src/paperless_mail/migrations/0007_auto_20210106_0138.py +++ b/src/paperless_mail/migrations/0007_auto_20210106_0138.py @@ -1,6 +1,7 @@ # Generated by Django 3.1.5 on 2021-01-06 01:38 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0008_auto_20210516_0940.py b/src/paperless_mail/migrations/0008_auto_20210516_0940.py index c25852c7d..6b7d68574 100644 --- a/src/paperless_mail/migrations/0008_auto_20210516_0940.py +++ b/src/paperless_mail/migrations/0008_auto_20210516_0940.py @@ -1,6 +1,7 @@ # Generated by Django 3.2.3 on 2021-05-16 09:40 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0009_alter_mailrule_action_alter_mailrule_folder.py b/src/paperless_mail/migrations/0009_alter_mailrule_action_alter_mailrule_folder.py index 7eff52691..c8eed5dea 100644 --- a/src/paperless_mail/migrations/0009_alter_mailrule_action_alter_mailrule_folder.py +++ b/src/paperless_mail/migrations/0009_alter_mailrule_action_alter_mailrule_folder.py @@ -1,6 +1,7 @@ # Generated by Django 4.0.3 on 2022-03-28 17:40 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0009_mailrule_assign_tags.py b/src/paperless_mail/migrations/0009_mailrule_assign_tags.py index fe2447e62..fa466589c 100644 --- a/src/paperless_mail/migrations/0009_mailrule_assign_tags.py +++ b/src/paperless_mail/migrations/0009_mailrule_assign_tags.py @@ -1,6 +1,7 @@ # Generated by Django 3.2.12 on 2022-03-11 15:00 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0012_alter_mailrule_assign_tags.py b/src/paperless_mail/migrations/0012_alter_mailrule_assign_tags.py index 610237f3b..d1fe98cab 100644 --- a/src/paperless_mail/migrations/0012_alter_mailrule_assign_tags.py +++ b/src/paperless_mail/migrations/0012_alter_mailrule_assign_tags.py @@ -1,6 +1,7 @@ # Generated by Django 3.2.12 on 2022-03-11 16:21 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0014_alter_mailrule_action.py b/src/paperless_mail/migrations/0014_alter_mailrule_action.py index 6d3a369cd..4ec57e505 100644 --- a/src/paperless_mail/migrations/0014_alter_mailrule_action.py +++ b/src/paperless_mail/migrations/0014_alter_mailrule_action.py @@ -1,6 +1,7 @@ # Generated by Django 4.0.4 on 2022-04-18 22:57 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0015_alter_mailrule_action.py b/src/paperless_mail/migrations/0015_alter_mailrule_action.py index 62a44e6aa..83ffe5488 100644 --- a/src/paperless_mail/migrations/0015_alter_mailrule_action.py +++ b/src/paperless_mail/migrations/0015_alter_mailrule_action.py @@ -1,6 +1,7 @@ # Generated by Django 4.0.4 on 2022-05-29 13:21 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0016_mailrule_consumption_scope.py b/src/paperless_mail/migrations/0016_mailrule_consumption_scope.py index ea54bce1b..21af834c5 100644 --- a/src/paperless_mail/migrations/0016_mailrule_consumption_scope.py +++ b/src/paperless_mail/migrations/0016_mailrule_consumption_scope.py @@ -1,6 +1,7 @@ # Generated by Django 4.0.4 on 2022-07-11 22:02 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0017_mailaccount_owner_mailrule_owner.py b/src/paperless_mail/migrations/0017_mailaccount_owner_mailrule_owner.py index 5eeccf440..52748f639 100644 --- a/src/paperless_mail/migrations/0017_mailaccount_owner_mailrule_owner.py +++ b/src/paperless_mail/migrations/0017_mailaccount_owner_mailrule_owner.py @@ -1,8 +1,9 @@ # Generated by Django 4.1.3 on 2022-12-06 04:48 -from django.conf import settings -from django.db import migrations, models import django.db.models.deletion +from django.conf import settings +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0018_processedmail.py b/src/paperless_mail/migrations/0018_processedmail.py index 93ca64dda..cfeb55d0a 100644 --- a/src/paperless_mail/migrations/0018_processedmail.py +++ b/src/paperless_mail/migrations/0018_processedmail.py @@ -1,9 +1,10 @@ # Generated by Django 4.1.5 on 2023-03-03 18:38 -from django.conf import settings -from django.db import migrations, models import django.db.models.deletion import django.utils.timezone +from django.conf import settings +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0019_mailrule_filter_to.py b/src/paperless_mail/migrations/0019_mailrule_filter_to.py index 5089670b0..8951be290 100644 --- a/src/paperless_mail/migrations/0019_mailrule_filter_to.py +++ b/src/paperless_mail/migrations/0019_mailrule_filter_to.py @@ -1,6 +1,7 @@ # Generated by Django 4.1.7 on 2023-03-11 21:08 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0020_mailaccount_is_token.py b/src/paperless_mail/migrations/0020_mailaccount_is_token.py index 98a48ec51..81ce50a19 100644 --- a/src/paperless_mail/migrations/0020_mailaccount_is_token.py +++ b/src/paperless_mail/migrations/0020_mailaccount_is_token.py @@ -1,6 +1,7 @@ # Generated by Django 4.1.7 on 2023-03-22 17:51 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/migrations/0021_alter_mailaccount_password.py b/src/paperless_mail/migrations/0021_alter_mailaccount_password.py index 2c0f68065..0c012b98b 100644 --- a/src/paperless_mail/migrations/0021_alter_mailaccount_password.py +++ b/src/paperless_mail/migrations/0021_alter_mailaccount_password.py @@ -1,6 +1,7 @@ # Generated by Django 4.1.7 on 2023-04-20 15:03 -from django.db import migrations, models +from django.db import migrations +from django.db import models class Migration(migrations.Migration): diff --git a/src/paperless_mail/models.py b/src/paperless_mail/models.py index a9165b248..f9981be8f 100644 --- a/src/paperless_mail/models.py +++ b/src/paperless_mail/models.py @@ -1,8 +1,9 @@ -import documents.models as document_models from django.db import models from django.utils import timezone from django.utils.translation import gettext_lazy as _ +import documents.models as document_models + class MailAccount(document_models.ModelWithOwner): class Meta: diff --git a/src/paperless_mail/parsers.py b/src/paperless_mail/parsers.py index 4ce8a6019..4d8c03a18 100644 --- a/src/paperless_mail/parsers.py +++ b/src/paperless_mail/parsers.py @@ -10,13 +10,14 @@ from bleach import linkify from django.conf import settings from django.utils.timezone import is_naive from django.utils.timezone import make_aware -from documents.parsers import DocumentParser -from documents.parsers import make_thumbnail_from_pdf -from documents.parsers import ParseError from humanfriendly import format_size from imap_tools import MailMessage from tika import parser +from documents.parsers import DocumentParser +from documents.parsers import ParseError +from documents.parsers import make_thumbnail_from_pdf + class MailDocumentParser(DocumentParser): """ diff --git a/src/paperless_mail/serialisers.py b/src/paperless_mail/serialisers.py index e04a5c066..41dea9033 100644 --- a/src/paperless_mail/serialisers.py +++ b/src/paperless_mail/serialisers.py @@ -1,10 +1,11 @@ +from rest_framework import serializers + from documents.serialisers import CorrespondentField from documents.serialisers import DocumentTypeField from documents.serialisers import OwnedObjectSerializer from documents.serialisers import TagsField from paperless_mail.models import MailAccount from paperless_mail.models import MailRule -from rest_framework import serializers class ObfuscatedPasswordField(serializers.Field): diff --git a/src/paperless_mail/tasks.py b/src/paperless_mail/tasks.py index 5c92233de..ab013a41e 100644 --- a/src/paperless_mail/tasks.py +++ b/src/paperless_mail/tasks.py @@ -1,6 +1,7 @@ import logging from celery import shared_task + from paperless_mail.mail import MailAccountHandler from paperless_mail.mail import MailError from paperless_mail.models import MailAccount diff --git a/src/paperless_mail/tests/test_api.py b/src/paperless_mail/tests/test_api.py index 64b651970..28a369c6c 100644 --- a/src/paperless_mail/tests/test_api.py +++ b/src/paperless_mail/tests/test_api.py @@ -2,6 +2,9 @@ import json from unittest import mock from django.contrib.auth.models import User +from rest_framework import status +from rest_framework.test import APITestCase + from documents.models import Correspondent from documents.models import DocumentType from documents.models import Tag @@ -9,8 +12,6 @@ from documents.tests.utils import DirectoriesMixin from paperless_mail.models import MailAccount from paperless_mail.models import MailRule from paperless_mail.tests.test_mail import BogusMailBox -from rest_framework import status -from rest_framework.test import APITestCase class TestAPIMailAccounts(DirectoriesMixin, APITestCase): diff --git a/src/paperless_mail/tests/test_live_mail.py b/src/paperless_mail/tests/test_live_mail.py index 757bc5f4f..89029f5fd 100644 --- a/src/paperless_mail/tests/test_live_mail.py +++ b/src/paperless_mail/tests/test_live_mail.py @@ -2,11 +2,13 @@ import os import pytest from django.test import TestCase + from paperless_mail.mail import MailAccountHandler from paperless_mail.mail import MailError from paperless_mail.models import MailAccount from paperless_mail.models import MailRule + # Only run if the environment is setup # And the environment is not empty (forks, I think) @pytest.mark.skipif( diff --git a/src/paperless_mail/tests/test_mail.py b/src/paperless_mail/tests/test_mail.py index 4ad79563b..5f75e6710 100644 --- a/src/paperless_mail/tests/test_mail.py +++ b/src/paperless_mail/tests/test_mail.py @@ -12,21 +12,22 @@ from unittest import mock from django.core.management import call_command from django.db import DatabaseError from django.test import TestCase -from documents.models import Correspondent -from documents.tests.utils import DirectoriesMixin -from documents.tests.utils import FileSystemAssertsMixin +from imap_tools import NOT from imap_tools import EmailAddress from imap_tools import FolderInfo from imap_tools import MailboxFolderSelectError from imap_tools import MailboxLoginError from imap_tools import MailMessage from imap_tools import MailMessageFlags -from imap_tools import NOT + +from documents.models import Correspondent +from documents.tests.utils import DirectoriesMixin +from documents.tests.utils import FileSystemAssertsMixin from paperless_mail import tasks -from paperless_mail.mail import apply_mail_action from paperless_mail.mail import MailAccountHandler from paperless_mail.mail import MailError from paperless_mail.mail import TagMailAction +from paperless_mail.mail import apply_mail_action from paperless_mail.models import MailAccount from paperless_mail.models import MailRule diff --git a/src/paperless_mail/tests/test_parsers.py b/src/paperless_mail/tests/test_parsers.py index 3515cfbf4..e6cae1121 100644 --- a/src/paperless_mail/tests/test_parsers.py +++ b/src/paperless_mail/tests/test_parsers.py @@ -3,6 +3,7 @@ import os from unittest import mock from django.test import TestCase + from documents.parsers import ParseError from documents.tests.utils import FileSystemAssertsMixin from paperless_mail.parsers import MailDocumentParser diff --git a/src/paperless_mail/tests/test_parsers_live.py b/src/paperless_mail/tests/test_parsers_live.py index 1ff42b6dd..1b911453d 100644 --- a/src/paperless_mail/tests/test_parsers_live.py +++ b/src/paperless_mail/tests/test_parsers_live.py @@ -6,13 +6,14 @@ from urllib.request import urlopen import pytest from django.test import TestCase -from documents.parsers import run_convert -from documents.tests.utils import FileSystemAssertsMixin from imagehash import average_hash -from paperless_mail.parsers import MailDocumentParser from pdfminer.high_level import extract_text from PIL import Image +from documents.parsers import run_convert +from documents.tests.utils import FileSystemAssertsMixin +from paperless_mail.parsers import MailDocumentParser + class TestParserLive(FileSystemAssertsMixin, TestCase): SAMPLE_FILES = os.path.join(os.path.dirname(__file__), "samples") diff --git a/src/paperless_mail/views.py b/src/paperless_mail/views.py index e2bee34ff..74c170b0c 100644 --- a/src/paperless_mail/views.py +++ b/src/paperless_mail/views.py @@ -2,20 +2,21 @@ import datetime import logging from django.http import HttpResponseBadRequest -from documents.views import PassUserMixin -from paperless.views import StandardPagination -from paperless_mail.mail import get_mailbox -from paperless_mail.mail import mailbox_login -from paperless_mail.mail import MailError -from paperless_mail.models import MailAccount -from paperless_mail.models import MailRule -from paperless_mail.serialisers import MailAccountSerializer -from paperless_mail.serialisers import MailRuleSerializer from rest_framework.generics import GenericAPIView from rest_framework.permissions import IsAuthenticated from rest_framework.response import Response from rest_framework.viewsets import ModelViewSet +from documents.views import PassUserMixin +from paperless.views import StandardPagination +from paperless_mail.mail import MailError +from paperless_mail.mail import get_mailbox +from paperless_mail.mail import mailbox_login +from paperless_mail.models import MailAccount +from paperless_mail.models import MailRule +from paperless_mail.serialisers import MailAccountSerializer +from paperless_mail.serialisers import MailRuleSerializer + class MailAccountViewSet(ModelViewSet, PassUserMixin): model = MailAccount diff --git a/src/paperless_tesseract/apps.py b/src/paperless_tesseract/apps.py index 02045758b..67b90f006 100644 --- a/src/paperless_tesseract/apps.py +++ b/src/paperless_tesseract/apps.py @@ -1,4 +1,5 @@ from django.apps import AppConfig + from paperless_tesseract.signals import tesseract_consumer_declaration diff --git a/src/paperless_tesseract/checks.py b/src/paperless_tesseract/checks.py index ed5725d36..82d255005 100644 --- a/src/paperless_tesseract/checks.py +++ b/src/paperless_tesseract/checks.py @@ -3,8 +3,8 @@ import subprocess from django.conf import settings from django.core.checks import Error -from django.core.checks import register from django.core.checks import Warning +from django.core.checks import register def get_tesseract_langs(): diff --git a/src/paperless_tesseract/parsers.py b/src/paperless_tesseract/parsers.py index f3e8e21fd..d0eb98cd5 100644 --- a/src/paperless_tesseract/parsers.py +++ b/src/paperless_tesseract/parsers.py @@ -7,11 +7,12 @@ from pathlib import Path from typing import Optional from django.conf import settings -from documents.parsers import DocumentParser -from documents.parsers import make_thumbnail_from_pdf -from documents.parsers import ParseError from PIL import Image +from documents.parsers import DocumentParser +from documents.parsers import ParseError +from documents.parsers import make_thumbnail_from_pdf + class NoTextFoundException(Exception): pass @@ -310,7 +311,8 @@ class RasterisedDocumentParser(DocumentParser): # text located via OCR import ocrmypdf - from ocrmypdf import InputFileError, EncryptedPdfError + from ocrmypdf import EncryptedPdfError + from ocrmypdf import InputFileError archive_path = Path(os.path.join(self.tempdir, "archive.pdf")) sidecar_file = Path(os.path.join(self.tempdir, "sidecar.txt")) diff --git a/src/paperless_tesseract/tests/test_checks.py b/src/paperless_tesseract/tests/test_checks.py index fdcbf7656..79991bab1 100644 --- a/src/paperless_tesseract/tests/test_checks.py +++ b/src/paperless_tesseract/tests/test_checks.py @@ -1,8 +1,9 @@ from unittest import mock from django.core.checks import ERROR -from django.test import override_settings from django.test import TestCase +from django.test import override_settings + from paperless_tesseract import check_default_language_available diff --git a/src/paperless_tesseract/tests/test_parser.py b/src/paperless_tesseract/tests/test_parser.py index 5cbbc4d55..fea4f2ff9 100644 --- a/src/paperless_tesseract/tests/test_parser.py +++ b/src/paperless_tesseract/tests/test_parser.py @@ -5,14 +5,15 @@ import uuid from typing import ContextManager from unittest import mock -from django.test import override_settings from django.test import TestCase +from django.test import override_settings + from documents.parsers import ParseError from documents.parsers import run_convert from documents.tests.utils import DirectoriesMixin from documents.tests.utils import FileSystemAssertsMixin -from paperless_tesseract.parsers import post_process_text from paperless_tesseract.parsers import RasterisedDocumentParser +from paperless_tesseract.parsers import post_process_text image_to_string_calls = [] diff --git a/src/paperless_text/apps.py b/src/paperless_text/apps.py index 61f5eb7ef..1acc361aa 100644 --- a/src/paperless_text/apps.py +++ b/src/paperless_text/apps.py @@ -1,4 +1,5 @@ from django.apps import AppConfig + from paperless_text.signals import text_consumer_declaration diff --git a/src/paperless_text/parsers.py b/src/paperless_text/parsers.py index 4889c54df..37e4ca1a6 100644 --- a/src/paperless_text/parsers.py +++ b/src/paperless_text/parsers.py @@ -1,11 +1,12 @@ import os from django.conf import settings -from documents.parsers import DocumentParser from PIL import Image from PIL import ImageDraw from PIL import ImageFont +from documents.parsers import DocumentParser + class TextDocumentParser(DocumentParser): """ diff --git a/src/paperless_text/tests/test_parser.py b/src/paperless_text/tests/test_parser.py index 76a8b8498..4e7f19b33 100644 --- a/src/paperless_text/tests/test_parser.py +++ b/src/paperless_text/tests/test_parser.py @@ -1,6 +1,7 @@ import os from django.test import TestCase + from documents.tests.utils import DirectoriesMixin from documents.tests.utils import FileSystemAssertsMixin from paperless_text.parsers import TextDocumentParser diff --git a/src/paperless_tika/apps.py b/src/paperless_tika/apps.py index 012986543..6fad68df8 100644 --- a/src/paperless_tika/apps.py +++ b/src/paperless_tika/apps.py @@ -1,5 +1,6 @@ from django.apps import AppConfig from django.conf import settings + from paperless_tika.signals import tika_consumer_declaration diff --git a/src/paperless_tika/parsers.py b/src/paperless_tika/parsers.py index ea6a83f6c..779abbe59 100644 --- a/src/paperless_tika/parsers.py +++ b/src/paperless_tika/parsers.py @@ -4,11 +4,12 @@ from pathlib import Path import dateutil.parser import requests from django.conf import settings -from documents.parsers import DocumentParser -from documents.parsers import make_thumbnail_from_pdf -from documents.parsers import ParseError from tika import parser +from documents.parsers import DocumentParser +from documents.parsers import ParseError +from documents.parsers import make_thumbnail_from_pdf + class TikaDocumentParser(DocumentParser): """ diff --git a/src/paperless_tika/tests/test_live_tika.py b/src/paperless_tika/tests/test_live_tika.py index 60c2b96a4..766517965 100644 --- a/src/paperless_tika/tests/test_live_tika.py +++ b/src/paperless_tika/tests/test_live_tika.py @@ -5,6 +5,7 @@ from typing import Final import pytest from django.test import TestCase + from paperless_tika.parsers import TikaDocumentParser diff --git a/src/paperless_tika/tests/test_tika_parser.py b/src/paperless_tika/tests/test_tika_parser.py index 20e846850..4f540f3c0 100644 --- a/src/paperless_tika/tests/test_tika_parser.py +++ b/src/paperless_tika/tests/test_tika_parser.py @@ -3,13 +3,14 @@ import os from pathlib import Path from unittest import mock -from django.test import override_settings from django.test import TestCase -from documents.parsers import ParseError -from paperless_tika.parsers import TikaDocumentParser +from django.test import override_settings from requests import Response from rest_framework import status +from documents.parsers import ParseError +from paperless_tika.parsers import TikaDocumentParser + class TestTikaParser(TestCase): def setUp(self) -> None: From 6f163111ce9d446f7f4c7090c3f4d4617f078c8f Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Tue, 25 Apr 2023 09:59:24 -0700 Subject: [PATCH 25/30] Upgrades black to v23, upgrades ruff --- .github/scripts/cleanup-tags.py | 3 - .pre-commit-config.yaml | 6 +- Pipfile.lock | 104 +++++++++--------- docker/wait-for-redis.py | 1 - src/documents/admin.py | 7 -- src/documents/apps.py | 1 - src/documents/bulk_edit.py | 4 - src/documents/checks.py | 2 - src/documents/classifier.py | 4 - src/documents/consumer.py | 3 - src/documents/filters.py | 1 - src/documents/index.py | 2 +- src/documents/loggers.py | 1 - .../management/commands/decrypt_documents.py | 5 - .../management/commands/document_archiver.py | 3 - .../commands/document_create_classifier.py | 1 - .../management/commands/document_exporter.py | 2 - .../management/commands/document_importer.py | 5 - .../management/commands/document_index.py | 1 - .../management/commands/document_renamer.py | 2 - .../management/commands/document_retagger.py | 2 - .../commands/document_sanity_checker.py | 2 - .../commands/document_thumbnails.py | 2 - .../management/commands/manage_superuser.py | 2 - src/documents/migrations/0001_initial.py | 1 - .../migrations/0002_auto_20151226_1316.py | 1 - src/documents/migrations/0003_sender.py | 1 - .../migrations/0004_auto_20160114_1844.py | 1 - .../migrations/0005_auto_20160123_0313.py | 1 - .../migrations/0006_auto_20160123_0430.py | 1 - .../migrations/0007_auto_20160126_2114.py | 1 - .../migrations/0008_document_file_type.py | 1 - .../migrations/0009_auto_20160214_0040.py | 1 - src/documents/migrations/0010_log.py | 1 - .../migrations/0012_auto_20160305_0040.py | 2 - .../migrations/0013_auto_20160325_2111.py | 1 - .../migrations/0014_document_checksum.py | 2 - .../0015_add_insensitive_to_match.py | 1 - .../migrations/0016_auto_20170325_1558.py | 1 - .../migrations/0017_auto_20170512_0507.py | 1 - .../migrations/0018_auto_20170715_1712.py | 1 - .../migrations/0021_document_storage_type.py | 1 - .../migrations/0022_auto_20181007_1420.py | 1 - .../0023_document_current_filename.py | 1 - .../migrations/1000_update_paperless_all.py | 1 - .../migrations/1001_auto_20201109_1636.py | 1 - .../migrations/1002_auto_20201111_1105.py | 1 - src/documents/migrations/1003_mime_types.py | 2 - .../migrations/1004_sanity_check_schedule.py | 1 - src/documents/migrations/1005_checksums.py | 1 - .../migrations/1006_auto_20201208_2209.py | 1 - .../1007_savedview_savedviewfilterrule.py | 1 - .../migrations/1008_auto_20201216_1736.py | 1 - .../migrations/1009_auto_20201216_2005.py | 1 - .../migrations/1010_auto_20210101_2159.py | 1 - .../migrations/1011_auto_20210101_2340.py | 1 - .../migrations/1012_fix_archive_files.py | 2 - .../migrations/1013_migrate_tag_colour.py | 1 - .../migrations/1014_auto_20210228_1614.py | 1 - .../migrations/1015_remove_null_characters.py | 1 - .../migrations/1016_auto_20210317_1351.py | 1 - ...017_alter_savedviewfilterrule_rule_type.py | 1 - .../1018_alter_savedviewfilterrule_value.py | 1 - .../1019_storagepath_document_storage_path.py | 1 - src/documents/migrations/1019_uisettings.py | 1 - .../migrations/1020_merge_20220518_1839.py | 1 - .../1021_webp_thumbnail_conversion.py | 4 - .../migrations/1022_paperlesstask.py | 1 - .../1024_document_original_filename.py | 1 - ...025_alter_savedviewfilterrule_rule_type.py | 1 - .../migrations/1026_transition_to_celery.py | 1 - ...e_paperlesstask_attempted_task_and_more.py | 1 - ...remove_paperlesstask_task_args_and_more.py | 1 - ...29_alter_document_archive_serial_number.py | 1 - ...1030_alter_paperlesstask_task_file_name.py | 1 - ...dview_user_correspondent_owner_and_more.py | 1 - ...rrespondent_matching_algorithm_and_more.py | 1 - ...type_options_alter_tag_options_and_more.py | 1 - ...034_alter_savedviewfilterrule_rule_type.py | 1 - .../migrations/1035_rename_comment_note.py | 1 - src/documents/models.py | 11 +- src/documents/parsers.py | 1 - src/documents/permissions.py | 2 +- src/documents/sanity_checker.py | 1 - src/documents/serialisers.py | 12 -- src/documents/signals/handlers.py | 5 - src/documents/tasks.py | 3 - src/documents/tests/test_api.py | 30 ----- src/documents/tests/test_checks.py | 2 - src/documents/tests/test_classifier.py | 2 - src/documents/tests/test_consumer.py | 11 -- src/documents/tests/test_date_parsing.py | 1 - src/documents/tests/test_document_model.py | 5 - src/documents/tests/test_file_handling.py | 3 - src/documents/tests/test_importer.py | 2 - src/documents/tests/test_index.py | 1 - src/documents/tests/test_management.py | 3 - .../tests/test_management_consumer.py | 7 -- .../tests/test_management_exporter.py | 6 - .../tests/test_management_retagger.py | 1 - src/documents/tests/test_matchables.py | 7 -- .../tests/test_migration_archive_files.py | 8 -- .../tests/test_migration_mime_type.py | 2 - .../test_migration_remove_null_characters.py | 1 - .../tests/test_migration_tag_colors.py | 2 - .../tests/test_migration_webp_conversion.py | 6 - src/documents/tests/test_models.py | 1 - src/documents/tests/test_sanity_check.py | 1 - src/documents/tests/test_views.py | 2 +- src/documents/tests/utils.py | 1 - src/documents/views.py | 20 ++-- src/manage.py | 1 - src/paperless/db.py | 1 - src/paperless/serialisers.py | 2 - src/paperless/tests/test_settings.py | 1 - src/paperless_mail/admin.py | 3 - src/paperless_mail/mail.py | 11 -- .../management/commands/mail_fetcher.py | 2 - src/paperless_mail/migrations/0001_initial.py | 1 - .../migrations/0002_auto_20201117_1334.py | 1 - .../migrations/0003_auto_20201118_1940.py | 1 - .../migrations/0004_mailrule_order.py | 1 - .../migrations/0005_help_texts.py | 1 - .../migrations/0006_auto_20210101_2340.py | 1 - .../migrations/0007_auto_20210106_0138.py | 1 - .../migrations/0008_auto_20210516_0940.py | 1 - ...r_mailrule_action_alter_mailrule_folder.py | 1 - .../migrations/0009_mailrule_assign_tags.py | 1 - .../migrations/0010_auto_20220311_1602.py | 1 - .../0011_remove_mailrule_assign_tag.py | 1 - .../0012_alter_mailrule_assign_tags.py | 1 - .../migrations/0013_merge_20220412_1051.py | 1 - .../migrations/0014_alter_mailrule_action.py | 1 - .../migrations/0015_alter_mailrule_action.py | 1 - .../0016_mailrule_consumption_scope.py | 1 - .../0017_mailaccount_owner_mailrule_owner.py | 1 - .../migrations/0018_processedmail.py | 1 - src/paperless_mail/models.py | 1 - src/paperless_mail/parsers.py | 2 - src/paperless_mail/tests/test_live_mail.py | 4 - src/paperless_mail/tests/test_mail.py | 13 +-- src/paperless_mail/views.py | 1 - src/paperless_tesseract/apps.py | 2 - src/paperless_tesseract/parsers.py | 2 - src/paperless_tesseract/tests/test_parser.py | 3 - src/paperless_text/apps.py | 2 - src/paperless_text/tests/test_parser.py | 2 - 147 files changed, 74 insertions(+), 387 deletions(-) diff --git a/.github/scripts/cleanup-tags.py b/.github/scripts/cleanup-tags.py index ce2a32d27..bf8b119b8 100644 --- a/.github/scripts/cleanup-tags.py +++ b/.github/scripts/cleanup-tags.py @@ -200,7 +200,6 @@ class RegistryTagsCleaner: tag, ) for manifest in image_index.image_pointers: - if manifest.digest in untagged_versions: logger.info( f"Skipping deletion of {manifest.digest}," @@ -287,7 +286,6 @@ class RegistryTagsCleaner: logger.info("Beginning confirmation step") a_tag_failed = False for tag in sorted(self.tags_to_keep): - try: image_index = ImageIndex( f"ghcr.io/{self.repo_owner}/{self.package_name}", @@ -301,7 +299,6 @@ class RegistryTagsCleaner: digest_name = f"ghcr.io/{self.repo_owner}/{self.package_name}@{manifest.digest}" try: - subprocess.run( [ shutil.which("docker"), diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 86aed9973..ceb476d6e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -37,16 +37,16 @@ repos: exclude: "(^Pipfile\\.lock$)" # Python hooks - repo: https://github.com/charliermarsh/ruff-pre-commit - rev: 'v0.0.259' + rev: 'v0.0.263' hooks: - id: ruff - repo: https://github.com/psf/black - rev: 22.12.0 + rev: 23.3.0 hooks: - id: black # Dockerfile hooks - repo: https://github.com/AleksaC/hadolint-py - rev: v2.10.0 + rev: v2.12.0.2 hooks: - id: hadolint # Shell script hooks diff --git a/Pipfile.lock b/Pipfile.lock index 99340dc16..3637bbe50 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -2256,34 +2256,35 @@ }, "black": { "hashes": [ - "sha256:0052dba51dec07ed029ed61b18183942043e00008ec65d5028814afaab9a22fd", - "sha256:0680d4380db3719ebcfb2613f34e86c8e6d15ffeabcf8ec59355c5e7b85bb555", - "sha256:121ca7f10b4a01fd99951234abdbd97728e1240be89fde18480ffac16503d481", - "sha256:162e37d49e93bd6eb6f1afc3e17a3d23a823042530c37c3c42eeeaf026f38468", - "sha256:2a951cc83ab535d248c89f300eccbd625e80ab880fbcfb5ac8afb5f01a258ac9", - "sha256:2bf649fda611c8550ca9d7592b69f0637218c2369b7744694c5e4902873b2f3a", - "sha256:382998821f58e5c8238d3166c492139573325287820963d2f7de4d518bd76958", - "sha256:49f7b39e30f326a34b5c9a4213213a6b221d7ae9d58ec70df1c4a307cf2a1580", - "sha256:57c18c5165c1dbe291d5306e53fb3988122890e57bd9b3dcb75f967f13411a26", - "sha256:7a0f701d314cfa0896b9001df70a530eb2472babb76086344e688829efd97d32", - "sha256:8178318cb74f98bc571eef19068f6ab5613b3e59d4f47771582f04e175570ed8", - "sha256:8b70eb40a78dfac24842458476135f9b99ab952dd3f2dab738c1881a9b38b753", - "sha256:9880d7d419bb7e709b37e28deb5e68a49227713b623c72b2b931028ea65f619b", - "sha256:9afd3f493666a0cd8f8df9a0200c6359ac53940cbde049dcb1a7eb6ee2dd7074", - "sha256:a29650759a6a0944e7cca036674655c2f0f63806ddecc45ed40b7b8aa314b651", - "sha256:a436e7881d33acaf2536c46a454bb964a50eff59b21b51c6ccf5a40601fbef24", - "sha256:a59db0a2094d2259c554676403fa2fac3473ccf1354c1c63eccf7ae65aac8ab6", - "sha256:a8471939da5e824b891b25751955be52ee7f8a30a916d570a5ba8e0f2eb2ecad", - "sha256:b0bd97bea8903f5a2ba7219257a44e3f1f9d00073d6cc1add68f0beec69692ac", - "sha256:b6a92a41ee34b883b359998f0c8e6eb8e99803aa8bf3123bf2b2e6fec505a221", - "sha256:bb460c8561c8c1bec7824ecbc3ce085eb50005883a6203dcfb0122e95797ee06", - "sha256:bfffba28dc52a58f04492181392ee380e95262af14ee01d4bc7bb1b1c6ca8d27", - "sha256:c1c476bc7b7d021321e7d93dc2cbd78ce103b84d5a4cf97ed535fbc0d6660648", - "sha256:c91dfc2c2a4e50df0026f88d2215e166616e0c80e86004d0003ece0488db2739", - "sha256:e6663f91b6feca5d06f2ccd49a10f254f9298cc1f7f49c46e498a0771b507104" + "sha256:064101748afa12ad2291c2b91c960be28b817c0c7eaa35bec09cc63aa56493c5", + "sha256:0945e13506be58bf7db93ee5853243eb368ace1c08a24c65ce108986eac65915", + "sha256:11c410f71b876f961d1de77b9699ad19f939094c3a677323f43d7a29855fe326", + "sha256:1c7b8d606e728a41ea1ccbd7264677e494e87cf630e399262ced92d4a8dac940", + "sha256:1d06691f1eb8de91cd1b322f21e3bfc9efe0c7ca1f0e1eb1db44ea367dff656b", + "sha256:3238f2aacf827d18d26db07524e44741233ae09a584273aa059066d644ca7b30", + "sha256:32daa9783106c28815d05b724238e30718f34155653d4d6e125dc7daec8e260c", + "sha256:35d1381d7a22cc5b2be2f72c7dfdae4072a3336060635718cc7e1ede24221d6c", + "sha256:3a150542a204124ed00683f0db1f5cf1c2aaaa9cc3495b7a3b5976fb136090ab", + "sha256:48f9d345675bb7fbc3dd85821b12487e1b9a75242028adad0333ce36ed2a6d27", + "sha256:50cb33cac881766a5cd9913e10ff75b1e8eb71babf4c7104f2e9c52da1fb7de2", + "sha256:562bd3a70495facf56814293149e51aa1be9931567474993c7942ff7d3533961", + "sha256:67de8d0c209eb5b330cce2469503de11bca4085880d62f1628bd9972cc3366b9", + "sha256:6b39abdfb402002b8a7d030ccc85cf5afff64ee90fa4c5aebc531e3ad0175ddb", + "sha256:6f3c333ea1dd6771b2d3777482429864f8e258899f6ff05826c3a4fcc5ce3f70", + "sha256:714290490c18fb0126baa0fca0a54ee795f7502b44177e1ce7624ba1c00f2331", + "sha256:7c3eb7cea23904399866c55826b31c1f55bbcd3890ce22ff70466b907b6775c2", + "sha256:92c543f6854c28a3c7f39f4d9b7694f9a6eb9d3c5e2ece488c327b6e7ea9b266", + "sha256:a6f6886c9869d4daae2d1715ce34a19bbc4b95006d20ed785ca00fa03cba312d", + "sha256:a8a968125d0a6a404842fa1bf0b349a568634f856aa08ffaff40ae0dfa52e7c6", + "sha256:c7ab5790333c448903c4b721b59c0d80b11fe5e9803d8703e84dcb8da56fec1b", + "sha256:e114420bf26b90d4b9daa597351337762b63039752bdf72bf361364c1aa05925", + "sha256:e198cf27888ad6f4ff331ca1c48ffc038848ea9f031a3b40ba36aced7e22f2c8", + "sha256:ec751418022185b0c1bb7d7736e6933d40bbb14c14a0abcf9123d1b159f98dd4", + "sha256:f0bd2f4a58d6666500542b26354978218a9babcdc972722f4bf90779524515f3" ], "index": "pypi", - "version": "==23.1.0" + "markers": "python_version >= '3.7'", + "version": "==23.3.0" }, "certifi": { "hashes": [ @@ -2718,11 +2719,11 @@ }, "packaging": { "hashes": [ - "sha256:714ac14496c3e68c99c29b00845f7a2b85f3bb6f1078fd9f72fd20f0570002b2", - "sha256:b6ad297f8907de0fa2fe1ccbd26fdaf387f5f47c7275fedf8cce89f99446cf97" + "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61", + "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f" ], "markers": "python_version >= '3.7'", - "version": "==23.0" + "version": "==23.1" }, "pathspec": { "hashes": [ @@ -2817,11 +2818,11 @@ }, "platformdirs": { "hashes": [ - "sha256:024996549ee88ec1a9aa99ff7f8fc819bb59e2c3477b410d90a16d32d6e707aa", - "sha256:e5986afb596e4bb5bde29a79ac9061aa955b94fca2399b7aaac4090860920dd8" + "sha256:64370d47dc3fca65b4879f89bdead8197e93e05d696d6d1816243ebae8595da5", + "sha256:ea61fd7b85554beecbbd3e9b37fb26689b227ffae38f73353cbcc1cf8bd01878" ], "markers": "python_version >= '3.7'", - "version": "==3.1.1" + "version": "==3.3.0" }, "pluggy": { "hashes": [ @@ -3071,26 +3072,27 @@ }, "ruff": { "hashes": [ - "sha256:22e1e35bf5f12072cd644d22afd9203641ccf258bc14ff91aa1c43dc14f6047d", - "sha256:29e2b77b7d5da6a7dd5cf9b738b511355c5734ece56f78e500d4b5bffd58c1a0", - "sha256:38704f151323aa5858370a2f792e122cc25e5d1aabe7d42ceeab83da18f0b456", - "sha256:40ae87f2638484b7e8a7567b04a7af719f1c484c5bf132038b702bb32e1f6577", - "sha256:428507fb321b386dda70d66cd1a8aa0abf51d7c197983d83bb9e4fa5ee60300b", - "sha256:49e903bcda19f6bb0725a962c058eb5d61f40d84ef52ed53b61939b69402ab4e", - "sha256:5b3c1beacf6037e7f0781d4699d9a2dd4ba2462f475be5b1f45cf84c4ba3c69d", - "sha256:71f0ef1985e9a6696fa97da8459917fa34bdaa2c16bd33bd5edead585b7d44f7", - "sha256:79b02fa17ec1fd8d306ae302cb47fb614b71e1f539997858243769bcbe78c6d9", - "sha256:7cfef26619cba184d59aa7fa17b48af5891d51fc0b755a9bc533478a10d4d066", - "sha256:8b56496063ab3bfdf72339a5fbebb8bd46e5c5fee25ef11a9f03b208fa0562ec", - "sha256:aa9449b898287e621942cc71b9327eceb8f0c357e4065fecefb707ef2d978df8", - "sha256:c5fbaea9167f1852757f02133e5daacdb8c75b3431343205395da5b10499927a", - "sha256:d2fb20e89e85d147c85caa807707a1488bccc1f3854dc3d53533e89b52a0c5ff", - "sha256:daaea322e7e85f4c13d82be9536309e1c4b8b9851bb0cbc7eeb15d490fd46bf9", - "sha256:e4f39e18702de69faaaee3969934b92d7467285627f99a5b6ecd55a7d9f5d086", - "sha256:f3938dc45e2a3f818e9cbd53007265c22246fbfded8837b2c563bf0ebde1a226" + "sha256:04e0b280dd246448564c892bce5607d820ad1f14944f3d535db98692e2a7ac07", + "sha256:1008f211ad8aa1d998517ac5bf3d68fbc68ec516d1da89b6081f25ff2f30b687", + "sha256:15386933dd8e03aafa3186f9e996d6823105492817311338fbcb64d0ecbcd95f", + "sha256:3e9fcee3f81129eabc75da005d839235e32d7d374f2d4c0db0c708dad4703d6e", + "sha256:4010b156f2e9fa6e74b5581098467f6ff68beac48945599b3a9239481e578ab4", + "sha256:4f75fa1632ea065b8f10678e7b6ae9873f84d5046bdf146990112751e98af42a", + "sha256:7890499c2c3dcb1e60de2a8b4c5f5775b2bfcdff7d3e68e38db5cb2d65b12006", + "sha256:82c41f276106017b6f075dd2f2cc68e1a0b434cc75488f816fc98bd41982628d", + "sha256:981e3c4d773f7ff52479c4fd74a65e408f1e13fa5f889b72214d400cd1299ce4", + "sha256:9af932f665e177de62e172901704257fd6e5bfabb95893867ff7382a851459d3", + "sha256:bed1d3fba306e3f7e13ce226927b84200350e25abd1e754e06ee361c6d41de15", + "sha256:c2b79919ebd93674b93dfc2c843e264bf8e52fbe737467e9b58521775c85f4ad", + "sha256:c3b7d4b365207f3e4c40d235127091478e595b31e35b6cd57d940920cdfae68b", + "sha256:ddcee0d91629a4fa4bc9faebf5b94d4615d50d1cd76d1098fa71fbe1c54f4104", + "sha256:ddf4503595b560bfa5fae92fa2e4cb09ec465ee4cf88cc248f10ad2e956deec3", + "sha256:ebc778d95f29c9917e6e7608b2b67815707e6ab8eb5af9341617beda479c3edf", + "sha256:ee6c7a77f142c427fa73e1f5f603fc1a39413a36fe6966ed0fc55e97f6921d9c" ], "index": "pypi", - "version": "==0.0.259" + "markers": "python_version >= '3.7'", + "version": "==0.0.263" }, "scipy": { "hashes": [ @@ -3158,7 +3160,7 @@ "sha256:5cb5f4a79139d699607b3ef622a1dedafa84e115ab0024e0d9c044a9479ca7cb", "sha256:fb33085c39dd998ac16d1431ebc293a8b3eedd00fd4a32de0ff79002c19511b4" ], - "markers": "python_version >= '3.7'", + "markers": "python_version < '3.10'", "version": "==4.5.0" }, "urllib3": { diff --git a/docker/wait-for-redis.py b/docker/wait-for-redis.py index cabfb1dc6..d6ce5c639 100755 --- a/docker/wait-for-redis.py +++ b/docker/wait-for-redis.py @@ -12,7 +12,6 @@ from typing import Final from redis import Redis if __name__ == "__main__": - MAX_RETRY_COUNT: Final[int] = 5 RETRY_SLEEP_SECONDS: Final[int] = 5 diff --git a/src/documents/admin.py b/src/documents/admin.py index 072e69e6e..cc1b43dc1 100644 --- a/src/documents/admin.py +++ b/src/documents/admin.py @@ -13,28 +13,24 @@ from .models import Tag class CorrespondentAdmin(GuardedModelAdmin): - list_display = ("name", "match", "matching_algorithm") list_filter = ("matching_algorithm",) list_editable = ("match", "matching_algorithm") class TagAdmin(GuardedModelAdmin): - list_display = ("name", "color", "match", "matching_algorithm") list_filter = ("color", "matching_algorithm") list_editable = ("color", "match", "matching_algorithm") class DocumentTypeAdmin(GuardedModelAdmin): - list_display = ("name", "match", "matching_algorithm") list_filter = ("matching_algorithm",) list_editable = ("match", "matching_algorithm") class DocumentAdmin(GuardedModelAdmin): - search_fields = ("correspondent__name", "title", "content", "tags__name") readonly_fields = ( "added", @@ -99,7 +95,6 @@ class RuleInline(admin.TabularInline): class SavedViewAdmin(GuardedModelAdmin): - list_display = ("name", "owner") inlines = [RuleInline] @@ -116,7 +111,6 @@ class StoragePathAdmin(GuardedModelAdmin): class TaskAdmin(admin.ModelAdmin): - list_display = ("task_id", "task_file_name", "task_name", "date_done", "status") list_filter = ("status", "date_done", "task_file_name", "task_name") search_fields = ("task_name", "task_id", "status") @@ -133,7 +127,6 @@ class TaskAdmin(admin.ModelAdmin): class NotesAdmin(GuardedModelAdmin): - list_display = ("user", "created", "note", "document") list_filter = ("created", "user") list_display_links = ("created",) diff --git a/src/documents/apps.py b/src/documents/apps.py index 31742342c..edec7246c 100644 --- a/src/documents/apps.py +++ b/src/documents/apps.py @@ -3,7 +3,6 @@ from django.utils.translation import gettext_lazy as _ class DocumentsConfig(AppConfig): - name = "documents" verbose_name = _("Documents") diff --git a/src/documents/bulk_edit.py b/src/documents/bulk_edit.py index c62283fee..ab0049eaa 100644 --- a/src/documents/bulk_edit.py +++ b/src/documents/bulk_edit.py @@ -55,7 +55,6 @@ def set_document_type(doc_ids, document_type): def add_tag(doc_ids, tag): - qs = Document.objects.filter(Q(id__in=doc_ids) & ~Q(tags__id=tag)) affected_docs = [doc.id for doc in qs] @@ -71,7 +70,6 @@ def add_tag(doc_ids, tag): def remove_tag(doc_ids, tag): - qs = Document.objects.filter(Q(id__in=doc_ids) & Q(tags__id=tag)) affected_docs = [doc.id for doc in qs] @@ -123,7 +121,6 @@ def delete(doc_ids): def redo_ocr(doc_ids): - for document_id in doc_ids: update_document_archive_file.delay( document_id=document_id, @@ -133,7 +130,6 @@ def redo_ocr(doc_ids): def set_permissions(doc_ids, set_permissions, owner=None): - qs = Document.objects.filter(id__in=doc_ids) qs.update(owner=owner) diff --git a/src/documents/checks.py b/src/documents/checks.py index dd72080b6..b2b49193a 100644 --- a/src/documents/checks.py +++ b/src/documents/checks.py @@ -23,7 +23,6 @@ def changed_password_check(app_configs, **kwargs): return [] # No documents table yet if encrypted_doc: - if not settings.PASSPHRASE: return [ Error( @@ -53,7 +52,6 @@ def changed_password_check(app_configs, **kwargs): @register() def parser_check(app_configs, **kwargs): - parsers = [] for response in document_consumer_declaration.send(None): parsers.append(response[1]) diff --git a/src/documents/classifier.py b/src/documents/classifier.py index e8ece34cc..0848e0105 100644 --- a/src/documents/classifier.py +++ b/src/documents/classifier.py @@ -60,7 +60,6 @@ def load_classifier() -> Optional["DocumentClassifier"]: class DocumentClassifier: - # v7 - Updated scikit-learn package version # v8 - Added storage path classifier # v9 - Changed from hashing to time/ids for re-train check @@ -141,7 +140,6 @@ class DocumentClassifier: target_file_temp.rename(target_file) def train(self): - # Get non-inbox documents docs_queryset = Document.objects.exclude( tags__is_inbox_tag=True, @@ -160,7 +158,6 @@ class DocumentClassifier: logger.debug("Gathering data from database...") hasher = sha256() for doc in docs_queryset: - y = -1 dt = doc.document_type if dt and dt.matching_algorithm == MatchingModel.MATCH_AUTO: @@ -335,7 +332,6 @@ class DocumentClassifier: # If the NLTK language is supported, do further processing if settings.NLTK_LANGUAGE is not None and settings.NLTK_ENABLED: - import nltk from nltk.corpus import stopwords from nltk.stem import SnowballStemmer diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 886e8d380..b5ec58483 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -60,7 +60,6 @@ MESSAGE_FINISHED = "finished" class Consumer(LoggingMixin): - logging_name = "paperless.consumer" def _send_progress( @@ -426,7 +425,6 @@ class Consumer(LoggingMixin): # in the system. This will be a transaction and reasonably fast. try: with transaction.atomic(): - # store the document. document = self._store(text=text, date=date, mime_type=mime_type) @@ -520,7 +518,6 @@ class Consumer(LoggingMixin): date: Optional[datetime.datetime], mime_type: str, ) -> Document: - # If someone gave us the original filename, use it instead of doc. file_info = FileInfo.from_filename(self.filename) diff --git a/src/documents/filters.py b/src/documents/filters.py index a75899d8f..56a490bc0 100644 --- a/src/documents/filters.py +++ b/src/documents/filters.py @@ -82,7 +82,6 @@ class TitleContentFilter(Filter): class DocumentFilterSet(FilterSet): - is_tagged = BooleanFilter( label="Is tagged", field_name="tags", diff --git a/src/documents/index.py b/src/documents/index.py index ed364233c..403282403 100644 --- a/src/documents/index.py +++ b/src/documents/index.py @@ -331,7 +331,7 @@ class DelayedMoreLikeThisQuery(DelayedQuery): def autocomplete(ix, term, limit=10): with ix.reader() as reader: terms = [] - for (score, t) in reader.most_distinctive_terms( + for score, t in reader.most_distinctive_terms( "content", number=limit, prefix=term.lower(), diff --git a/src/documents/loggers.py b/src/documents/loggers.py index 0dd109277..0f03135d5 100644 --- a/src/documents/loggers.py +++ b/src/documents/loggers.py @@ -3,7 +3,6 @@ import uuid class LoggingMixin: - logging_group = None logging_name = None diff --git a/src/documents/management/commands/decrypt_documents.py b/src/documents/management/commands/decrypt_documents.py index 8cb308e8e..8b67ee7d0 100644 --- a/src/documents/management/commands/decrypt_documents.py +++ b/src/documents/management/commands/decrypt_documents.py @@ -9,14 +9,12 @@ from paperless.db import GnuPG class Command(BaseCommand): - help = ( "This is how you migrate your stored documents from an encrypted " "state to an unencrypted one (or vice-versa)" ) def add_arguments(self, parser): - parser.add_argument( "--passphrase", help="If PAPERLESS_PASSPHRASE isn't set already, you need to " @@ -24,7 +22,6 @@ class Command(BaseCommand): ) def handle(self, *args, **options): - try: print( "\n\nWARNING: This script is going to work directly on your " @@ -49,13 +46,11 @@ class Command(BaseCommand): @staticmethod def __gpg_to_unencrypted(passphrase): - encrypted_files = Document.objects.filter( storage_type=Document.STORAGE_TYPE_GPG, ) for document in encrypted_files: - print(f"Decrypting {document}".encode()) old_paths = [document.source_path, document.thumbnail_path] diff --git a/src/documents/management/commands/document_archiver.py b/src/documents/management/commands/document_archiver.py index 7484ed07a..69d9a8183 100644 --- a/src/documents/management/commands/document_archiver.py +++ b/src/documents/management/commands/document_archiver.py @@ -14,7 +14,6 @@ logger = logging.getLogger("paperless.management.archiver") class Command(BaseCommand): - help = """ Using the current classification model, assigns correspondents, tags and document types to all documents, effectively allowing you to @@ -51,7 +50,6 @@ class Command(BaseCommand): ) def handle(self, *args, **options): - os.makedirs(settings.SCRATCH_DIR, exist_ok=True) overwrite = options["overwrite"] @@ -74,7 +72,6 @@ class Command(BaseCommand): db.connections.close_all() try: - logging.getLogger().handlers[0].level = logging.ERROR with multiprocessing.Pool(processes=settings.TASK_WORKERS) as pool: list( diff --git a/src/documents/management/commands/document_create_classifier.py b/src/documents/management/commands/document_create_classifier.py index 04aa9ab2b..88d2092e3 100644 --- a/src/documents/management/commands/document_create_classifier.py +++ b/src/documents/management/commands/document_create_classifier.py @@ -4,7 +4,6 @@ from documents.tasks import train_classifier class Command(BaseCommand): - help = """ Trains the classifier on your data and saves the resulting models to a file. The document consumer will then automatically use this new model. diff --git a/src/documents/management/commands/document_exporter.py b/src/documents/management/commands/document_exporter.py index 7364e7295..b916538e7 100644 --- a/src/documents/management/commands/document_exporter.py +++ b/src/documents/management/commands/document_exporter.py @@ -40,7 +40,6 @@ from paperless_mail.models import MailRule class Command(BaseCommand): - help = """ Decrypt and rename all files in our collection into a given target directory. And include a manifest file containing document data for @@ -144,7 +143,6 @@ class Command(BaseCommand): self.no_thumbnail = False def handle(self, *args, **options): - self.target = Path(options["target"]).resolve() self.split_manifest = options["split_manifest"] self.compare_checksums = options["compare_checksums"] diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py index dd294d463..b00cb45fa 100644 --- a/src/documents/management/commands/document_importer.py +++ b/src/documents/management/commands/document_importer.py @@ -36,7 +36,6 @@ def disable_signal(sig, receiver, sender): class Command(BaseCommand): - help = """ Using a manifest.json file, load the data from there, and import the documents it refers to. @@ -61,7 +60,6 @@ class Command(BaseCommand): self.version = None def handle(self, *args, **options): - logging.getLogger().handlers[0].level = logging.ERROR self.source = Path(options["source"]).resolve() @@ -163,7 +161,6 @@ class Command(BaseCommand): """ self.stdout.write("Checking the manifest") for record in self.manifest: - if record["model"] != "documents.document": continue @@ -205,7 +202,6 @@ class Command(BaseCommand): ) from e def _import_files_from_manifest(self, progress_bar_disable): - os.makedirs(settings.ORIGINALS_DIR, exist_ok=True) os.makedirs(settings.THUMBNAIL_DIR, exist_ok=True) os.makedirs(settings.ARCHIVE_DIR, exist_ok=True) @@ -217,7 +213,6 @@ class Command(BaseCommand): ) for record in tqdm.tqdm(manifest_documents, disable=progress_bar_disable): - document = Document.objects.get(pk=record["pk"]) doc_file = record[EXPORTER_FILE_NAME] diff --git a/src/documents/management/commands/document_index.py b/src/documents/management/commands/document_index.py index 77a24fa17..279408b36 100644 --- a/src/documents/management/commands/document_index.py +++ b/src/documents/management/commands/document_index.py @@ -6,7 +6,6 @@ from documents.tasks import index_reindex class Command(BaseCommand): - help = "Manages the document index." def add_arguments(self, parser): diff --git a/src/documents/management/commands/document_renamer.py b/src/documents/management/commands/document_renamer.py index 028754af1..be1446957 100644 --- a/src/documents/management/commands/document_renamer.py +++ b/src/documents/management/commands/document_renamer.py @@ -8,7 +8,6 @@ from documents.models import Document class Command(BaseCommand): - help = """ This will rename all documents to match the latest filename format. """.replace( @@ -25,7 +24,6 @@ class Command(BaseCommand): ) def handle(self, *args, **options): - logging.getLogger().handlers[0].level = logging.ERROR for document in tqdm.tqdm( diff --git a/src/documents/management/commands/document_retagger.py b/src/documents/management/commands/document_retagger.py index a59b1debc..e67d6aed0 100644 --- a/src/documents/management/commands/document_retagger.py +++ b/src/documents/management/commands/document_retagger.py @@ -14,7 +14,6 @@ logger = logging.getLogger("paperless.management.retagger") class Command(BaseCommand): - help = """ Using the current classification model, assigns correspondents, tags and document types to all documents, effectively allowing you to @@ -78,7 +77,6 @@ class Command(BaseCommand): classifier = load_classifier() for document in tqdm.tqdm(documents, disable=options["no_progress_bar"]): - if options["correspondent"]: set_correspondent( sender=None, diff --git a/src/documents/management/commands/document_sanity_checker.py b/src/documents/management/commands/document_sanity_checker.py index 86b62a4d9..4c06d2a84 100644 --- a/src/documents/management/commands/document_sanity_checker.py +++ b/src/documents/management/commands/document_sanity_checker.py @@ -4,7 +4,6 @@ from documents.sanity_checker import check_sanity class Command(BaseCommand): - help = """ This command checks your document archive for issues. """.replace( @@ -21,7 +20,6 @@ class Command(BaseCommand): ) def handle(self, *args, **options): - messages = check_sanity(progress=not options["no_progress_bar"]) messages.log_messages() diff --git a/src/documents/management/commands/document_thumbnails.py b/src/documents/management/commands/document_thumbnails.py index fb308ac04..0f35dba42 100644 --- a/src/documents/management/commands/document_thumbnails.py +++ b/src/documents/management/commands/document_thumbnails.py @@ -21,7 +21,6 @@ def _process_document(doc_in): return try: - thumb = parser.get_thumbnail( document.source_path, document.mime_type, @@ -34,7 +33,6 @@ def _process_document(doc_in): class Command(BaseCommand): - help = """ This will regenerate the thumbnails for all documents. """.replace( diff --git a/src/documents/management/commands/manage_superuser.py b/src/documents/management/commands/manage_superuser.py index e85cdfa59..df0502f17 100644 --- a/src/documents/management/commands/manage_superuser.py +++ b/src/documents/management/commands/manage_superuser.py @@ -8,7 +8,6 @@ logger = logging.getLogger("paperless.management.superuser") class Command(BaseCommand): - help = """ Creates a Django superuser: User named: admin @@ -24,7 +23,6 @@ class Command(BaseCommand): ) def handle(self, *args, **options): - username = os.getenv("PAPERLESS_ADMIN_USER", "admin") mail = os.getenv("PAPERLESS_ADMIN_MAIL", "root@localhost") password = os.getenv("PAPERLESS_ADMIN_PASSWORD") diff --git a/src/documents/migrations/0001_initial.py b/src/documents/migrations/0001_initial.py index aa8318d6b..89c9e29df 100644 --- a/src/documents/migrations/0001_initial.py +++ b/src/documents/migrations/0001_initial.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - initial = True dependencies = [] diff --git a/src/documents/migrations/0002_auto_20151226_1316.py b/src/documents/migrations/0002_auto_20151226_1316.py index c1cd11a42..ffd240902 100644 --- a/src/documents/migrations/0002_auto_20151226_1316.py +++ b/src/documents/migrations/0002_auto_20151226_1316.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0001_initial"), ] diff --git a/src/documents/migrations/0003_sender.py b/src/documents/migrations/0003_sender.py index dacba5505..fb37746db 100644 --- a/src/documents/migrations/0003_sender.py +++ b/src/documents/migrations/0003_sender.py @@ -9,7 +9,6 @@ DOCUMENT_SENDER_MAP = {} def move_sender_strings_to_sender_model(apps, schema_editor): - sender_model = apps.get_model("documents", "Sender") document_model = apps.get_model("documents", "Document") diff --git a/src/documents/migrations/0004_auto_20160114_1844.py b/src/documents/migrations/0004_auto_20160114_1844.py index e6068c616..97bda420e 100644 --- a/src/documents/migrations/0004_auto_20160114_1844.py +++ b/src/documents/migrations/0004_auto_20160114_1844.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0003_sender"), ] diff --git a/src/documents/migrations/0005_auto_20160123_0313.py b/src/documents/migrations/0005_auto_20160123_0313.py index 98e2c1b29..b0ccc5825 100644 --- a/src/documents/migrations/0005_auto_20160123_0313.py +++ b/src/documents/migrations/0005_auto_20160123_0313.py @@ -4,7 +4,6 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ ("documents", "0004_auto_20160114_1844"), ] diff --git a/src/documents/migrations/0006_auto_20160123_0430.py b/src/documents/migrations/0006_auto_20160123_0430.py index 04142c77a..315b9646f 100644 --- a/src/documents/migrations/0006_auto_20160123_0430.py +++ b/src/documents/migrations/0006_auto_20160123_0430.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0005_auto_20160123_0313"), ] diff --git a/src/documents/migrations/0007_auto_20160126_2114.py b/src/documents/migrations/0007_auto_20160126_2114.py index 0bc568fb5..04ccc0589 100644 --- a/src/documents/migrations/0007_auto_20160126_2114.py +++ b/src/documents/migrations/0007_auto_20160126_2114.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0006_auto_20160123_0430"), ] diff --git a/src/documents/migrations/0008_document_file_type.py b/src/documents/migrations/0008_document_file_type.py index ae085d463..7787f8622 100644 --- a/src/documents/migrations/0008_document_file_type.py +++ b/src/documents/migrations/0008_document_file_type.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0007_auto_20160126_2114"), ] diff --git a/src/documents/migrations/0009_auto_20160214_0040.py b/src/documents/migrations/0009_auto_20160214_0040.py index 3b8d4e4b7..5c95e1035 100644 --- a/src/documents/migrations/0009_auto_20160214_0040.py +++ b/src/documents/migrations/0009_auto_20160214_0040.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0008_document_file_type"), ] diff --git a/src/documents/migrations/0010_log.py b/src/documents/migrations/0010_log.py index 0cc34b4db..8f015cab0 100644 --- a/src/documents/migrations/0010_log.py +++ b/src/documents/migrations/0010_log.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0009_auto_20160214_0040"), ] diff --git a/src/documents/migrations/0012_auto_20160305_0040.py b/src/documents/migrations/0012_auto_20160305_0040.py index e23235d41..b656ef70e 100644 --- a/src/documents/migrations/0012_auto_20160305_0040.py +++ b/src/documents/migrations/0012_auto_20160305_0040.py @@ -34,7 +34,6 @@ class GnuPG: def move_documents_and_create_thumbnails(apps, schema_editor): - os.makedirs( os.path.join(settings.MEDIA_ROOT, "documents", "originals"), exist_ok=True, @@ -67,7 +66,6 @@ def move_documents_and_create_thumbnails(apps, schema_editor): pass for f in sorted(documents): - if not f.endswith("gpg"): continue diff --git a/src/documents/migrations/0013_auto_20160325_2111.py b/src/documents/migrations/0013_auto_20160325_2111.py index 07bb50873..1d3f8b07d 100644 --- a/src/documents/migrations/0013_auto_20160325_2111.py +++ b/src/documents/migrations/0013_auto_20160325_2111.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0012_auto_20160305_0040"), ] diff --git a/src/documents/migrations/0014_document_checksum.py b/src/documents/migrations/0014_document_checksum.py index 985167701..deef59990 100644 --- a/src/documents/migrations/0014_document_checksum.py +++ b/src/documents/migrations/0014_document_checksum.py @@ -75,7 +75,6 @@ class Document: def set_checksums(apps, schema_editor): - document_model = apps.get_model("documents", "Document") if not document_model.objects.all().exists(): @@ -95,7 +94,6 @@ def set_checksums(apps, schema_editor): sums = {} for d in document_model.objects.all(): - document = Document(d) print( diff --git a/src/documents/migrations/0015_add_insensitive_to_match.py b/src/documents/migrations/0015_add_insensitive_to_match.py index 5ea281846..0761cc929 100644 --- a/src/documents/migrations/0015_add_insensitive_to_match.py +++ b/src/documents/migrations/0015_add_insensitive_to_match.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0014_document_checksum"), ] diff --git a/src/documents/migrations/0016_auto_20170325_1558.py b/src/documents/migrations/0016_auto_20170325_1558.py index 4eb1db4a6..743097d0c 100644 --- a/src/documents/migrations/0016_auto_20170325_1558.py +++ b/src/documents/migrations/0016_auto_20170325_1558.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0015_add_insensitive_to_match"), ] diff --git a/src/documents/migrations/0017_auto_20170512_0507.py b/src/documents/migrations/0017_auto_20170512_0507.py index 47dede6dc..74cf39854 100644 --- a/src/documents/migrations/0017_auto_20170512_0507.py +++ b/src/documents/migrations/0017_auto_20170512_0507.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0016_auto_20170325_1558"), ] diff --git a/src/documents/migrations/0018_auto_20170715_1712.py b/src/documents/migrations/0018_auto_20170715_1712.py index 07bd630ab..838d79ddc 100644 --- a/src/documents/migrations/0018_auto_20170715_1712.py +++ b/src/documents/migrations/0018_auto_20170715_1712.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0017_auto_20170512_0507"), ] diff --git a/src/documents/migrations/0021_document_storage_type.py b/src/documents/migrations/0021_document_storage_type.py index b4239d055..b35fe75ed 100644 --- a/src/documents/migrations/0021_document_storage_type.py +++ b/src/documents/migrations/0021_document_storage_type.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "0020_document_added"), ] diff --git a/src/documents/migrations/0022_auto_20181007_1420.py b/src/documents/migrations/0022_auto_20181007_1420.py index 446f03c92..02dfa6d2b 100644 --- a/src/documents/migrations/0022_auto_20181007_1420.py +++ b/src/documents/migrations/0022_auto_20181007_1420.py @@ -20,7 +20,6 @@ def re_slug_all_the_things(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [ ("documents", "0021_document_storage_type"), ] diff --git a/src/documents/migrations/0023_document_current_filename.py b/src/documents/migrations/0023_document_current_filename.py index 3c5ebbef1..5f52e1c89 100644 --- a/src/documents/migrations/0023_document_current_filename.py +++ b/src/documents/migrations/0023_document_current_filename.py @@ -19,7 +19,6 @@ def set_filename(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [ ("documents", "0022_auto_20181007_1420"), ] diff --git a/src/documents/migrations/1000_update_paperless_all.py b/src/documents/migrations/1000_update_paperless_all.py index 294731c51..6026ce3d2 100644 --- a/src/documents/migrations/1000_update_paperless_all.py +++ b/src/documents/migrations/1000_update_paperless_all.py @@ -15,7 +15,6 @@ def logs_set_default_group(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [ ("documents", "0023_document_current_filename"), ] diff --git a/src/documents/migrations/1001_auto_20201109_1636.py b/src/documents/migrations/1001_auto_20201109_1636.py index 9f6e152b6..7477a118c 100644 --- a/src/documents/migrations/1001_auto_20201109_1636.py +++ b/src/documents/migrations/1001_auto_20201109_1636.py @@ -4,7 +4,6 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ ("documents", "1000_update_paperless_all"), ] diff --git a/src/documents/migrations/1002_auto_20201111_1105.py b/src/documents/migrations/1002_auto_20201111_1105.py index d58f3bfe6..1835c4ca9 100644 --- a/src/documents/migrations/1002_auto_20201111_1105.py +++ b/src/documents/migrations/1002_auto_20201111_1105.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1001_auto_20201109_1636"), ] diff --git a/src/documents/migrations/1003_mime_types.py b/src/documents/migrations/1003_mime_types.py index 0d5f259c7..446657495 100644 --- a/src/documents/migrations/1003_mime_types.py +++ b/src/documents/migrations/1003_mime_types.py @@ -30,7 +30,6 @@ def add_mime_types(apps, schema_editor): for d in documents: f = open(source_path(d), "rb") if d.storage_type == STORAGE_TYPE_GPG: - data = GnuPG.decrypted(f) else: data = f.read(1024) @@ -51,7 +50,6 @@ def add_file_extensions(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [ ("documents", "1002_auto_20201111_1105"), ] diff --git a/src/documents/migrations/1004_sanity_check_schedule.py b/src/documents/migrations/1004_sanity_check_schedule.py index 0437fbd57..018cf2492 100644 --- a/src/documents/migrations/1004_sanity_check_schedule.py +++ b/src/documents/migrations/1004_sanity_check_schedule.py @@ -5,7 +5,6 @@ from django.db.migrations import RunPython class Migration(migrations.Migration): - dependencies = [ ("documents", "1003_mime_types"), ] diff --git a/src/documents/migrations/1005_checksums.py b/src/documents/migrations/1005_checksums.py index cbbd928aa..4637e06ce 100644 --- a/src/documents/migrations/1005_checksums.py +++ b/src/documents/migrations/1005_checksums.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1004_sanity_check_schedule"), ] diff --git a/src/documents/migrations/1006_auto_20201208_2209.py b/src/documents/migrations/1006_auto_20201208_2209.py index 8a7e7a99d..425f0a768 100644 --- a/src/documents/migrations/1006_auto_20201208_2209.py +++ b/src/documents/migrations/1006_auto_20201208_2209.py @@ -4,7 +4,6 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ ("documents", "1005_checksums"), ] diff --git a/src/documents/migrations/1007_savedview_savedviewfilterrule.py b/src/documents/migrations/1007_savedview_savedviewfilterrule.py index b145b7be5..64564c6af 100644 --- a/src/documents/migrations/1007_savedview_savedviewfilterrule.py +++ b/src/documents/migrations/1007_savedview_savedviewfilterrule.py @@ -7,7 +7,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ("documents", "1006_auto_20201208_2209"), diff --git a/src/documents/migrations/1008_auto_20201216_1736.py b/src/documents/migrations/1008_auto_20201216_1736.py index 6539bdfc1..76f0343b1 100644 --- a/src/documents/migrations/1008_auto_20201216_1736.py +++ b/src/documents/migrations/1008_auto_20201216_1736.py @@ -5,7 +5,6 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ ("documents", "1007_savedview_savedviewfilterrule"), ] diff --git a/src/documents/migrations/1009_auto_20201216_2005.py b/src/documents/migrations/1009_auto_20201216_2005.py index 9584789bc..37bae8881 100644 --- a/src/documents/migrations/1009_auto_20201216_2005.py +++ b/src/documents/migrations/1009_auto_20201216_2005.py @@ -4,7 +4,6 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ ("documents", "1008_auto_20201216_1736"), ] diff --git a/src/documents/migrations/1010_auto_20210101_2159.py b/src/documents/migrations/1010_auto_20210101_2159.py index ea679ace6..0c6a42d30 100644 --- a/src/documents/migrations/1010_auto_20210101_2159.py +++ b/src/documents/migrations/1010_auto_20210101_2159.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1009_auto_20201216_2005"), ] diff --git a/src/documents/migrations/1011_auto_20210101_2340.py b/src/documents/migrations/1011_auto_20210101_2340.py index b26ace662..dea107715 100644 --- a/src/documents/migrations/1011_auto_20210101_2340.py +++ b/src/documents/migrations/1011_auto_20210101_2340.py @@ -8,7 +8,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ("documents", "1010_auto_20210101_2159"), diff --git a/src/documents/migrations/1012_fix_archive_files.py b/src/documents/migrations/1012_fix_archive_files.py index b076f1ca9..ee38e16db 100644 --- a/src/documents/migrations/1012_fix_archive_files.py +++ b/src/documents/migrations/1012_fix_archive_files.py @@ -254,7 +254,6 @@ def move_old_to_new_locations(apps, schema_editor): ) for doc in Document.objects.filter(archive_checksum__isnull=False): - if doc.id in affected_document_ids: old_path = archive_path_old(doc) # remove affected archive versions @@ -304,7 +303,6 @@ def move_new_to_old_locations(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [ ("documents", "1011_auto_20210101_2340"), ] diff --git a/src/documents/migrations/1013_migrate_tag_colour.py b/src/documents/migrations/1013_migrate_tag_colour.py index 07d29e155..6cae10898 100644 --- a/src/documents/migrations/1013_migrate_tag_colour.py +++ b/src/documents/migrations/1013_migrate_tag_colour.py @@ -47,7 +47,6 @@ def reverse(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [ ("documents", "1012_fix_archive_files"), ] diff --git a/src/documents/migrations/1014_auto_20210228_1614.py b/src/documents/migrations/1014_auto_20210228_1614.py index 821d8c028..5785bcb53 100644 --- a/src/documents/migrations/1014_auto_20210228_1614.py +++ b/src/documents/migrations/1014_auto_20210228_1614.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1013_migrate_tag_colour"), ] diff --git a/src/documents/migrations/1015_remove_null_characters.py b/src/documents/migrations/1015_remove_null_characters.py index 304c5c28a..9872b3a75 100644 --- a/src/documents/migrations/1015_remove_null_characters.py +++ b/src/documents/migrations/1015_remove_null_characters.py @@ -18,7 +18,6 @@ def remove_null_characters(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [ ("documents", "1014_auto_20210228_1614"), ] diff --git a/src/documents/migrations/1016_auto_20210317_1351.py b/src/documents/migrations/1016_auto_20210317_1351.py index 36892a97a..67147fd4c 100644 --- a/src/documents/migrations/1016_auto_20210317_1351.py +++ b/src/documents/migrations/1016_auto_20210317_1351.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1015_remove_null_characters"), ] diff --git a/src/documents/migrations/1017_alter_savedviewfilterrule_rule_type.py b/src/documents/migrations/1017_alter_savedviewfilterrule_rule_type.py index 827924767..ab18f1bc1 100644 --- a/src/documents/migrations/1017_alter_savedviewfilterrule_rule_type.py +++ b/src/documents/migrations/1017_alter_savedviewfilterrule_rule_type.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1016_auto_20210317_1351"), ] diff --git a/src/documents/migrations/1018_alter_savedviewfilterrule_value.py b/src/documents/migrations/1018_alter_savedviewfilterrule_value.py index d734e520e..95ef4861d 100644 --- a/src/documents/migrations/1018_alter_savedviewfilterrule_value.py +++ b/src/documents/migrations/1018_alter_savedviewfilterrule_value.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1017_alter_savedviewfilterrule_rule_type"), ] diff --git a/src/documents/migrations/1019_storagepath_document_storage_path.py b/src/documents/migrations/1019_storagepath_document_storage_path.py index f25162f2a..b09941bf5 100644 --- a/src/documents/migrations/1019_storagepath_document_storage_path.py +++ b/src/documents/migrations/1019_storagepath_document_storage_path.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1018_alter_savedviewfilterrule_value"), ] diff --git a/src/documents/migrations/1019_uisettings.py b/src/documents/migrations/1019_uisettings.py index 5ca826f06..e84138077 100644 --- a/src/documents/migrations/1019_uisettings.py +++ b/src/documents/migrations/1019_uisettings.py @@ -7,7 +7,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ("documents", "1018_alter_savedviewfilterrule_value"), diff --git a/src/documents/migrations/1020_merge_20220518_1839.py b/src/documents/migrations/1020_merge_20220518_1839.py index f455fc5a3..a766aaa20 100644 --- a/src/documents/migrations/1020_merge_20220518_1839.py +++ b/src/documents/migrations/1020_merge_20220518_1839.py @@ -4,7 +4,6 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ ("documents", "1019_storagepath_document_storage_path"), ("documents", "1019_uisettings"), diff --git a/src/documents/migrations/1021_webp_thumbnail_conversion.py b/src/documents/migrations/1021_webp_thumbnail_conversion.py index 336a7fde5..3b2ac9b16 100644 --- a/src/documents/migrations/1021_webp_thumbnail_conversion.py +++ b/src/documents/migrations/1021_webp_thumbnail_conversion.py @@ -17,7 +17,6 @@ logger = logging.getLogger("paperless.migrations") def _do_convert(work_package): existing_thumbnail, converted_thumbnail = work_package try: - logger.info(f"Converting thumbnail: {existing_thumbnail}") # Run actual conversion @@ -51,7 +50,6 @@ def _convert_thumbnails_to_webp(apps, schema_editor): start = time.time() with tempfile.TemporaryDirectory() as tempdir: - work_packages = [] for file in Path(settings.THUMBNAIL_DIR).glob("*.png"): @@ -73,7 +71,6 @@ def _convert_thumbnails_to_webp(apps, schema_editor): ) if len(work_packages): - logger.info( "\n\n" " This is a one-time only migration to convert thumbnails for all of your\n" @@ -95,7 +92,6 @@ def _convert_thumbnails_to_webp(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [ ("documents", "1020_merge_20220518_1839"), ] diff --git a/src/documents/migrations/1022_paperlesstask.py b/src/documents/migrations/1022_paperlesstask.py index dfbd429c4..c7b3f7744 100644 --- a/src/documents/migrations/1022_paperlesstask.py +++ b/src/documents/migrations/1022_paperlesstask.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1021_webp_thumbnail_conversion"), ] diff --git a/src/documents/migrations/1024_document_original_filename.py b/src/documents/migrations/1024_document_original_filename.py index 31414cf8d..05be7269e 100644 --- a/src/documents/migrations/1024_document_original_filename.py +++ b/src/documents/migrations/1024_document_original_filename.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1023_add_comments"), ] diff --git a/src/documents/migrations/1025_alter_savedviewfilterrule_rule_type.py b/src/documents/migrations/1025_alter_savedviewfilterrule_rule_type.py index 0c0492586..a2deb9579 100644 --- a/src/documents/migrations/1025_alter_savedviewfilterrule_rule_type.py +++ b/src/documents/migrations/1025_alter_savedviewfilterrule_rule_type.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1024_document_original_filename"), ] diff --git a/src/documents/migrations/1026_transition_to_celery.py b/src/documents/migrations/1026_transition_to_celery.py index 3920204a9..227188d22 100644 --- a/src/documents/migrations/1026_transition_to_celery.py +++ b/src/documents/migrations/1026_transition_to_celery.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("django_celery_results", "0011_taskresult_periodic_task_name"), ("documents", "1025_alter_savedviewfilterrule_rule_type"), diff --git a/src/documents/migrations/1027_remove_paperlesstask_attempted_task_and_more.py b/src/documents/migrations/1027_remove_paperlesstask_attempted_task_and_more.py index 2d39e6451..c169c3096 100644 --- a/src/documents/migrations/1027_remove_paperlesstask_attempted_task_and_more.py +++ b/src/documents/migrations/1027_remove_paperlesstask_attempted_task_and_more.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1026_transition_to_celery"), ] diff --git a/src/documents/migrations/1028_remove_paperlesstask_task_args_and_more.py b/src/documents/migrations/1028_remove_paperlesstask_task_args_and_more.py index 83f3eadfa..6e03c124b 100644 --- a/src/documents/migrations/1028_remove_paperlesstask_task_args_and_more.py +++ b/src/documents/migrations/1028_remove_paperlesstask_task_args_and_more.py @@ -4,7 +4,6 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ ("documents", "1027_remove_paperlesstask_attempted_task_and_more"), ] diff --git a/src/documents/migrations/1029_alter_document_archive_serial_number.py b/src/documents/migrations/1029_alter_document_archive_serial_number.py index 69a74fc2d..57848b2dc 100644 --- a/src/documents/migrations/1029_alter_document_archive_serial_number.py +++ b/src/documents/migrations/1029_alter_document_archive_serial_number.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1028_remove_paperlesstask_task_args_and_more"), ] diff --git a/src/documents/migrations/1030_alter_paperlesstask_task_file_name.py b/src/documents/migrations/1030_alter_paperlesstask_task_file_name.py index 93569ae83..37e918bee 100644 --- a/src/documents/migrations/1030_alter_paperlesstask_task_file_name.py +++ b/src/documents/migrations/1030_alter_paperlesstask_task_file_name.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1029_alter_document_archive_serial_number"), ] diff --git a/src/documents/migrations/1031_remove_savedview_user_correspondent_owner_and_more.py b/src/documents/migrations/1031_remove_savedview_user_correspondent_owner_and_more.py index d29bdf6e6..56e4355ef 100644 --- a/src/documents/migrations/1031_remove_savedview_user_correspondent_owner_and_more.py +++ b/src/documents/migrations/1031_remove_savedview_user_correspondent_owner_and_more.py @@ -7,7 +7,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ("documents", "1030_alter_paperlesstask_task_file_name"), diff --git a/src/documents/migrations/1032_alter_correspondent_matching_algorithm_and_more.py b/src/documents/migrations/1032_alter_correspondent_matching_algorithm_and_more.py index 2e83338ab..3d1c5658a 100644 --- a/src/documents/migrations/1032_alter_correspondent_matching_algorithm_and_more.py +++ b/src/documents/migrations/1032_alter_correspondent_matching_algorithm_and_more.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1031_remove_savedview_user_correspondent_owner_and_more"), ] diff --git a/src/documents/migrations/1033_alter_documenttype_options_alter_tag_options_and_more.py b/src/documents/migrations/1033_alter_documenttype_options_alter_tag_options_and_more.py index 1d1a3227d..1368ac641 100644 --- a/src/documents/migrations/1033_alter_documenttype_options_alter_tag_options_and_more.py +++ b/src/documents/migrations/1033_alter_documenttype_options_alter_tag_options_and_more.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1032_alter_correspondent_matching_algorithm_and_more"), ] diff --git a/src/documents/migrations/1034_alter_savedviewfilterrule_rule_type.py b/src/documents/migrations/1034_alter_savedviewfilterrule_rule_type.py index 6612edafa..b648ac839 100644 --- a/src/documents/migrations/1034_alter_savedviewfilterrule_rule_type.py +++ b/src/documents/migrations/1034_alter_savedviewfilterrule_rule_type.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1033_alter_documenttype_options_alter_tag_options_and_more"), ] diff --git a/src/documents/migrations/1035_rename_comment_note.py b/src/documents/migrations/1035_rename_comment_note.py index a87e285ac..9f9aaca94 100644 --- a/src/documents/migrations/1035_rename_comment_note.py +++ b/src/documents/migrations/1035_rename_comment_note.py @@ -7,7 +7,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ("documents", "1034_alter_savedviewfilterrule_rule_type"), diff --git a/src/documents/models.py b/src/documents/models.py index bdcd080fd..d28664a68 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -38,7 +38,6 @@ class ModelWithOwner(models.Model): class MatchingModel(ModelWithOwner): - MATCH_NONE = 0 MATCH_ANY = 1 MATCH_ALL = 2 @@ -95,7 +94,6 @@ class Correspondent(MatchingModel): class Tag(MatchingModel): - color = models.CharField(_("color"), max_length=7, default="#a6cee3") is_inbox_tag = models.BooleanField( @@ -130,7 +128,6 @@ class StoragePath(MatchingModel): class Document(ModelWithOwner): - STORAGE_TYPE_UNENCRYPTED = "unencrypted" STORAGE_TYPE_GPG = "gpg" STORAGE_TYPES = ( @@ -280,7 +277,6 @@ class Document(ModelWithOwner): verbose_name_plural = _("documents") def __str__(self) -> str: - # Convert UTC database time to local time created = datetime.date.isoformat(timezone.localdate(self.created)) @@ -365,7 +361,6 @@ class Document(ModelWithOwner): class Log(models.Model): - LEVELS = ( (logging.DEBUG, _("debug")), (logging.INFO, _("information")), @@ -397,7 +392,6 @@ class Log(models.Model): class SavedView(ModelWithOwner): class Meta: - ordering = ("name",) verbose_name = _("saved view") verbose_name_plural = _("saved views") @@ -481,7 +475,6 @@ class SavedViewFilterRule(models.Model): # the filename, if possible, as a higher priority than either document filename or # content parsing class FileInfo: - REGEXES = OrderedDict( [ ( @@ -503,7 +496,6 @@ class FileInfo: tags=(), extension=None, ): - self.created = created self.title = title self.extension = extension @@ -530,7 +522,7 @@ class FileInfo: def from_filename(cls, filename) -> "FileInfo": # Mutate filename in-place before parsing its components # by applying at most one of the configured transformations. - for (pattern, repl) in settings.FILENAME_PARSE_TRANSFORMS: + for pattern, repl in settings.FILENAME_PARSE_TRANSFORMS: (filename, count) = pattern.subn(repl, filename) if count: break @@ -564,7 +556,6 @@ class FileInfo: # Extending User Model Using a One-To-One Link class UiSettings(models.Model): - user = models.OneToOneField( User, on_delete=models.CASCADE, diff --git a/src/documents/parsers.py b/src/documents/parsers.py index 1c5c5ebb0..80968912c 100644 --- a/src/documents/parsers.py +++ b/src/documents/parsers.py @@ -140,7 +140,6 @@ def run_convert( extra=None, logging_group=None, ) -> None: - environment = os.environ.copy() if settings.CONVERT_MEMORY_LIMIT: environment["MAGICK_MEMORY_LIMIT"] = settings.CONVERT_MEMORY_LIMIT diff --git a/src/documents/permissions.py b/src/documents/permissions.py index 0bfff031c..d5712f670 100644 --- a/src/documents/permissions.py +++ b/src/documents/permissions.py @@ -2,6 +2,7 @@ from django.contrib.auth.models import Group from django.contrib.auth.models import Permission from django.contrib.auth.models import User from django.contrib.contenttypes.models import ContentType +from guardian.core import ObjectPermissionChecker from guardian.models import GroupObjectPermission from guardian.shortcuts import assign_perm from guardian.shortcuts import get_objects_for_user @@ -9,7 +10,6 @@ from guardian.shortcuts import get_users_with_perms from guardian.shortcuts import remove_perm from rest_framework.permissions import BasePermission from rest_framework.permissions import DjangoObjectPermissions -from guardian.core import ObjectPermissionChecker class PaperlessObjectPermissions(DjangoObjectPermissions): diff --git a/src/documents/sanity_checker.py b/src/documents/sanity_checker.py index 7b4107e99..497d586f1 100644 --- a/src/documents/sanity_checker.py +++ b/src/documents/sanity_checker.py @@ -33,7 +33,6 @@ class SanityCheckMessages: if len(self._messages) == 0: logger.info("Sanity checker detected no issues.") else: - # Query once all_docs = Document.objects.all() diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index 1727fb135..580ff11c9 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -58,7 +58,6 @@ class DynamicFieldsModelSerializer(serializers.ModelSerializer): class MatchingModelSerializer(serializers.ModelSerializer): - document_count = serializers.IntegerField(read_only=True) def get_slug(self, obj): @@ -221,7 +220,6 @@ class OwnedObjectSerializer(serializers.ModelSerializer, SetPermissionsMixin): class CorrespondentSerializer(MatchingModelSerializer, OwnedObjectSerializer): - last_correspondence = serializers.DateTimeField(read_only=True) class Meta: @@ -259,7 +257,6 @@ class DocumentTypeSerializer(MatchingModelSerializer, OwnedObjectSerializer): class ColorField(serializers.Field): - COLOURS = ( (1, "#a6cee3"), (2, "#1f78b4"), @@ -290,7 +287,6 @@ class ColorField(serializers.Field): class TagSerializerVersion1(MatchingModelSerializer, OwnedObjectSerializer): - colour = ColorField(source="color", default="#a6cee3") class Meta: @@ -373,7 +369,6 @@ class StoragePathField(serializers.PrimaryKeyRelatedField): class DocumentSerializer(OwnedObjectSerializer, DynamicFieldsModelSerializer): - correspondent = CorrespondentField(allow_null=True) tags = TagsField(many=True) document_type = DocumentTypeField(allow_null=True) @@ -454,7 +449,6 @@ class SavedViewFilterRuleSerializer(serializers.ModelSerializer): class SavedViewSerializer(OwnedObjectSerializer): - filter_rules = SavedViewFilterRuleSerializer(many=True) class Meta: @@ -500,7 +494,6 @@ class SavedViewSerializer(OwnedObjectSerializer): class DocumentListSerializer(serializers.Serializer): - documents = serializers.ListField( required=True, label="Documents", @@ -525,7 +518,6 @@ class DocumentListSerializer(serializers.Serializer): class BulkEditSerializer(DocumentListSerializer, SetPermissionsMixin): - method = serializers.ChoiceField( choices=[ "set_correspondent", @@ -651,7 +643,6 @@ class BulkEditSerializer(DocumentListSerializer, SetPermissionsMixin): self._validate_owner(parameters["owner"]) def validate(self, attrs): - method = attrs["method"] parameters = attrs["parameters"] @@ -672,7 +663,6 @@ class BulkEditSerializer(DocumentListSerializer, SetPermissionsMixin): class PostDocumentSerializer(serializers.Serializer): - created = serializers.DateTimeField( label="Created", allow_null=True, @@ -754,7 +744,6 @@ class PostDocumentSerializer(serializers.Serializer): class BulkDownloadSerializer(DocumentListSerializer): - content = serializers.ChoiceField( choices=["archive", "originals", "both"], default="archive", @@ -905,7 +894,6 @@ class TasksViewSerializer(serializers.ModelSerializer): class AcknowledgeTasksViewSerializer(serializers.Serializer): - tasks = serializers.ListField( required=True, label="Tasks", diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index a7f75c489..5a8b2aa3f 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -175,7 +175,6 @@ def set_tags( color=False, **kwargs, ): - if replace: Document.tags.through.objects.filter(document=document).exclude( Q(tag__is_inbox_tag=True), @@ -376,7 +375,6 @@ def validate_move(instance, old_path, new_path): @receiver(models.signals.m2m_changed, sender=Document.tags.through) @receiver(models.signals.post_save, sender=Document) def update_filename_and_move_files(sender, instance: Document, **kwargs): - if not instance.filename: # Can't update the filename if there is no filename to begin with # This happens when the consumer creates a new document. @@ -390,7 +388,6 @@ def update_filename_and_move_files(sender, instance: Document, **kwargs): with FileLock(settings.MEDIA_LOCK): try: - # If this was waiting for the lock, the filename or archive_filename # of this document may have been updated. This happens if multiple updates # get queued from the UI for the same document @@ -407,7 +404,6 @@ def update_filename_and_move_files(sender, instance: Document, **kwargs): old_archive_path = instance.archive_path if instance.has_archive_version: - instance.archive_filename = generate_unique_filename( instance, archive_filename=True, @@ -487,7 +483,6 @@ def update_filename_and_move_files(sender, instance: Document, **kwargs): def set_log_entry(sender, document=None, logging_group=None, **kwargs): - ct = ContentType.objects.get(model="document") user = User.objects.get(username="consumer") diff --git a/src/documents/tasks.py b/src/documents/tasks.py index 6b19c067b..f51fa9828 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -65,7 +65,6 @@ def train_classifier(): and not Correspondent.objects.filter(matching_algorithm=Tag.MATCH_AUTO).exists() and not StoragePath.objects.filter(matching_algorithm=Tag.MATCH_AUTO).exists() ): - return classifier = load_classifier() @@ -91,7 +90,6 @@ def consume_file( input_doc: ConsumableDocument, overrides: Optional[DocumentMetadataOverrides] = None, ): - # Default no overrides if overrides is None: overrides = DocumentMetadataOverrides() @@ -117,7 +115,6 @@ def consume_file( ) if document_list: - # If the file is an upload, it's in the scratch directory # Move it to consume directory to be picked up # Otherwise, use the current parent to keep possible tags diff --git a/src/documents/tests/test_api.py b/src/documents/tests/test_api.py index a855a0488..8b81068a2 100644 --- a/src/documents/tests/test_api.py +++ b/src/documents/tests/test_api.py @@ -55,7 +55,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.client.force_authenticate(user=self.user) def testDocuments(self): - response = self.client.get("/api/documents/").data self.assertEqual(response["count"], 0) @@ -171,7 +170,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertEqual(len(results[0]), 0) def test_document_actions(self): - _, filename = tempfile.mkstemp(dir=self.dirs.originals_dir) content = b"This is a test" @@ -270,7 +268,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): @override_settings(FILENAME_FORMAT="") def test_download_with_archive(self): - content = b"This is a test" content_archive = b"This is the same test but archived" @@ -312,7 +309,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertEqual(response.content, content) def test_document_actions_not_existing_file(self): - doc = Document.objects.create( title="none", filename=os.path.basename("asd"), @@ -329,7 +325,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertEqual(response.status_code, status.HTTP_404_NOT_FOUND) def test_document_filters(self): - doc1 = Document.objects.create( title="none1", checksum="A", @@ -427,7 +422,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertEqual(len(results), 0) def test_documents_title_content_filter(self): - doc1 = Document.objects.create( title="title A", content="content A", @@ -1101,7 +1095,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): ) def test_statistics(self): - doc1 = Document.objects.create( title="none1", checksum="A", @@ -1149,7 +1142,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertEqual(response.data["inbox_tag"], None) def test_upload(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1177,7 +1169,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertIsNone(overrides.tag_ids) def test_upload_empty_metadata(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1205,7 +1196,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertIsNone(overrides.tag_ids) def test_upload_invalid_form(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1222,7 +1212,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.consume_file_mock.assert_not_called() def test_upload_invalid_file(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1239,7 +1228,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.consume_file_mock.assert_not_called() def test_upload_with_title(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1264,7 +1252,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertIsNone(overrides.tag_ids) def test_upload_with_correspondent(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1290,7 +1277,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertIsNone(overrides.tag_ids) def test_upload_with_invalid_correspondent(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1308,7 +1294,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.consume_file_mock.assert_not_called() def test_upload_with_document_type(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1334,7 +1319,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertIsNone(overrides.tag_ids) def test_upload_with_invalid_document_type(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1352,7 +1336,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.consume_file_mock.assert_not_called() def test_upload_with_tags(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1379,7 +1362,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertIsNone(overrides.title) def test_upload_with_invalid_tags(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1399,7 +1381,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.consume_file_mock.assert_not_called() def test_upload_with_created(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1431,7 +1412,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertEqual(overrides.created, created) def test_upload_with_asn(self): - self.consume_file_mock.return_value = celery.result.AsyncResult( id=str(uuid.uuid4()), ) @@ -1655,7 +1635,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): ) def test_create_update_patch(self): - User.objects.create_user("user1") view = { @@ -2134,7 +2113,6 @@ class TestDocumentApiV2(DirectoriesMixin, APITestCase): class TestApiUiSettings(DirectoriesMixin, APITestCase): - ENDPOINT = "/api/ui_settings/" def setUp(self): @@ -2930,7 +2908,6 @@ class TestBulkEdit(DirectoriesMixin, APITestCase): class TestBulkDownload(DirectoriesMixin, APITestCase): - ENDPOINT = "/api/documents/bulk_download/" def setUp(self): @@ -3252,7 +3229,6 @@ class TestBulkDownload(DirectoriesMixin, APITestCase): class TestApiAuth(DirectoriesMixin, APITestCase): def test_auth_required(self): - d = Document.objects.create(title="Test") self.assertEqual( @@ -3317,7 +3293,6 @@ class TestApiAuth(DirectoriesMixin, APITestCase): ) def test_api_version_no_auth(self): - response = self.client.get("/api/") self.assertNotIn("X-Api-Version", response) self.assertNotIn("X-Version", response) @@ -3430,7 +3405,6 @@ class TestApiRemoteVersion(DirectoriesMixin, APITestCase): @mock.patch("urllib.request.urlopen") def test_remote_version_enabled_no_update_prefix(self, urlopen_mock): - cm = MagicMock() cm.getcode.return_value = status.HTTP_200_OK cm.read.return_value = json.dumps({"tag_name": "ngx-1.6.0"}).encode() @@ -3450,7 +3424,6 @@ class TestApiRemoteVersion(DirectoriesMixin, APITestCase): @mock.patch("urllib.request.urlopen") def test_remote_version_enabled_no_update_no_prefix(self, urlopen_mock): - cm = MagicMock() cm.getcode.return_value = status.HTTP_200_OK cm.read.return_value = json.dumps( @@ -3472,7 +3445,6 @@ class TestApiRemoteVersion(DirectoriesMixin, APITestCase): @mock.patch("urllib.request.urlopen") def test_remote_version_enabled_update(self, urlopen_mock): - new_version = ( version.__version__[0], version.__version__[1], @@ -3501,7 +3473,6 @@ class TestApiRemoteVersion(DirectoriesMixin, APITestCase): @mock.patch("urllib.request.urlopen") def test_remote_version_bad_json(self, urlopen_mock): - cm = MagicMock() cm.getcode.return_value = status.HTTP_200_OK cm.read.return_value = b'{ "blah":' @@ -3521,7 +3492,6 @@ class TestApiRemoteVersion(DirectoriesMixin, APITestCase): @mock.patch("urllib.request.urlopen") def test_remote_version_exception(self, urlopen_mock): - cm = MagicMock() cm.getcode.return_value = status.HTTP_200_OK cm.read.side_effect = urllib.error.URLError("an error") diff --git a/src/documents/tests/test_checks.py b/src/documents/tests/test_checks.py index 0f645c56d..07af596bb 100644 --- a/src/documents/tests/test_checks.py +++ b/src/documents/tests/test_checks.py @@ -36,7 +36,6 @@ class TestDocumentChecks(TestCase): @mock.patch("paperless.db.GnuPG.decrypted") @mock.patch("documents.models.Document.source_file") def test_encrypted_decrypt_fails(self, mock_decrypted, mock_source_file): - mock_decrypted.return_value = None mock_source_file.return_value = b"" @@ -61,7 +60,6 @@ class TestDocumentChecks(TestCase): ) def test_parser_check(self): - self.assertEqual(parser_check(None), []) with mock.patch("documents.checks.document_consumer_declaration.send") as m: diff --git a/src/documents/tests/test_classifier.py b/src/documents/tests/test_classifier.py index 68e054586..4e361aa8e 100644 --- a/src/documents/tests/test_classifier.py +++ b/src/documents/tests/test_classifier.py @@ -326,7 +326,6 @@ class TestClassifier(DirectoriesMixin, TestCase): classifier2.load() def testSaveClassifier(self): - self.generate_train_and_save() new_classifier = DocumentClassifier() @@ -336,7 +335,6 @@ class TestClassifier(DirectoriesMixin, TestCase): self.assertFalse(new_classifier.train()) def test_load_and_classify(self): - self.generate_train_and_save() new_classifier = DocumentClassifier() diff --git a/src/documents/tests/test_consumer.py b/src/documents/tests/test_consumer.py index 1a7ebd4fe..8ab40f5ac 100644 --- a/src/documents/tests/test_consumer.py +++ b/src/documents/tests/test_consumer.py @@ -35,7 +35,6 @@ from .utils import DirectoriesMixin class TestAttributes(TestCase): - TAGS = ("tag1", "tag2", "tag3") def _test_guess_attributes_from_name(self, filename, sender, title, tags): @@ -68,7 +67,6 @@ class TestAttributes(TestCase): class TestFieldPermutations(TestCase): - valid_dates = ( "20150102030405Z", "20150102Z", @@ -85,7 +83,6 @@ class TestFieldPermutations(TestCase): title=None, tags=None, ): - info = FileInfo.from_filename(filename) # Created @@ -132,7 +129,6 @@ class TestFieldPermutations(TestCase): self.assertIsNone(info.created) def test_filename_parse_transforms(self): - filename = "tag1,tag2_20190908_180610_0001.pdf" all_patt = re.compile("^.*$") none_patt = re.compile("$a") @@ -215,7 +211,6 @@ class FaultyParser(DocumentParser): def fake_magic_from_file(file, mime=False): - if mime: if os.path.splitext(file)[1] == ".pdf": return "application/pdf" @@ -240,7 +235,6 @@ class TestConsumer(DirectoriesMixin, FileSystemAssertsMixin, TestCase): last_progress=100, last_progress_max=100, ): - self._send_progress.assert_called() args, kwargs = self._send_progress.call_args_list[0] @@ -315,7 +309,6 @@ class TestConsumer(DirectoriesMixin, FileSystemAssertsMixin, TestCase): @override_settings(FILENAME_FORMAT=None, TIME_ZONE="America/Chicago") def testNormalOperation(self): - filename = self.get_test_file() # Get the local time, as an aware datetime @@ -437,7 +430,6 @@ class TestConsumer(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self._assert_first_last_send_progress() def testNotAFile(self): - self.assertRaisesMessage( ConsumerError, "File not found", @@ -545,7 +537,6 @@ class TestConsumer(DirectoriesMixin, FileSystemAssertsMixin, TestCase): @override_settings(FILENAME_FORMAT="{correspondent}/{title}") @mock.patch("documents.signals.handlers.generate_unique_filename") def testFilenameHandlingUnstableFormat(self, m): - filenames = ["this", "that", "now this", "i cant decide"] def get_filename(): @@ -792,7 +783,6 @@ class TestConsumerCreatedDate(DirectoriesMixin, TestCase): class PreConsumeTestCase(TestCase): def setUp(self) -> None: - # this prevents websocket message reports during testing. patcher = mock.patch("documents.consumer.Consumer._send_progress") self._send_progress = patcher.start() @@ -900,7 +890,6 @@ class PreConsumeTestCase(TestCase): class PostConsumeTestCase(TestCase): def setUp(self) -> None: - # this prevents websocket message reports during testing. patcher = mock.patch("documents.consumer.Consumer._send_progress") self._send_progress = patcher.start() diff --git a/src/documents/tests/test_date_parsing.py b/src/documents/tests/test_date_parsing.py index fd6556365..a0e59d3e6 100644 --- a/src/documents/tests/test_date_parsing.py +++ b/src/documents/tests/test_date_parsing.py @@ -13,7 +13,6 @@ from documents.parsers import parse_date_generator class TestDate(TestCase): - SAMPLE_FILES = os.path.join( os.path.dirname(__file__), "../../paperless_tesseract/tests/samples", diff --git a/src/documents/tests/test_document_model.py b/src/documents/tests/test_document_model.py index 6168503dc..ad357e30a 100644 --- a/src/documents/tests/test_document_model.py +++ b/src/documents/tests/test_document_model.py @@ -52,7 +52,6 @@ class TestDocument(TestCase): self.assertEqual(mock_unlink.call_count, 2) def test_file_name(self): - doc = Document( mime_type="application/pdf", title="test", @@ -64,7 +63,6 @@ class TestDocument(TestCase): TIME_ZONE="Europe/Berlin", ) def test_file_name_with_timezone(self): - # See https://docs.djangoproject.com/en/4.0/ref/utils/#django.utils.timezone.now # The default for created is an aware datetime in UTC # This does that, just manually, with a fixed date @@ -107,7 +105,6 @@ class TestDocument(TestCase): self.assertEqual(doc.get_public_filename(), "2020-01-01 test.pdf") def test_file_name_jpg(self): - doc = Document( mime_type="image/jpeg", title="test", @@ -116,7 +113,6 @@ class TestDocument(TestCase): self.assertEqual(doc.get_public_filename(), "2020-12-25 test.jpg") def test_file_name_unknown(self): - doc = Document( mime_type="application/zip", title="test", @@ -125,7 +121,6 @@ class TestDocument(TestCase): self.assertEqual(doc.get_public_filename(), "2020-12-25 test.zip") def test_file_name_invalid_type(self): - doc = Document( mime_type="image/jpegasd", title="test", diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py index 7dea33925..e4d4d0673 100644 --- a/src/documents/tests/test_file_handling.py +++ b/src/documents/tests/test_file_handling.py @@ -119,7 +119,6 @@ class TestFileHandling(DirectoriesMixin, FileSystemAssertsMixin, TestCase): @override_settings(FILENAME_FORMAT="{correspondent}/{correspondent}") def test_file_renaming_database_error(self): - Document.objects.create( mime_type="application/pdf", storage_type=Document.STORAGE_TYPE_UNENCRYPTED, @@ -842,7 +841,6 @@ class TestFileHandlingWithArchive(DirectoriesMixin, FileSystemAssertsMixin, Test @override_settings(FILENAME_FORMAT="{correspondent}/{title}") def test_database_error(self): - original = os.path.join(settings.ORIGINALS_DIR, "0000001.pdf") archive = os.path.join(settings.ARCHIVE_DIR, "0000001.pdf") Path(original).touch() @@ -868,7 +866,6 @@ class TestFileHandlingWithArchive(DirectoriesMixin, FileSystemAssertsMixin, Test class TestFilenameGeneration(DirectoriesMixin, TestCase): @override_settings(FILENAME_FORMAT="{title}") def test_invalid_characters(self): - doc = Document.objects.create( title="This. is the title.", mime_type="application/pdf", diff --git a/src/documents/tests/test_importer.py b/src/documents/tests/test_importer.py index 212769eda..d86101fd8 100644 --- a/src/documents/tests/test_importer.py +++ b/src/documents/tests/test_importer.py @@ -23,7 +23,6 @@ class TestImporter(TestCase): ) def test_check_manifest(self): - cmd = Command() cmd.source = Path("/tmp") @@ -54,7 +53,6 @@ class TestImporter(TestCase): - CommandError is raised indicating the issue """ with tempfile.TemporaryDirectory() as temp_dir: - # Create empty files original_path = Path(temp_dir) / "original.pdf" archive_path = Path(temp_dir) / "archive.pdf" diff --git a/src/documents/tests/test_index.py b/src/documents/tests/test_index.py index bae56ab77..11cbee443 100644 --- a/src/documents/tests/test_index.py +++ b/src/documents/tests/test_index.py @@ -9,7 +9,6 @@ from documents.tests.utils import DirectoriesMixin class TestAutoComplete(DirectoriesMixin, TestCase): def test_auto_complete(self): - doc1 = Document.objects.create( title="doc1", checksum="A", diff --git a/src/documents/tests/test_management.py b/src/documents/tests/test_management.py index 2ea54d63c..1115325ca 100644 --- a/src/documents/tests/test_management.py +++ b/src/documents/tests/test_management.py @@ -30,7 +30,6 @@ class TestArchiver(DirectoriesMixin, FileSystemAssertsMixin, TestCase): ) def test_archiver(self): - doc = self.make_models() shutil.copy( sample_file, @@ -40,7 +39,6 @@ class TestArchiver(DirectoriesMixin, FileSystemAssertsMixin, TestCase): call_command("document_archiver") def test_handle_document(self): - doc = self.make_models() shutil.copy( sample_file, @@ -114,7 +112,6 @@ class TestDecryptDocuments(FileSystemAssertsMixin, TestCase): ) @mock.patch("documents.management.commands.decrypt_documents.input") def test_decrypt(self, m): - media_dir = tempfile.mkdtemp() originals_dir = os.path.join(media_dir, "documents", "originals") thumb_dir = os.path.join(media_dir, "documents", "thumbnails") diff --git a/src/documents/tests/test_management_consumer.py b/src/documents/tests/test_management_consumer.py index 067702766..99d5d410e 100644 --- a/src/documents/tests/test_management_consumer.py +++ b/src/documents/tests/test_management_consumer.py @@ -150,7 +150,6 @@ class TestConsumer(DirectoriesMixin, ConsumerThreadMixin, TransactionTestCase): @mock.patch("documents.management.commands.document_consumer.logger.error") def test_slow_write_pdf(self, error_logger): - self.consume_file_mock.side_effect = self.bogus_task self.t_start() @@ -171,7 +170,6 @@ class TestConsumer(DirectoriesMixin, ConsumerThreadMixin, TransactionTestCase): @mock.patch("documents.management.commands.document_consumer.logger.error") def test_slow_write_and_move(self, error_logger): - self.consume_file_mock.side_effect = self.bogus_task self.t_start() @@ -194,7 +192,6 @@ class TestConsumer(DirectoriesMixin, ConsumerThreadMixin, TransactionTestCase): @mock.patch("documents.management.commands.document_consumer.logger.error") def test_slow_write_incomplete(self, error_logger): - self.consume_file_mock.side_effect = self.bogus_task self.t_start() @@ -215,12 +212,10 @@ class TestConsumer(DirectoriesMixin, ConsumerThreadMixin, TransactionTestCase): @override_settings(CONSUMPTION_DIR="does_not_exist") def test_consumption_directory_invalid(self): - self.assertRaises(CommandError, call_command, "document_consumer", "--oneshot") @override_settings(CONSUMPTION_DIR="") def test_consumption_directory_unset(self): - self.assertRaises(CommandError, call_command, "document_consumer", "--oneshot") def test_mac_write(self): @@ -332,7 +327,6 @@ class TestConsumer(DirectoriesMixin, ConsumerThreadMixin, TransactionTestCase): @mock.patch("documents.management.commands.document_consumer.open") def test_consume_file_busy(self, open_mock): - # Calling this mock always raises this open_mock.side_effect = OSError @@ -378,7 +372,6 @@ class TestConsumerRecursivePolling(TestConsumer): class TestConsumerTags(DirectoriesMixin, ConsumerThreadMixin, TransactionTestCase): @override_settings(CONSUMER_RECURSIVE=True, CONSUMER_SUBDIRS_AS_TAGS=True) def test_consume_file_with_path_tags(self): - tag_names = ("existingTag", "Space Tag") # Create a Tag prior to consuming a file using it in path tag_ids = [ diff --git a/src/documents/tests/test_management_exporter.py b/src/documents/tests/test_management_exporter.py index 47f07809e..e0b0e3543 100644 --- a/src/documents/tests/test_management_exporter.py +++ b/src/documents/tests/test_management_exporter.py @@ -364,7 +364,6 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): ) def test_export_missing_files(self): - target = tempfile.mkdtemp() self.addCleanup(shutil.rmtree, target) Document.objects.create( @@ -458,7 +457,6 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): args = ["document_exporter", "/tmp/foo/bar"] with self.assertRaises(CommandError) as e: - call_command(*args) self.assertEqual("That path isn't a directory", str(e)) @@ -474,11 +472,9 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): """ with tempfile.NamedTemporaryFile() as tmp_file: - args = ["document_exporter", tmp_file.name] with self.assertRaises(CommandError) as e: - call_command(*args) self.assertEqual("That path isn't a directory", str(e)) @@ -493,13 +489,11 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): - Error is raised """ with tempfile.TemporaryDirectory() as tmp_dir: - os.chmod(tmp_dir, 0o000) args = ["document_exporter", tmp_dir] with self.assertRaises(CommandError) as e: - call_command(*args) self.assertEqual("That path doesn't appear to be writable", str(e)) diff --git a/src/documents/tests/test_management_retagger.py b/src/documents/tests/test_management_retagger.py index afbed9d60..75e5f7dee 100644 --- a/src/documents/tests/test_management_retagger.py +++ b/src/documents/tests/test_management_retagger.py @@ -11,7 +11,6 @@ from documents.tests.utils import DirectoriesMixin class TestRetagger(DirectoriesMixin, TestCase): def make_models(self): - self.sp1 = StoragePath.objects.create( name="dummy a", path="{created_data}/{title}", diff --git a/src/documents/tests/test_matchables.py b/src/documents/tests/test_matchables.py index 718ab8696..4dac4f58f 100644 --- a/src/documents/tests/test_matchables.py +++ b/src/documents/tests/test_matchables.py @@ -48,7 +48,6 @@ class _TestMatchingBase(TestCase): class TestMatching(_TestMatchingBase): def test_match_none(self): - self._test_matching( "", "MATCH_NONE", @@ -60,7 +59,6 @@ class TestMatching(_TestMatchingBase): ) def test_match_all(self): - self._test_matching( "alpha charlie gamma", "MATCH_ALL", @@ -107,7 +105,6 @@ class TestMatching(_TestMatchingBase): ) def test_match_any(self): - self._test_matching( "alpha charlie gamma", "MATCH_ANY", @@ -152,7 +149,6 @@ class TestMatching(_TestMatchingBase): ) def test_match_literal(self): - self._test_matching( "alpha charlie gamma", "MATCH_LITERAL", @@ -187,7 +183,6 @@ class TestMatching(_TestMatchingBase): ) def test_match_regex(self): - self._test_matching( r"alpha\w+gamma", "MATCH_REGEX", @@ -211,7 +206,6 @@ class TestMatching(_TestMatchingBase): self._test_matching("[", "MATCH_REGEX", [], ["Don't match this"]) def test_match_fuzzy(self): - self._test_matching( "Springfield, Miss.", "MATCH_FUZZY", @@ -331,7 +325,6 @@ class TestCaseSensitiveMatching(_TestMatchingBase): ) def test_match_literal(self): - self._test_matching( "alpha charlie gamma", "MATCH_LITERAL", diff --git a/src/documents/tests/test_migration_archive_files.py b/src/documents/tests/test_migration_archive_files.py index 8bd191d4d..ca20b558f 100644 --- a/src/documents/tests/test_migration_archive_files.py +++ b/src/documents/tests/test_migration_archive_files.py @@ -114,7 +114,6 @@ simple_png2 = os.path.join(os.path.dirname(__file__), "examples", "no-text.png") @override_settings(FILENAME_FORMAT="") class TestMigrateArchiveFiles(DirectoriesMixin, FileSystemAssertsMixin, TestMigrations): - migrate_from = "1011_auto_20210101_2340" migrate_to = "1012_fix_archive_files" @@ -282,13 +281,11 @@ def fake_parse_wrapper(parser, path, mime_type, file_name): @override_settings(FILENAME_FORMAT="") class TestMigrateArchiveFilesErrors(DirectoriesMixin, TestMigrations): - migrate_from = "1011_auto_20210101_2340" migrate_to = "1012_fix_archive_files" auto_migrate = False def test_archive_missing(self): - Document = self.apps.get_model("documents", "Document") doc = make_test_document( @@ -454,12 +451,10 @@ class TestMigrateArchiveFilesBackwards( FileSystemAssertsMixin, TestMigrations, ): - migrate_from = "1012_fix_archive_files" migrate_to = "1011_auto_20210101_2340" def setUpBeforeMigration(self, apps): - Document = apps.get_model("documents", "Document") make_test_document( @@ -519,13 +514,11 @@ class TestMigrateArchiveFilesBackwardsWithFilenameFormat( @override_settings(FILENAME_FORMAT="") class TestMigrateArchiveFilesBackwardsErrors(DirectoriesMixin, TestMigrations): - migrate_from = "1012_fix_archive_files" migrate_to = "1011_auto_20210101_2340" auto_migrate = False def test_filename_clash(self): - Document = self.apps.get_model("documents", "Document") self.clashA = make_test_document( @@ -554,7 +547,6 @@ class TestMigrateArchiveFilesBackwardsErrors(DirectoriesMixin, TestMigrations): ) def test_filename_exists(self): - Document = self.apps.get_model("documents", "Document") self.clashA = make_test_document( diff --git a/src/documents/tests/test_migration_mime_type.py b/src/documents/tests/test_migration_mime_type.py index 4dacfb41f..63892eb79 100644 --- a/src/documents/tests/test_migration_mime_type.py +++ b/src/documents/tests/test_migration_mime_type.py @@ -40,7 +40,6 @@ def source_path_after(doc): @override_settings(PASSPHRASE="test") class TestMigrateMimeType(DirectoriesMixin, TestMigrations): - migrate_from = "1002_auto_20201111_1105" migrate_to = "1003_mime_types" @@ -86,7 +85,6 @@ class TestMigrateMimeType(DirectoriesMixin, TestMigrations): @override_settings(PASSPHRASE="test") class TestMigrateMimeTypeBackwards(DirectoriesMixin, TestMigrations): - migrate_from = "1003_mime_types" migrate_to = "1002_auto_20201111_1105" diff --git a/src/documents/tests/test_migration_remove_null_characters.py b/src/documents/tests/test_migration_remove_null_characters.py index 09fd80883..c47bc80ca 100644 --- a/src/documents/tests/test_migration_remove_null_characters.py +++ b/src/documents/tests/test_migration_remove_null_characters.py @@ -3,7 +3,6 @@ from documents.tests.utils import TestMigrations class TestMigrateNullCharacters(DirectoriesMixin, TestMigrations): - migrate_from = "1014_auto_20210228_1614" migrate_to = "1015_remove_null_characters" diff --git a/src/documents/tests/test_migration_tag_colors.py b/src/documents/tests/test_migration_tag_colors.py index 6cc2fa3f7..0643fe883 100644 --- a/src/documents/tests/test_migration_tag_colors.py +++ b/src/documents/tests/test_migration_tag_colors.py @@ -3,7 +3,6 @@ from documents.tests.utils import TestMigrations class TestMigrateTagColor(DirectoriesMixin, TestMigrations): - migrate_from = "1012_fix_archive_files" migrate_to = "1013_migrate_tag_colour" @@ -21,7 +20,6 @@ class TestMigrateTagColor(DirectoriesMixin, TestMigrations): class TestMigrateTagColorBackwards(DirectoriesMixin, TestMigrations): - migrate_from = "1013_migrate_tag_colour" migrate_to = "1012_fix_archive_files" diff --git a/src/documents/tests/test_migration_webp_conversion.py b/src/documents/tests/test_migration_webp_conversion.py index d77057114..db5fd83af 100644 --- a/src/documents/tests/test_migration_webp_conversion.py +++ b/src/documents/tests/test_migration_webp_conversion.py @@ -16,7 +16,6 @@ from documents.tests.utils import TestMigrations ) @mock.patch("documents.migrations.1021_webp_thumbnail_conversion.run_convert") class TestMigrateWebPThumbnails(TestMigrations): - migrate_from = "1020_merge_20220518_1839" migrate_to = "1021_webp_thumbnail_conversion" auto_migrate = False @@ -105,13 +104,11 @@ class TestMigrateWebPThumbnails(TestMigrations): self.assert_file_count_by_extension("webp", dir, expected_count) def setUp(self): - self.thumbnail_dir = Path(tempfile.mkdtemp()).resolve() return super().setUp() def tearDown(self) -> None: - shutil.rmtree(self.thumbnail_dir) return super().tearDown() @@ -134,7 +131,6 @@ class TestMigrateWebPThumbnails(TestMigrations): with override_settings( THUMBNAIL_DIR=self.thumbnail_dir, ): - self.create_webp_thumbnail_files(self.thumbnail_dir, 3) self.performMigration() @@ -189,7 +185,6 @@ class TestMigrateWebPThumbnails(TestMigrations): with override_settings( THUMBNAIL_DIR=self.thumbnail_dir, ): - self.create_png_thumbnail_file(self.thumbnail_dir, 3) self.performMigration() @@ -218,7 +213,6 @@ class TestMigrateWebPThumbnails(TestMigrations): with override_settings( THUMBNAIL_DIR=self.thumbnail_dir, ): - self.create_png_thumbnail_file(self.thumbnail_dir, 3) self.create_webp_thumbnail_files(self.thumbnail_dir, 2, start_count=3) diff --git a/src/documents/tests/test_models.py b/src/documents/tests/test_models.py index 70e5061c3..f41214a65 100644 --- a/src/documents/tests/test_models.py +++ b/src/documents/tests/test_models.py @@ -16,7 +16,6 @@ class CorrespondentTestCase(TestCase): class DocumentTestCase(TestCase): def test_correspondent_deletion_does_not_cascade(self): - self.assertEqual(Correspondent.objects.all().count(), 0) correspondent = CorrespondentFactory.create() self.assertEqual(Correspondent.objects.all().count(), 1) diff --git a/src/documents/tests/test_sanity_check.py b/src/documents/tests/test_sanity_check.py index efee63355..2f4024762 100644 --- a/src/documents/tests/test_sanity_check.py +++ b/src/documents/tests/test_sanity_check.py @@ -14,7 +14,6 @@ from documents.tests.utils import DirectoriesMixin class TestSanityCheck(DirectoriesMixin, TestCase): def make_test_data(self): - with filelock.FileLock(settings.MEDIA_LOCK): # just make sure that the lockfile is present. shutil.copy( diff --git a/src/documents/tests/test_views.py b/src/documents/tests/test_views.py index ef62d9adb..d84d7759b 100644 --- a/src/documents/tests/test_views.py +++ b/src/documents/tests/test_views.py @@ -34,7 +34,7 @@ class TestViews(TestCase): def test_index(self): self.client.force_login(self.user) - for (language_given, language_actual) in [ + for language_given, language_actual in [ ("", "en-US"), ("en-US", "en-US"), ("de", "de-DE"), diff --git a/src/documents/tests/utils.py b/src/documents/tests/utils.py index 72f63e1c5..fbde3345c 100644 --- a/src/documents/tests/utils.py +++ b/src/documents/tests/utils.py @@ -20,7 +20,6 @@ from documents.data_models import DocumentMetadataOverrides def setup_directories(): - dirs = namedtuple("Dirs", ()) dirs.data_dir = Path(tempfile.mkdtemp()) diff --git a/src/documents/views.py b/src/documents/views.py index 8fe3f2a55..71295dcae 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -23,24 +23,18 @@ from django.db.models import Sum from django.db.models import When from django.db.models.functions import Length from django.db.models.functions import Lower -from django.http import Http404, HttpResponseForbidden +from django.http import Http404 from django.http import HttpResponse from django.http import HttpResponseBadRequest +from django.http import HttpResponseForbidden from django.shortcuts import get_object_or_404 from django.utils.decorators import method_decorator from django.utils.translation import get_language from django.views.decorators.cache import cache_control from django.views.generic import TemplateView from django_filters.rest_framework import DjangoFilterBackend -from documents.filters import ObjectOwnedOrGrantedPermissionsFilter -from documents.permissions import PaperlessAdminPermissions, has_perms_owner_aware -from documents.permissions import PaperlessObjectPermissions -from documents.tasks import consume_file from langdetect import detect from packaging import version as packaging_version -from paperless import version -from paperless.db import GnuPG -from paperless.views import StandardPagination from rest_framework import parsers from rest_framework.decorators import action from rest_framework.exceptions import NotFound @@ -59,6 +53,16 @@ from rest_framework.viewsets import GenericViewSet from rest_framework.viewsets import ModelViewSet from rest_framework.viewsets import ReadOnlyModelViewSet from rest_framework.viewsets import ViewSet + +from documents.filters import ObjectOwnedOrGrantedPermissionsFilter +from documents.permissions import PaperlessAdminPermissions +from documents.permissions import PaperlessObjectPermissions +from documents.permissions import has_perms_owner_aware +from documents.tasks import consume_file +from paperless import version +from paperless.db import GnuPG +from paperless.views import StandardPagination + from .bulk_download import ArchiveOnlyStrategy from .bulk_download import OriginalAndArchiveStrategy from .bulk_download import OriginalsOnlyStrategy diff --git a/src/manage.py b/src/manage.py index e708eaba6..9e5a74758 100755 --- a/src/manage.py +++ b/src/manage.py @@ -3,7 +3,6 @@ import os import sys if __name__ == "__main__": - os.environ.setdefault("DJANGO_SETTINGS_MODULE", "paperless.settings") from django.core.management import execute_from_command_line diff --git a/src/paperless/db.py b/src/paperless/db.py index 51184750d..286ccb094 100644 --- a/src/paperless/db.py +++ b/src/paperless/db.py @@ -11,7 +11,6 @@ class GnuPG: @classmethod def decrypted(cls, file_handle, passphrase=None): - if not passphrase: passphrase = settings.PASSPHRASE diff --git a/src/paperless/serialisers.py b/src/paperless/serialisers.py index 54bc2b353..4094a6538 100644 --- a/src/paperless/serialisers.py +++ b/src/paperless/serialisers.py @@ -17,7 +17,6 @@ class ObfuscatedUserPasswordField(serializers.Field): class UserSerializer(serializers.ModelSerializer): - password = ObfuscatedUserPasswordField(required=False) user_permissions = serializers.SlugRelatedField( many=True, @@ -85,7 +84,6 @@ class UserSerializer(serializers.ModelSerializer): class GroupSerializer(serializers.ModelSerializer): - permissions = serializers.SlugRelatedField( many=True, queryset=Permission.objects.all(), diff --git a/src/paperless/tests/test_settings.py b/src/paperless/tests/test_settings.py index 710283991..6b69765dd 100644 --- a/src/paperless/tests/test_settings.py +++ b/src/paperless/tests/test_settings.py @@ -24,7 +24,6 @@ class TestIgnoreDateParsing(TestCase): test_cases (_type_): _description_ """ for env_str, date_format, expected_date_set in test_cases: - self.assertSetEqual( _parse_ignore_dates(env_str, date_format), expected_date_set, diff --git a/src/paperless_mail/admin.py b/src/paperless_mail/admin.py index 9f2b09077..b035d14e4 100644 --- a/src/paperless_mail/admin.py +++ b/src/paperless_mail/admin.py @@ -32,7 +32,6 @@ class MailAccountAdminForm(forms.ModelForm): class MailAccountAdmin(admin.ModelAdmin): - list_display = ("name", "imap_server", "username") fieldsets = [ @@ -47,7 +46,6 @@ class MailAccountAdmin(admin.ModelAdmin): class MailRuleAdmin(admin.ModelAdmin): - radio_fields = { "attachment_type": admin.VERTICAL, "action": admin.VERTICAL, @@ -122,7 +120,6 @@ class MailRuleAdmin(admin.ModelAdmin): class ProcessedMailAdmin(admin.ModelAdmin): class Meta: - model = ProcessedMail fields = "__all__" diff --git a/src/paperless_mail/mail.py b/src/paperless_mail/mail.py index e540ae0e0..a40f7e0d1 100644 --- a/src/paperless_mail/mail.py +++ b/src/paperless_mail/mail.py @@ -146,10 +146,8 @@ class TagMailAction(BaseMailAction): """ def __init__(self, parameter): - # The custom tag should look like "apple:" if "apple:" in parameter.lower(): - _, self.color = parameter.split(":") self.color = self.color.strip() @@ -163,7 +161,6 @@ class TagMailAction(BaseMailAction): self.color = None def get_criteria(self): - # AppleMail: We only need to check if mails are \Flagged if self.color: return {"flagged": False} @@ -178,7 +175,6 @@ class TagMailAction(BaseMailAction): # AppleMail elif self.color: - # Remove all existing $MailFlagBits M.flag( message_uid, @@ -205,7 +201,6 @@ def mailbox_login(mailbox: MailBox, account: MailAccount): logger = logging.getLogger("paperless_mail") try: - if account.is_token: mailbox.xoauth2(account.username, account.password) else: @@ -253,7 +248,6 @@ def apply_mail_action( message_date = make_aware(message_date) try: - action = get_rule_action(rule) with get_mailbox( @@ -477,7 +471,6 @@ class MailAccountHandler(LoggingMixin): account.imap_port, account.imap_security, ) as M: - supports_gmail_labels = "X-GM-EXT-1" in M.client.capabilities supports_auth_plain = "AUTH=PLAIN" in M.client.capabilities @@ -520,13 +513,11 @@ class MailAccountHandler(LoggingMixin): M: MailBox, rule: MailRule, ): - self.log("debug", f"Rule {rule}: Selecting folder {rule.folder}") try: M.folder.set(rule.folder) except MailboxFolderSelectError as err: - self.log( "error", f"Unable to access folder {rule.folder}, attempting folder listing", @@ -653,7 +644,6 @@ class MailAccountHandler(LoggingMixin): consume_tasks = list() for att in message.attachments: - if ( att.content_disposition != "attachment" and rule.attachment_type @@ -682,7 +672,6 @@ class MailAccountHandler(LoggingMixin): mime_type = magic.from_buffer(att.payload, mime=True) if is_mime_type_supported(mime_type): - os.makedirs(settings.SCRATCH_DIR, exist_ok=True) _, temp_filename = tempfile.mkstemp( prefix="paperless-mail-", diff --git a/src/paperless_mail/management/commands/mail_fetcher.py b/src/paperless_mail/management/commands/mail_fetcher.py index 0bdb5fe96..ec87723eb 100644 --- a/src/paperless_mail/management/commands/mail_fetcher.py +++ b/src/paperless_mail/management/commands/mail_fetcher.py @@ -4,7 +4,6 @@ from paperless_mail import tasks class Command(BaseCommand): - help = """ """.replace( " ", @@ -12,5 +11,4 @@ class Command(BaseCommand): ) def handle(self, *args, **options): - tasks.process_mail_accounts() diff --git a/src/paperless_mail/migrations/0001_initial.py b/src/paperless_mail/migrations/0001_initial.py index 6fbec2892..f7e717f0e 100644 --- a/src/paperless_mail/migrations/0001_initial.py +++ b/src/paperless_mail/migrations/0001_initial.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - initial = True dependencies = [ diff --git a/src/paperless_mail/migrations/0002_auto_20201117_1334.py b/src/paperless_mail/migrations/0002_auto_20201117_1334.py index 72e37e342..1f4df3f6d 100644 --- a/src/paperless_mail/migrations/0002_auto_20201117_1334.py +++ b/src/paperless_mail/migrations/0002_auto_20201117_1334.py @@ -5,7 +5,6 @@ from django.db.migrations import RunPython class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0001_initial"), ] diff --git a/src/paperless_mail/migrations/0003_auto_20201118_1940.py b/src/paperless_mail/migrations/0003_auto_20201118_1940.py index 053cd6788..a1263db05 100644 --- a/src/paperless_mail/migrations/0003_auto_20201118_1940.py +++ b/src/paperless_mail/migrations/0003_auto_20201118_1940.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0002_auto_20201117_1334"), ] diff --git a/src/paperless_mail/migrations/0004_mailrule_order.py b/src/paperless_mail/migrations/0004_mailrule_order.py index 04e7e48ff..4ffc0a6e5 100644 --- a/src/paperless_mail/migrations/0004_mailrule_order.py +++ b/src/paperless_mail/migrations/0004_mailrule_order.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0003_auto_20201118_1940"), ] diff --git a/src/paperless_mail/migrations/0005_help_texts.py b/src/paperless_mail/migrations/0005_help_texts.py index f9421e251..8e49238e9 100644 --- a/src/paperless_mail/migrations/0005_help_texts.py +++ b/src/paperless_mail/migrations/0005_help_texts.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0004_mailrule_order"), ] diff --git a/src/paperless_mail/migrations/0006_auto_20210101_2340.py b/src/paperless_mail/migrations/0006_auto_20210101_2340.py index fa84af978..2c2ff9fa8 100644 --- a/src/paperless_mail/migrations/0006_auto_20210101_2340.py +++ b/src/paperless_mail/migrations/0006_auto_20210101_2340.py @@ -6,7 +6,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("documents", "1011_auto_20210101_2340"), ("paperless_mail", "0005_help_texts"), diff --git a/src/paperless_mail/migrations/0007_auto_20210106_0138.py b/src/paperless_mail/migrations/0007_auto_20210106_0138.py index 5752a3b42..c51a4aebe 100644 --- a/src/paperless_mail/migrations/0007_auto_20210106_0138.py +++ b/src/paperless_mail/migrations/0007_auto_20210106_0138.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0006_auto_20210101_2340"), ] diff --git a/src/paperless_mail/migrations/0008_auto_20210516_0940.py b/src/paperless_mail/migrations/0008_auto_20210516_0940.py index 6b7d68574..b2fc062dd 100644 --- a/src/paperless_mail/migrations/0008_auto_20210516_0940.py +++ b/src/paperless_mail/migrations/0008_auto_20210516_0940.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0007_auto_20210106_0138"), ] diff --git a/src/paperless_mail/migrations/0009_alter_mailrule_action_alter_mailrule_folder.py b/src/paperless_mail/migrations/0009_alter_mailrule_action_alter_mailrule_folder.py index c8eed5dea..47fdaff12 100644 --- a/src/paperless_mail/migrations/0009_alter_mailrule_action_alter_mailrule_folder.py +++ b/src/paperless_mail/migrations/0009_alter_mailrule_action_alter_mailrule_folder.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0008_auto_20210516_0940"), ] diff --git a/src/paperless_mail/migrations/0009_mailrule_assign_tags.py b/src/paperless_mail/migrations/0009_mailrule_assign_tags.py index fa466589c..fbe359814 100644 --- a/src/paperless_mail/migrations/0009_mailrule_assign_tags.py +++ b/src/paperless_mail/migrations/0009_mailrule_assign_tags.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0008_auto_20210516_0940"), ] diff --git a/src/paperless_mail/migrations/0010_auto_20220311_1602.py b/src/paperless_mail/migrations/0010_auto_20220311_1602.py index 77a00d3c8..0511608ca 100644 --- a/src/paperless_mail/migrations/0010_auto_20220311_1602.py +++ b/src/paperless_mail/migrations/0010_auto_20220311_1602.py @@ -30,7 +30,6 @@ def migrate_tags_to_tag(apps, schema_editor): class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0009_mailrule_assign_tags"), ] diff --git a/src/paperless_mail/migrations/0011_remove_mailrule_assign_tag.py b/src/paperless_mail/migrations/0011_remove_mailrule_assign_tag.py index ce3c24932..16cec8710 100644 --- a/src/paperless_mail/migrations/0011_remove_mailrule_assign_tag.py +++ b/src/paperless_mail/migrations/0011_remove_mailrule_assign_tag.py @@ -4,7 +4,6 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0010_auto_20220311_1602"), ] diff --git a/src/paperless_mail/migrations/0012_alter_mailrule_assign_tags.py b/src/paperless_mail/migrations/0012_alter_mailrule_assign_tags.py index d1fe98cab..83ece3bba 100644 --- a/src/paperless_mail/migrations/0012_alter_mailrule_assign_tags.py +++ b/src/paperless_mail/migrations/0012_alter_mailrule_assign_tags.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0011_remove_mailrule_assign_tag"), ] diff --git a/src/paperless_mail/migrations/0013_merge_20220412_1051.py b/src/paperless_mail/migrations/0013_merge_20220412_1051.py index 2fdb17ff5..0310fd083 100644 --- a/src/paperless_mail/migrations/0013_merge_20220412_1051.py +++ b/src/paperless_mail/migrations/0013_merge_20220412_1051.py @@ -4,7 +4,6 @@ from django.db import migrations class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0009_alter_mailrule_action_alter_mailrule_folder"), ("paperless_mail", "0012_alter_mailrule_assign_tags"), diff --git a/src/paperless_mail/migrations/0014_alter_mailrule_action.py b/src/paperless_mail/migrations/0014_alter_mailrule_action.py index 4ec57e505..6be3ddf69 100644 --- a/src/paperless_mail/migrations/0014_alter_mailrule_action.py +++ b/src/paperless_mail/migrations/0014_alter_mailrule_action.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0013_merge_20220412_1051"), ] diff --git a/src/paperless_mail/migrations/0015_alter_mailrule_action.py b/src/paperless_mail/migrations/0015_alter_mailrule_action.py index 83ffe5488..80de9b2b1 100644 --- a/src/paperless_mail/migrations/0015_alter_mailrule_action.py +++ b/src/paperless_mail/migrations/0015_alter_mailrule_action.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0014_alter_mailrule_action"), ] diff --git a/src/paperless_mail/migrations/0016_mailrule_consumption_scope.py b/src/paperless_mail/migrations/0016_mailrule_consumption_scope.py index 21af834c5..d4a0ba590 100644 --- a/src/paperless_mail/migrations/0016_mailrule_consumption_scope.py +++ b/src/paperless_mail/migrations/0016_mailrule_consumption_scope.py @@ -5,7 +5,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ ("paperless_mail", "0015_alter_mailrule_action"), ] diff --git a/src/paperless_mail/migrations/0017_mailaccount_owner_mailrule_owner.py b/src/paperless_mail/migrations/0017_mailaccount_owner_mailrule_owner.py index 52748f639..98cfef014 100644 --- a/src/paperless_mail/migrations/0017_mailaccount_owner_mailrule_owner.py +++ b/src/paperless_mail/migrations/0017_mailaccount_owner_mailrule_owner.py @@ -7,7 +7,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ("paperless_mail", "0016_mailrule_consumption_scope"), diff --git a/src/paperless_mail/migrations/0018_processedmail.py b/src/paperless_mail/migrations/0018_processedmail.py index cfeb55d0a..3307f7579 100644 --- a/src/paperless_mail/migrations/0018_processedmail.py +++ b/src/paperless_mail/migrations/0018_processedmail.py @@ -8,7 +8,6 @@ from django.db import models class Migration(migrations.Migration): - dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ("paperless_mail", "0017_mailaccount_owner_mailrule_owner"), diff --git a/src/paperless_mail/models.py b/src/paperless_mail/models.py index f9981be8f..3ea0619d9 100644 --- a/src/paperless_mail/models.py +++ b/src/paperless_mail/models.py @@ -230,7 +230,6 @@ class MailRule(document_models.ModelWithOwner): class ProcessedMail(document_models.ModelWithOwner): - rule = models.ForeignKey( MailRule, null=False, diff --git a/src/paperless_mail/parsers.py b/src/paperless_mail/parsers.py index 4d8c03a18..b838290cb 100644 --- a/src/paperless_mail/parsers.py +++ b/src/paperless_mail/parsers.py @@ -250,14 +250,12 @@ class MailDocumentParser(DocumentParser): return html def generate_pdf_from_mail(self, mail): - url = self.gotenberg_server + "/forms/chromium/convert/html" self.log("info", "Converting mail to PDF") css_file = os.path.join(os.path.dirname(__file__), "templates/output.css") with open(css_file, "rb") as css_handle: - files = { "html": ("index.html", self.mail_to_html(mail)), "css": ("output.css", css_handle), diff --git a/src/paperless_mail/tests/test_live_mail.py b/src/paperless_mail/tests/test_live_mail.py index 89029f5fd..6de2a6770 100644 --- a/src/paperless_mail/tests/test_live_mail.py +++ b/src/paperless_mail/tests/test_live_mail.py @@ -18,7 +18,6 @@ from paperless_mail.models import MailRule ) class TestMailLiveServer(TestCase): def setUp(self) -> None: - self.mail_account_handler = MailAccountHandler() self.account = MailAccount.objects.create( name="test", @@ -35,7 +34,6 @@ class TestMailLiveServer(TestCase): return super().tearDown() def test_process_non_gmail_server_flag(self): - try: rule1 = MailRule.objects.create( name="testrule", @@ -53,9 +51,7 @@ class TestMailLiveServer(TestCase): pass def test_process_non_gmail_server_tag(self): - try: - rule2 = MailRule.objects.create( name="testrule", account=self.account, diff --git a/src/paperless_mail/tests/test_mail.py b/src/paperless_mail/tests/test_mail.py index 5f75e6710..0a3cb5b2c 100644 --- a/src/paperless_mail/tests/test_mail.py +++ b/src/paperless_mail/tests/test_mail.py @@ -78,7 +78,6 @@ class BogusClient: class BogusMailBox(ContextManager): - # Common values so tests don't need to remember an accepted login USERNAME: str = "admin" ASCII_PASSWORD: str = "secret" @@ -230,7 +229,6 @@ class TestMail( flagged: bool = False, processed: bool = False, ) -> MailMessage: - if to is None: to = ["tosomeone@somewhere.com"] @@ -546,7 +544,7 @@ class TestMail( ("*.png", ["f2.png"]), ] - for (pattern, matches) in tests: + for pattern, matches in tests: with self.subTest(msg=pattern): self._queue_consumption_tasks_mock.reset_mock() account = MailAccount(name=str(uuid.uuid4())) @@ -567,7 +565,6 @@ class TestMail( ) def test_handle_mail_account_mark_read(self): - account = MailAccount.objects.create( name="test", imap_server="", @@ -591,7 +588,6 @@ class TestMail( self.assertEqual(len(self.bogus_mailbox.messages), 3) def test_handle_mail_account_delete(self): - account = MailAccount.objects.create( name="test", imap_server="", @@ -614,7 +610,6 @@ class TestMail( self.assertEqual(len(self.bogus_mailbox.messages), 1) def test_handle_mail_account_delete_no_filters(self): - account = MailAccount.objects.create( name="test", imap_server="", @@ -738,7 +733,6 @@ class TestMail( self.assertEqual(len(self.bogus_mailbox.messages), 3) def test_tag_mail_action_applemail_wrong_input(self): - self.assertRaises( MailError, TagMailAction, @@ -822,7 +816,6 @@ class TestMail( self.assertEqual(len(self.bogus_mailbox.messages_spam), 1) def test_error_skip_rule(self): - account = MailAccount.objects.create( name="test2", imap_server="", @@ -953,7 +946,6 @@ class TestMail( self.assertEqual(self.bogus_mailbox.messages[0].from_, "amazon@amazon.de") def test_error_create_correspondent(self): - account = MailAccount.objects.create( name="test2", imap_server="", @@ -999,7 +991,6 @@ class TestMail( ) def test_filters(self): - account = MailAccount.objects.create( name="test3", imap_server="", @@ -1007,7 +998,7 @@ class TestMail( password="secret", ) - for (f_body, f_from, f_to, f_subject, expected_mail_count) in [ + for f_body, f_from, f_to, f_subject, expected_mail_count in [ (None, None, None, "Claim", 1), ("electronic", None, None, None, 1), (None, "amazon", None, None, 2), diff --git a/src/paperless_mail/views.py b/src/paperless_mail/views.py index 74c170b0c..15346b920 100644 --- a/src/paperless_mail/views.py +++ b/src/paperless_mail/views.py @@ -37,7 +37,6 @@ class MailRuleViewSet(ModelViewSet, PassUserMixin): class MailAccountTestView(GenericAPIView): - permission_classes = (IsAuthenticated,) serializer_class = MailAccountSerializer diff --git a/src/paperless_tesseract/apps.py b/src/paperless_tesseract/apps.py index 67b90f006..f634349fb 100644 --- a/src/paperless_tesseract/apps.py +++ b/src/paperless_tesseract/apps.py @@ -4,11 +4,9 @@ from paperless_tesseract.signals import tesseract_consumer_declaration class PaperlessTesseractConfig(AppConfig): - name = "paperless_tesseract" def ready(self): - from documents.signals import document_consumer_declaration document_consumer_declaration.connect(tesseract_consumer_declaration) diff --git a/src/paperless_tesseract/parsers.py b/src/paperless_tesseract/parsers.py index d0eb98cd5..7657cb7e2 100644 --- a/src/paperless_tesseract/parsers.py +++ b/src/paperless_tesseract/parsers.py @@ -31,7 +31,6 @@ class RasterisedDocumentParser(DocumentParser): logging_name = "paperless.parsing.tesseract" def extract_metadata(self, document_path, mime_type): - result = [] if mime_type == "application/pdf": import pikepdf @@ -265,7 +264,6 @@ class RasterisedDocumentParser(DocumentParser): # Convert pixels to mega-pixels and provide to ocrmypdf max_pixels_mpixels = settings.OCR_MAX_IMAGE_PIXELS / 1_000_000.0 if max_pixels_mpixels > 0: - self.log( "debug", f"Calculated {max_pixels_mpixels} megapixels for OCR", diff --git a/src/paperless_tesseract/tests/test_parser.py b/src/paperless_tesseract/tests/test_parser.py index fea4f2ff9..23cff29b7 100644 --- a/src/paperless_tesseract/tests/test_parser.py +++ b/src/paperless_tesseract/tests/test_parser.py @@ -39,7 +39,6 @@ class FakeImageFile(ContextManager): class TestParser(DirectoriesMixin, FileSystemAssertsMixin, TestCase): - SAMPLE_FILES = os.path.join(os.path.dirname(__file__), "samples") def assertContainsStrings(self, content, strings): @@ -53,7 +52,6 @@ class TestParser(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertListEqual(indices, sorted(indices)) def test_post_process_text(self): - text_cases = [ ("simple string", "simple string"), ("simple newline\n testing string", "simple newline\ntesting string"), @@ -830,7 +828,6 @@ class TestParser(DirectoriesMixin, FileSystemAssertsMixin, TestCase): class TestParserFileTypes(DirectoriesMixin, FileSystemAssertsMixin, TestCase): - SAMPLE_FILES = os.path.join(os.path.dirname(__file__), "samples") def test_bmp(self): diff --git a/src/paperless_text/apps.py b/src/paperless_text/apps.py index 1acc361aa..0dd7b2206 100644 --- a/src/paperless_text/apps.py +++ b/src/paperless_text/apps.py @@ -4,11 +4,9 @@ from paperless_text.signals import text_consumer_declaration class PaperlessTextConfig(AppConfig): - name = "paperless_text" def ready(self): - from documents.signals import document_consumer_declaration document_consumer_declaration.connect(text_consumer_declaration) diff --git a/src/paperless_text/tests/test_parser.py b/src/paperless_text/tests/test_parser.py index 4e7f19b33..869a3a8ef 100644 --- a/src/paperless_text/tests/test_parser.py +++ b/src/paperless_text/tests/test_parser.py @@ -9,7 +9,6 @@ from paperless_text.parsers import TextDocumentParser class TestTextParser(DirectoriesMixin, FileSystemAssertsMixin, TestCase): def test_thumbnail(self): - parser = TextDocumentParser(None) # just make sure that it does not crash @@ -20,7 +19,6 @@ class TestTextParser(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertIsFile(f) def test_parse(self): - parser = TextDocumentParser(None) parser.parse( From 5ae48c80125aa20481ff7bf43791e2fe61103071 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 26 Apr 2023 09:37:43 -0700 Subject: [PATCH 26/30] Use document owner for matching if set --- src/documents/matching.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/documents/matching.py b/src/documents/matching.py index 39a3d52b5..521d49284 100644 --- a/src/documents/matching.py +++ b/src/documents/matching.py @@ -22,6 +22,9 @@ def log_reason(matching_model, document, reason): def match_correspondents(document, classifier, user=None): pred_id = classifier.predict_correspondent(document.content) if classifier else None + if user is None and document.owner is not None: + user = document.owner + if user is not None: correspondents = get_objects_for_user_owner_aware( user, @@ -39,6 +42,9 @@ def match_correspondents(document, classifier, user=None): def match_document_types(document, classifier, user=None): pred_id = classifier.predict_document_type(document.content) if classifier else None + if user is None and document.owner is not None: + user = document.owner + if user is not None: document_types = get_objects_for_user_owner_aware( user, @@ -56,6 +62,9 @@ def match_document_types(document, classifier, user=None): def match_tags(document, classifier, user=None): predicted_tag_ids = classifier.predict_tags(document.content) if classifier else [] + if user is None and document.owner is not None: + user = document.owner + if user is not None: tags = get_objects_for_user_owner_aware(user, "documents.view_tag", Tag) else: @@ -69,6 +78,9 @@ def match_tags(document, classifier, user=None): def match_storage_paths(document, classifier, user=None): pred_id = classifier.predict_storage_path(document.content) if classifier else None + if user is None and document.owner is not None: + user = document.owner + if user is not None: storage_paths = get_objects_for_user_owner_aware( user, From dfadfc0f13e003d6b1471e20e9ddfb5f3037bcef Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 26 Apr 2023 09:51:26 -0700 Subject: [PATCH 27/30] Respect permissions for statistics --- src/documents/views.py | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/src/documents/views.py b/src/documents/views.py index 71295dcae..1d710992b 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -57,6 +57,7 @@ from rest_framework.viewsets import ViewSet from documents.filters import ObjectOwnedOrGrantedPermissionsFilter from documents.permissions import PaperlessAdminPermissions from documents.permissions import PaperlessObjectPermissions +from documents.permissions import get_objects_for_user_owner_aware from documents.permissions import has_perms_owner_aware from documents.tasks import consume_file from paperless import version @@ -831,18 +832,35 @@ class StatisticsView(APIView): permission_classes = (IsAuthenticated,) def get(self, request, format=None): - documents_total = Document.objects.all().count() + user = request.user if request.user is not None else None - inbox_tag = Tag.objects.filter(is_inbox_tag=True) + documents = ( + Document.objects.all() + if user is None + else get_objects_for_user_owner_aware( + user, + "documents.view_document", + Document, + ) + ) + tags = ( + Tag.objects.all() + if user is None + else get_objects_for_user_owner_aware(user, "documents.view_tag", Tag) + ) + + documents_total = documents.count() + + inbox_tag = tags.filter(is_inbox_tag=True) documents_inbox = ( - Document.objects.filter(tags__is_inbox_tag=True).distinct().count() + documents.filter(tags__is_inbox_tag=True).distinct().count() if inbox_tag.exists() else None ) document_file_type_counts = ( - Document.objects.values("mime_type") + documents.values("mime_type") .annotate(mime_type_count=Count("mime_type")) .order_by("-mime_type_count") if documents_total > 0 @@ -850,7 +868,7 @@ class StatisticsView(APIView): ) character_count = ( - Document.objects.annotate( + documents.annotate( characters=Length("content"), ) .aggregate(Sum("characters")) From 15fb3e53285059229f13de8a1d36d9398cbb1774 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 27 Apr 2023 01:24:22 -0700 Subject: [PATCH 28/30] Remove debug line --- src/documents/signals/handlers.py | 11 ++++++++++- src/documents/views.py | 1 - 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 5a8b2aa3f..4abb772ce 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -28,12 +28,21 @@ from documents.models import Document from documents.models import MatchingModel from documents.models import PaperlessTask from documents.models import Tag +from documents.permissions import get_objects_for_user_owner_aware logger = logging.getLogger("paperless.handlers") def add_inbox_tags(sender, document=None, logging_group=None, **kwargs): - inbox_tags = Tag.objects.filter(is_inbox_tag=True) + if document.owner is not None: + tags = get_objects_for_user_owner_aware( + document.owner, + "documents.view_documenttype", + Tag, + ) + else: + tags = Tag.objects.all() + inbox_tags = tags.filter(is_inbox_tag=True) document.tags.add(*inbox_tags) diff --git a/src/documents/views.py b/src/documents/views.py index 1d710992b..e178fa2d5 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -194,7 +194,6 @@ class TagViewSet(ModelViewSet, PassUserMixin): ) def get_serializer_class(self, *args, **kwargs): - print(self.request.version) if int(self.request.version) == 1: return TagSerializerVersion1 else: From 88a5a2049b6b5738c367aae290d9339d1d1c05e8 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 26 Apr 2023 03:03:33 -0700 Subject: [PATCH 29/30] Dont perform permissions queries by default --- .../e2e/documents/document-detail.cy.ts | 14 +++++---- .../cypress/fixtures/documents/documents.json | 4 +++ .../management-list.component.ts | 3 +- .../src/app/data/object-with-permissions.ts | 2 ++ .../src/app/services/permissions.service.ts | 29 +++++++++++------- .../rest/abstract-name-filter-service.ts | 8 +++-- .../src/app/services/rest/document.service.ts | 8 +++++ src/documents/serialisers.py | 30 +++++++++++++++++++ src/documents/tests/test_api.py | 30 +++++++++++++++++++ src/documents/views.py | 8 +++++ 10 files changed, 117 insertions(+), 19 deletions(-) diff --git a/src-ui/cypress/e2e/documents/document-detail.cy.ts b/src-ui/cypress/e2e/documents/document-detail.cy.ts index dd5f8fac8..51d043ce3 100644 --- a/src-ui/cypress/e2e/documents/document-detail.cy.ts +++ b/src-ui/cypress/e2e/documents/document-detail.cy.ts @@ -5,11 +5,15 @@ describe('document-detail', () => { this.modifiedDocuments = [] cy.fixture('documents/documents.json').then((documentsJson) => { - cy.intercept('GET', 'http://localhost:8000/api/documents/1/', (req) => { - let response = { ...documentsJson } - response = response.results.find((d) => d.id == 1) - req.reply(response) - }) + cy.intercept( + 'GET', + 'http://localhost:8000/api/documents/1/?full_perms=true', + (req) => { + let response = { ...documentsJson } + response = response.results.find((d) => d.id == 1) + req.reply(response) + } + ) }) cy.intercept('PUT', 'http://localhost:8000/api/documents/1/', (req) => { diff --git a/src-ui/cypress/fixtures/documents/documents.json b/src-ui/cypress/fixtures/documents/documents.json index e3938dba1..6b284f7b2 100644 --- a/src-ui/cypress/fixtures/documents/documents.json +++ b/src-ui/cypress/fixtures/documents/documents.json @@ -21,6 +21,7 @@ "original_file_name": "2022-03-22 no latin title.pdf", "archived_file_name": "2022-03-22 no latin title.pdf", "owner": null, + "user_can_change": true, "permissions": { "view": { "users": [], @@ -68,6 +69,7 @@ "original_file_name": "2022-03-23 lorem ipsum dolor sit amet.pdf", "archived_file_name": "2022-03-23 llorem ipsum dolor sit amet.pdf", "owner": null, + "user_can_change": true, "permissions": { "view": { "users": [], @@ -98,6 +100,7 @@ "original_file_name": "2022-03-24 dolor.pdf", "archived_file_name": "2022-03-24 dolor.pdf", "owner": null, + "user_can_change": true, "permissions": { "view": { "users": [], @@ -128,6 +131,7 @@ "original_file_name": "2022-06-01 sit amet.pdf", "archived_file_name": "2022-06-01 sit amet.pdf", "owner": null, + "user_can_change": true, "permissions": { "view": { "users": [], diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.ts b/src-ui/src/app/components/manage/management-list/management-list.component.ts index ec169fdd0..437acef90 100644 --- a/src-ui/src/app/components/manage/management-list/management-list.component.ts +++ b/src-ui/src/app/components/manage/management-list/management-list.component.ts @@ -122,7 +122,8 @@ export abstract class ManagementListComponent null, this.sortField, this.sortReverse, - this._nameFilter + this._nameFilter, + true ) .subscribe((c) => { this.data = c.results diff --git a/src-ui/src/app/data/object-with-permissions.ts b/src-ui/src/app/data/object-with-permissions.ts index 86f5f7394..9346aa85c 100644 --- a/src-ui/src/app/data/object-with-permissions.ts +++ b/src-ui/src/app/data/object-with-permissions.ts @@ -16,4 +16,6 @@ export interface ObjectWithPermissions extends ObjectWithId { owner?: number permissions?: PermissionsObject + + user_can_change?: boolean } diff --git a/src-ui/src/app/services/permissions.service.ts b/src-ui/src/app/services/permissions.service.ts index c19a4ee94..1e7b0d031 100644 --- a/src-ui/src/app/services/permissions.service.ts +++ b/src-ui/src/app/services/permissions.service.ts @@ -58,17 +58,24 @@ export class PermissionsService { action: string, object: ObjectWithPermissions ): boolean { - let actionObject = null - if (action === PermissionAction.View) actionObject = object.permissions.view - else if (action === PermissionAction.Change) - actionObject = object.permissions.change - if (!actionObject) return false - return ( - this.currentUserOwnsObject(object) || - actionObject.users.includes(this.currentUser.id) || - actionObject.groups.filter((g) => this.currentUser.groups.includes(g)) - .length > 0 - ) + if (action === PermissionAction.View) { + return ( + this.currentUserOwnsObject(object) || + object.permissions?.view.users.includes(this.currentUser.id) || + object.permissions?.view.groups.filter((g) => + this.currentUser.groups.includes(g) + ).length > 0 + ) + } else if (action === PermissionAction.Change) { + return ( + this.currentUserOwnsObject(object) || + object.user_can_change || + object.permissions?.change.users.includes(this.currentUser.id) || + object.permissions?.change.groups.filter((g) => + this.currentUser.groups.includes(g) + ).length > 0 + ) + } } public getPermissionCode( diff --git a/src-ui/src/app/services/rest/abstract-name-filter-service.ts b/src-ui/src/app/services/rest/abstract-name-filter-service.ts index 568803fb8..0b5fca835 100644 --- a/src-ui/src/app/services/rest/abstract-name-filter-service.ts +++ b/src-ui/src/app/services/rest/abstract-name-filter-service.ts @@ -9,11 +9,15 @@ export abstract class AbstractNameFilterService< pageSize?: number, sortField?: string, sortReverse?: boolean, - nameFilter?: string + nameFilter?: string, + fullPerms?: boolean ) { let params = {} if (nameFilter) { - params = { name__icontains: nameFilter } + params['name__icontains'] = nameFilter + } + if (fullPerms) { + params['full_perms'] = true } return this.list(page, pageSize, sortField, sortReverse, params) } diff --git a/src-ui/src/app/services/rest/document.service.ts b/src-ui/src/app/services/rest/document.service.ts index 63b447b9a..4ff2ee88f 100644 --- a/src-ui/src/app/services/rest/document.service.ts +++ b/src-ui/src/app/services/rest/document.service.ts @@ -113,6 +113,14 @@ export class DocumentService extends AbstractPaperlessService }).pipe(map((response) => response.results.map((doc) => doc.id))) } + get(id: number): Observable { + return this.http.get(this.getResourceUrl(id), { + params: { + full_perms: true, + }, + }) + } + getPreviewUrl(id: number, original: boolean = false): string { let url = this.getResourceUrl(id, 'preview') if (this._searchQuery) url += `#search="${this._searchQuery}"` diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index 580ff11c9..ad2b5d0f6 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -14,6 +14,7 @@ from django.contrib.auth.models import Group from django.contrib.auth.models import User from django.utils.text import slugify from django.utils.translation import gettext as _ +from guardian.core import ObjectPermissionChecker from guardian.shortcuts import get_users_with_perms from rest_framework import serializers from rest_framework.fields import SerializerMethodField @@ -149,11 +150,21 @@ class SetPermissionsMixin: class OwnedObjectSerializer(serializers.ModelSerializer, SetPermissionsMixin): def __init__(self, *args, **kwargs): self.user = kwargs.pop("user", None) + full_perms = kwargs.pop("full_perms", False) super().__init__(*args, **kwargs) + try: + if full_perms: + self.fields.pop("user_can_change") + else: + self.fields.pop("permissions") + except KeyError: + pass + def get_permissions(self, obj): view_codename = f"view_{obj.__class__.__name__.lower()}" change_codename = f"change_{obj.__class__.__name__.lower()}" + return { "view": { "users": get_users_with_perms( @@ -179,7 +190,19 @@ class OwnedObjectSerializer(serializers.ModelSerializer, SetPermissionsMixin): }, } + def get_user_can_change(self, obj): + checker = ObjectPermissionChecker(self.user) if self.user is not None else None + return ( + obj.owner is None + or obj.owner == self.user + or ( + self.user is not None + and checker.has_perm(f"change_{obj.__class__.__name__.lower()}", obj) + ) + ) + permissions = SerializerMethodField(read_only=True) + user_can_change = SerializerMethodField(read_only=True) set_permissions = serializers.DictField( label="Set permissions", @@ -235,6 +258,7 @@ class CorrespondentSerializer(MatchingModelSerializer, OwnedObjectSerializer): "last_correspondence", "owner", "permissions", + "user_can_change", "set_permissions", ) @@ -252,6 +276,7 @@ class DocumentTypeSerializer(MatchingModelSerializer, OwnedObjectSerializer): "document_count", "owner", "permissions", + "user_can_change", "set_permissions", ) @@ -303,6 +328,7 @@ class TagSerializerVersion1(MatchingModelSerializer, OwnedObjectSerializer): "document_count", "owner", "permissions", + "user_can_change", "set_permissions", ) @@ -338,6 +364,7 @@ class TagSerializer(MatchingModelSerializer, OwnedObjectSerializer): "document_count", "owner", "permissions", + "user_can_change", "set_permissions", ) @@ -437,6 +464,7 @@ class DocumentSerializer(OwnedObjectSerializer, DynamicFieldsModelSerializer): "archived_file_name", "owner", "permissions", + "user_can_change", "set_permissions", "notes", ) @@ -464,6 +492,7 @@ class SavedViewSerializer(OwnedObjectSerializer): "filter_rules", "owner", "permissions", + "user_can_change", "set_permissions", ] @@ -783,6 +812,7 @@ class StoragePathSerializer(MatchingModelSerializer, OwnedObjectSerializer): "document_count", "owner", "permissions", + "user_can_change", "set_permissions", ) diff --git a/src/documents/tests/test_api.py b/src/documents/tests/test_api.py index 8b81068a2..a6307e2d5 100644 --- a/src/documents/tests/test_api.py +++ b/src/documents/tests/test_api.py @@ -3396,6 +3396,36 @@ class TestApiAuth(DirectoriesMixin, APITestCase): status.HTTP_404_NOT_FOUND, ) + def test_dynamic_permissions_fields(self): + Document.objects.create(title="Test", content="content 1", checksum="1") + + user1 = User.objects.create_superuser(username="test1") + self.client.force_authenticate(user1) + + response = self.client.get( + "/api/documents/", + format="json", + ) + + self.assertEqual(response.status_code, status.HTTP_200_OK) + + resp_data = response.json() + + self.assertNotIn("permissions", resp_data["results"][0]) + self.assertIn("user_can_change", resp_data["results"][0]) + + response = self.client.get( + "/api/documents/?full_perms=true", + format="json", + ) + + self.assertEqual(response.status_code, status.HTTP_200_OK) + + resp_data = response.json() + + self.assertIn("permissions", resp_data["results"][0]) + self.assertNotIn("user_can_change", resp_data["results"][0]) + class TestApiRemoteVersion(DirectoriesMixin, APITestCase): ENDPOINT = "/api/remote_version/" diff --git a/src/documents/views.py b/src/documents/views.py index e178fa2d5..234c4dda1 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -157,6 +157,10 @@ class PassUserMixin(CreateModelMixin): def get_serializer(self, *args, **kwargs): kwargs.setdefault("user", self.request.user) + kwargs.setdefault( + "full_perms", + self.request.query_params.get("full_perms", False), + ) return super().get_serializer(*args, **kwargs) @@ -274,6 +278,10 @@ class DocumentViewSet( kwargs.setdefault("context", self.get_serializer_context()) kwargs.setdefault("fields", fields) kwargs.setdefault("truncate_content", truncate_content.lower() in ["true", "1"]) + kwargs.setdefault( + "full_perms", + self.request.query_params.get("full_perms", False), + ) return serializer_class(*args, **kwargs) def update(self, request, *args, **kwargs): From 130489a1a97f79ac291fabc129542bacc59b35f4 Mon Sep 17 00:00:00 2001 From: "Paperless-ngx Bot [bot]" <99855517+paperlessngx-bot@users.noreply.github.com> Date: Thu, 27 Apr 2023 07:08:48 -0700 Subject: [PATCH 30/30] New Crowdin updates (#3175) * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (French) [ci skip] * New translations messages.xlf (Catalan) [ci skip] * New translations messages.xlf (Serbian (Latin)) [ci skip] * New translations messages.xlf (German) [ci skip] * New translations messages.xlf (Finnish) [ci skip] * New translations messages.xlf (French) [ci skip] --- src-ui/src/locale/messages.ca_ES.xlf | 4 +- src-ui/src/locale/messages.de_DE.xlf | 8 +- src-ui/src/locale/messages.fi_FI.xlf | 6 +- src-ui/src/locale/messages.fr_FR.xlf | 172 +++++++++++++-------------- src-ui/src/locale/messages.sr_CS.xlf | 6 +- 5 files changed, 98 insertions(+), 98 deletions(-) diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index c22fb0460..d321c0101 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -625,7 +625,7 @@ src/app/components/app-frame/app-frame.component.html 134 - Corresponsal és + Corresponsals Tags @@ -4186,7 +4186,7 @@ src/app/components/manage/management-list/management-list.component.html 2 - Creat + Crear Filter by: diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 1b66fe8ef..ee517488a 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -797,7 +797,7 @@ src/app/components/app-frame/app-frame.component.html 235 - Aktualisierung verfügbar + Update verfügbar An error occurred while saving settings. @@ -3076,7 +3076,7 @@ src/app/components/document-detail/document-detail.component.ts 595,597 - Error deleting document: + Fehler beim Löschen des Dokuments Redo OCR confirm @@ -4578,7 +4578,7 @@ src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Die Überprüfung auf Updates erfolgt über Anfragen an die öffentliche Github API, um zu ermitteln, ob eine neue Version verfügbar ist. Das eigentliche Update der Anwendung muss weiterhin manuell durchgeführt werden. No tracking data is collected by the app in any way. @@ -5671,7 +5671,7 @@ src/app/services/settings.service.ts 177 - Catalan + Katalanisch Czech diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 40ddb480c..e5bdf0304 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -3076,7 +3076,7 @@ src/app/components/document-detail/document-detail.component.ts 595,597 - Error deleting document: + Virhe poistettaessa asiakirjaa: Redo OCR confirm @@ -4578,7 +4578,7 @@ src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Päivityksen tarkistaminen tapahtuu yhteydellä Github API-palveluun viimeisimmän version tarkistamiseksi. Sovelluksen varsinainen päivitys on silti suoritettava manuaalisesti. No tracking data is collected by the app in any way. @@ -5671,7 +5671,7 @@ src/app/services/settings.service.ts 177 - Catalan + Katalaani Czech diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 9350acaca..af41bae11 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -1327,21 +1327,21 @@ Mot de passe - + Password is token src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Le mot de passe est le jeton d'authentification + Le mot de passe est un jeton d'authentification - + Check if the password above is a token used for authentication src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 18 - Vérifier si le mot de passe ci-dessus est un jeton utilisé pour l'authentification + Cocher si le mot de passe ci-dessus est un jeton utilisé pour l'authentification Character Set @@ -1395,13 +1395,13 @@ Chargement ... - + Test src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 32 - Test + Tester No encryption @@ -1443,21 +1443,21 @@ Éditer un compte de messagerie - + Successfully connected to the mail server src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 88 - Connexion réussie au serveur de courrier + Connexion réussie au serveur de messagerie électronique - + Unable to connect to the mail server src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 89 - Impossible de se connecter au serveur d'impression + Impossible de se connecter au serveur de messagerie électronique Account @@ -2063,21 +2063,21 @@ Tous - + Include src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 24 - Inclure + Inclure - + Exclude src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 26 - Exclure + Exclure Apply @@ -2273,7 +2273,7 @@ Used for both types, correspondents, storage paths Ajouter un élément - + Private src/app/components/common/input/select/select.component.ts @@ -2287,7 +2287,7 @@ src/app/components/common/tag/tag.component.html 8 - Privé + Privé Add tag @@ -2351,13 +2351,13 @@ - + Inherited from group src/app/components/common/permissions-select/permissions-select.component.ts 62 - Hérité du groupe + Hérité du groupe Select @@ -2467,53 +2467,53 @@ Statistiques - + Go to inbox src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 4 - Accéder à la boîte de réception + Accéder à la boîte de réception - + Documents in inbox src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 5 - Documents dans la boîte de réception + Documents dans la boîte de réception - + Go to documents src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 8 - Aller aux documents + Aller aux documents - + Total documents src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 9 - Nombre total de documents + Nombre total de documents - + Total characters src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 13 - Nombre total de caractères + Nombre total de caractères - + Other src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts 55 - Autres + Autres Upload new documents @@ -2962,13 +2962,13 @@ Saisir le mot de passe - + Notes src/app/components/document-detail/document-detail.component.html 175,176 - Notes + Notes Discard @@ -2986,13 +2986,13 @@ Enregistrer & suivant - + An error occurred loading content: src/app/components/document-detail/document-detail.component.ts 226,228 - Une erreur s'est produite lors du chargement du contenu : + Une erreur s'est produite lors du chargement du contenu : Error retrieving metadata @@ -3010,7 +3010,7 @@ Erreur lors de la récupération des suggestions - + Document saved successfully. src/app/components/document-detail/document-detail.component.ts @@ -3020,7 +3020,7 @@ src/app/components/document-detail/document-detail.component.ts 492 - Document enregistré avec succès. + Document enregistré avec succès. Error saving document @@ -3070,13 +3070,13 @@ Supprimer le document - + Error deleting document: src/app/components/document-detail/document-detail.component.ts 595,597 - Error deleting document: + Erreur lors de la suppression du document : Redo OCR confirm @@ -3532,21 +3532,21 @@ Filtrer par étiquette - + View notes src/app/components/document-list/document-card-large/document-card-large.component.html 70 - Afficher les Notes + Afficher les notes - + Notes src/app/components/document-list/document-card-large/document-card-large.component.html 74 - Notes + Notes Filter by document type @@ -3740,13 +3740,13 @@ Erreur lors du téléchargement du document - + Sort by ASN src/app/components/document-list/document-list.component.html 126 - Trier par ASN + Trier par ASN ASN @@ -3764,31 +3764,31 @@ NSA - + Sort by correspondent src/app/components/document-list/document-list.component.html 133 - Trier par correspondant + Trier par correspondant - + Sort by title src/app/components/document-list/document-list.component.html 140 - Trier par titre + Trier par titre - + Sort by notes src/app/components/document-list/document-list.component.html 147 - Trier par notes + Trier par notes - + Notes src/app/components/document-list/document-list.component.html @@ -3802,39 +3802,39 @@ src/app/services/rest/document.service.ts 25 - Notes + Notes - + Sort by document type src/app/components/document-list/document-list.component.html 154 - Trier par type de documents + Trier par type de documents - + Sort by storage path src/app/components/document-list/document-list.component.html 161 - Trier par chemin de stockage + Trier par chemin de stockage - + Sort by created date src/app/components/document-list/document-list.component.html 168 - Trier par la date de création + Trier par date de création - + Sort by added date src/app/components/document-list/document-list.component.html 175 - Trier par date d'ajout + Trier par date d'ajout Added @@ -4060,31 +4060,31 @@ L'erreur renvoyée était - + Enter note src/app/components/document-notes/document-notes.component.html 4 - Saisir des notes + Saisir une note - + Please enter a note. src/app/components/document-notes/document-notes.component.html 5,7 - Veuillez saisir une note. + Veuillez saisir une note. - + Add note src/app/components/document-notes/document-notes.component.html 11 - Ajouter une note + Ajouter une note - + Delete note src/app/components/document-notes/document-notes.component.html @@ -4094,23 +4094,23 @@ src/app/components/document-notes/document-notes.component.html 25 - Supprimer une note + Supprimer une note - + Error saving note: src/app/components/document-notes/document-notes.component.ts 65 - Erreur lors de l'enregistrement de la note: + Erreur lors de l'enregistrement de la note : - + Error deleting note: src/app/components/document-notes/document-notes.component.ts 81 - Erreur lors de l'enregistrement de la note: + Une erreur s'est produite lors de la suppression de la note : correspondent @@ -4312,7 +4312,7 @@ Aucun - + Error occurred while creating : . src/app/components/manage/management-list/management-list.component.ts @@ -4322,7 +4322,7 @@ src/app/components/manage/management-list/management-list.component.ts 153,155 - Une erreur s'est produite lors de la création de : . + Une erreur s'est produite lors de la création de : . Successfully created . @@ -4332,13 +4332,13 @@ Création de réussie. - + Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts 174,176 - Une erreur s'est produite lors de la sauvegarde de : . + Une erreur s'est produite lors de la sauvegarde de : . Successfully updated . @@ -4348,13 +4348,13 @@ Mise à jour de réussie. - + Error occurred while saving : . src/app/components/manage/management-list/management-list.component.ts 187,189 - Une erreur s'est produite lors de la sauvegarde de : . + Une erreur s'est produite lors de la sauvegarde de : . Do you really want to delete the ? @@ -4572,13 +4572,13 @@ Vérification des mises à jour - + Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + La vérification des mises à jour fonctionne en faisant un ping sur l'API publique Github pour la dernière version afin de déterminer si une nouvelle version est disponible. La mise à jour réelle de l'application doit toujours être effectuée manuellement. No tracking data is collected by the app in any way. @@ -4636,13 +4636,13 @@ Appliquer lors de la fermeture - + Enable notes src/app/components/manage/settings/settings.component.html 163 - Activez les notes + Activer les notes Notifications @@ -4884,13 +4884,13 @@ Une erreur s'est produite lors de l'enregistrement des paramètres sur le serveur : - + Password has been changed, you will be logged out momentarily. src/app/components/manage/settings/settings.component.ts 659 - Le mot de passe a été modifié, vous serez déconnecté momentanément. + Le mot de passe a été modifié, vous serez déconnecté momentanément. Saved user "". @@ -5665,13 +5665,13 @@ Biélorusse - + Catalan src/app/services/settings.service.ts 177 - Catalan + Catalan Czech diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 718d44c42..51a210da0 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -3076,7 +3076,7 @@ src/app/components/document-detail/document-detail.component.ts 595,597 - Error deleting document: + Greška prilikom brisanja dokumenta: Redo OCR confirm @@ -4578,7 +4578,7 @@ src/app/components/manage/settings/settings.component.html 140,142 - Update checking works by pinging the public Github API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + Provera ažuriranja funkcioniše pingovanjem javnog Github API za najnovije izdanje da bi se utvrdilo da li je nova verzija dostupna. Stvarno ažuriranje aplikacije i dalje mora da se obavlja ručno. No tracking data is collected by the app in any way. @@ -5671,7 +5671,7 @@ src/app/services/settings.service.ts 177 - Catalan + Katalonski Czech